diff options
Diffstat (limited to 'drivers')
500 files changed, 13690 insertions, 3257 deletions
diff --git a/drivers/acpi/acpi_pad.c b/drivers/acpi/acpi_pad.c index 97991ac6f5fc..7e52295f1ecc 100644 --- a/drivers/acpi/acpi_pad.c +++ b/drivers/acpi/acpi_pad.c | |||
| @@ -208,7 +208,7 @@ static int power_saving_thread(void *data) | |||
| 208 | * the mechanism only works when all CPUs have RT task running, | 208 | * the mechanism only works when all CPUs have RT task running, |
| 209 | * as if one CPU hasn't RT task, RT task from other CPUs will | 209 | * as if one CPU hasn't RT task, RT task from other CPUs will |
| 210 | * borrow CPU time from this CPU and cause RT task use > 95% | 210 | * borrow CPU time from this CPU and cause RT task use > 95% |
| 211 | * CPU time. To make 'avoid staration' work, takes a nap here. | 211 | * CPU time. To make 'avoid starvation' work, takes a nap here. |
| 212 | */ | 212 | */ |
| 213 | if (do_sleep) | 213 | if (do_sleep) |
| 214 | schedule_timeout_killable(HZ * idle_pct / 100); | 214 | schedule_timeout_killable(HZ * idle_pct / 100); |
| @@ -222,14 +222,18 @@ static struct task_struct *ps_tsks[NR_CPUS]; | |||
| 222 | static unsigned int ps_tsk_num; | 222 | static unsigned int ps_tsk_num; |
| 223 | static int create_power_saving_task(void) | 223 | static int create_power_saving_task(void) |
| 224 | { | 224 | { |
| 225 | int rc = -ENOMEM; | ||
| 226 | |||
| 225 | ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread, | 227 | ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread, |
| 226 | (void *)(unsigned long)ps_tsk_num, | 228 | (void *)(unsigned long)ps_tsk_num, |
| 227 | "power_saving/%d", ps_tsk_num); | 229 | "power_saving/%d", ps_tsk_num); |
| 228 | if (ps_tsks[ps_tsk_num]) { | 230 | rc = IS_ERR(ps_tsks[ps_tsk_num]) ? PTR_ERR(ps_tsks[ps_tsk_num]) : 0; |
| 231 | if (!rc) | ||
| 229 | ps_tsk_num++; | 232 | ps_tsk_num++; |
| 230 | return 0; | 233 | else |
| 231 | } | 234 | ps_tsks[ps_tsk_num] = NULL; |
| 232 | return -EINVAL; | 235 | |
| 236 | return rc; | ||
| 233 | } | 237 | } |
| 234 | 238 | ||
| 235 | static void destroy_power_saving_task(void) | 239 | static void destroy_power_saving_task(void) |
| @@ -237,6 +241,7 @@ static void destroy_power_saving_task(void) | |||
| 237 | if (ps_tsk_num > 0) { | 241 | if (ps_tsk_num > 0) { |
| 238 | ps_tsk_num--; | 242 | ps_tsk_num--; |
| 239 | kthread_stop(ps_tsks[ps_tsk_num]); | 243 | kthread_stop(ps_tsks[ps_tsk_num]); |
| 244 | ps_tsks[ps_tsk_num] = NULL; | ||
| 240 | } | 245 | } |
| 241 | } | 246 | } |
| 242 | 247 | ||
| @@ -253,7 +258,7 @@ static void set_power_saving_task_num(unsigned int num) | |||
| 253 | } | 258 | } |
| 254 | } | 259 | } |
| 255 | 260 | ||
| 256 | static int acpi_pad_idle_cpus(unsigned int num_cpus) | 261 | static void acpi_pad_idle_cpus(unsigned int num_cpus) |
| 257 | { | 262 | { |
| 258 | get_online_cpus(); | 263 | get_online_cpus(); |
| 259 | 264 | ||
| @@ -261,7 +266,6 @@ static int acpi_pad_idle_cpus(unsigned int num_cpus) | |||
| 261 | set_power_saving_task_num(num_cpus); | 266 | set_power_saving_task_num(num_cpus); |
| 262 | 267 | ||
| 263 | put_online_cpus(); | 268 | put_online_cpus(); |
| 264 | return 0; | ||
| 265 | } | 269 | } |
| 266 | 270 | ||
| 267 | static uint32_t acpi_pad_idle_cpus_num(void) | 271 | static uint32_t acpi_pad_idle_cpus_num(void) |
| @@ -369,19 +373,21 @@ static void acpi_pad_remove_sysfs(struct acpi_device *device) | |||
| 369 | static int acpi_pad_pur(acpi_handle handle, int *num_cpus) | 373 | static int acpi_pad_pur(acpi_handle handle, int *num_cpus) |
| 370 | { | 374 | { |
| 371 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; | 375 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 372 | acpi_status status; | ||
| 373 | union acpi_object *package; | 376 | union acpi_object *package; |
| 374 | int rev, num, ret = -EINVAL; | 377 | int rev, num, ret = -EINVAL; |
| 375 | 378 | ||
| 376 | status = acpi_evaluate_object(handle, "_PUR", NULL, &buffer); | 379 | if (ACPI_FAILURE(acpi_evaluate_object(handle, "_PUR", NULL, &buffer))) |
| 377 | if (ACPI_FAILURE(status)) | 380 | return -EINVAL; |
| 381 | |||
| 382 | if (!buffer.length || !buffer.pointer) | ||
| 378 | return -EINVAL; | 383 | return -EINVAL; |
| 384 | |||
| 379 | package = buffer.pointer; | 385 | package = buffer.pointer; |
| 380 | if (package->type != ACPI_TYPE_PACKAGE || package->package.count != 2) | 386 | if (package->type != ACPI_TYPE_PACKAGE || package->package.count != 2) |
| 381 | goto out; | 387 | goto out; |
| 382 | rev = package->package.elements[0].integer.value; | 388 | rev = package->package.elements[0].integer.value; |
| 383 | num = package->package.elements[1].integer.value; | 389 | num = package->package.elements[1].integer.value; |
| 384 | if (rev != 1) | 390 | if (rev != 1 || num < 0) |
| 385 | goto out; | 391 | goto out; |
| 386 | *num_cpus = num; | 392 | *num_cpus = num; |
| 387 | ret = 0; | 393 | ret = 0; |
| @@ -410,7 +416,7 @@ static void acpi_pad_ost(acpi_handle handle, int stat, | |||
| 410 | 416 | ||
| 411 | static void acpi_pad_handle_notify(acpi_handle handle) | 417 | static void acpi_pad_handle_notify(acpi_handle handle) |
| 412 | { | 418 | { |
| 413 | int num_cpus, ret; | 419 | int num_cpus; |
| 414 | uint32_t idle_cpus; | 420 | uint32_t idle_cpus; |
| 415 | 421 | ||
| 416 | mutex_lock(&isolated_cpus_lock); | 422 | mutex_lock(&isolated_cpus_lock); |
| @@ -418,12 +424,9 @@ static void acpi_pad_handle_notify(acpi_handle handle) | |||
| 418 | mutex_unlock(&isolated_cpus_lock); | 424 | mutex_unlock(&isolated_cpus_lock); |
| 419 | return; | 425 | return; |
| 420 | } | 426 | } |
| 421 | ret = acpi_pad_idle_cpus(num_cpus); | 427 | acpi_pad_idle_cpus(num_cpus); |
| 422 | idle_cpus = acpi_pad_idle_cpus_num(); | 428 | idle_cpus = acpi_pad_idle_cpus_num(); |
| 423 | if (!ret) | 429 | acpi_pad_ost(handle, 0, idle_cpus); |
| 424 | acpi_pad_ost(handle, 0, idle_cpus); | ||
| 425 | else | ||
| 426 | acpi_pad_ost(handle, 1, 0); | ||
| 427 | mutex_unlock(&isolated_cpus_lock); | 430 | mutex_unlock(&isolated_cpus_lock); |
| 428 | } | 431 | } |
| 429 | 432 | ||
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index cf761b904e4a..a52126e46307 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
| @@ -490,9 +490,14 @@ static void acpi_bus_osc_support(void) | |||
| 490 | 490 | ||
| 491 | capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE; | 491 | capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE; |
| 492 | capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */ | 492 | capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */ |
| 493 | #ifdef CONFIG_ACPI_PROCESSOR_AGGREGATOR | 493 | #if defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR) ||\ |
| 494 | defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR_MODULE) | ||
| 494 | capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT; | 495 | capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT; |
| 495 | #endif | 496 | #endif |
| 497 | |||
| 498 | #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE) | ||
| 499 | capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PPC_OST_SUPPORT; | ||
| 500 | #endif | ||
| 496 | if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle))) | 501 | if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle))) |
| 497 | return; | 502 | return; |
| 498 | if (ACPI_SUCCESS(acpi_run_osc(handle, &context))) | 503 | if (ACPI_SUCCESS(acpi_run_osc(handle, &context))) |
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index fd1801bdee66..d6471bb6852f 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
| @@ -201,14 +201,13 @@ unlock: | |||
| 201 | spin_unlock_irqrestore(&ec->curr_lock, flags); | 201 | spin_unlock_irqrestore(&ec->curr_lock, flags); |
| 202 | } | 202 | } |
| 203 | 203 | ||
| 204 | static void acpi_ec_gpe_query(void *ec_cxt); | 204 | static int acpi_ec_sync_query(struct acpi_ec *ec); |
| 205 | 205 | ||
| 206 | static int ec_check_sci(struct acpi_ec *ec, u8 state) | 206 | static int ec_check_sci_sync(struct acpi_ec *ec, u8 state) |
| 207 | { | 207 | { |
| 208 | if (state & ACPI_EC_FLAG_SCI) { | 208 | if (state & ACPI_EC_FLAG_SCI) { |
| 209 | if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) | 209 | if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) |
| 210 | return acpi_os_execute(OSL_EC_BURST_HANDLER, | 210 | return acpi_ec_sync_query(ec); |
| 211 | acpi_ec_gpe_query, ec); | ||
| 212 | } | 211 | } |
| 213 | return 0; | 212 | return 0; |
| 214 | } | 213 | } |
| @@ -249,11 +248,6 @@ static int acpi_ec_transaction_unlocked(struct acpi_ec *ec, | |||
| 249 | { | 248 | { |
| 250 | unsigned long tmp; | 249 | unsigned long tmp; |
| 251 | int ret = 0; | 250 | int ret = 0; |
| 252 | pr_debug(PREFIX "transaction start\n"); | ||
| 253 | /* disable GPE during transaction if storm is detected */ | ||
| 254 | if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) { | ||
| 255 | acpi_disable_gpe(NULL, ec->gpe); | ||
| 256 | } | ||
| 257 | if (EC_FLAGS_MSI) | 251 | if (EC_FLAGS_MSI) |
| 258 | udelay(ACPI_EC_MSI_UDELAY); | 252 | udelay(ACPI_EC_MSI_UDELAY); |
| 259 | /* start transaction */ | 253 | /* start transaction */ |
| @@ -265,20 +259,9 @@ static int acpi_ec_transaction_unlocked(struct acpi_ec *ec, | |||
| 265 | clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags); | 259 | clear_bit(EC_FLAGS_QUERY_PENDING, &ec->flags); |
| 266 | spin_unlock_irqrestore(&ec->curr_lock, tmp); | 260 | spin_unlock_irqrestore(&ec->curr_lock, tmp); |
| 267 | ret = ec_poll(ec); | 261 | ret = ec_poll(ec); |
| 268 | pr_debug(PREFIX "transaction end\n"); | ||
| 269 | spin_lock_irqsave(&ec->curr_lock, tmp); | 262 | spin_lock_irqsave(&ec->curr_lock, tmp); |
| 270 | ec->curr = NULL; | 263 | ec->curr = NULL; |
| 271 | spin_unlock_irqrestore(&ec->curr_lock, tmp); | 264 | spin_unlock_irqrestore(&ec->curr_lock, tmp); |
| 272 | if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) { | ||
| 273 | /* check if we received SCI during transaction */ | ||
| 274 | ec_check_sci(ec, acpi_ec_read_status(ec)); | ||
| 275 | /* it is safe to enable GPE outside of transaction */ | ||
| 276 | acpi_enable_gpe(NULL, ec->gpe); | ||
| 277 | } else if (t->irq_count > ACPI_EC_STORM_THRESHOLD) { | ||
| 278 | pr_info(PREFIX "GPE storm detected, " | ||
| 279 | "transactions will use polling mode\n"); | ||
| 280 | set_bit(EC_FLAGS_GPE_STORM, &ec->flags); | ||
| 281 | } | ||
| 282 | return ret; | 265 | return ret; |
| 283 | } | 266 | } |
| 284 | 267 | ||
| @@ -321,7 +304,26 @@ static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t) | |||
| 321 | status = -ETIME; | 304 | status = -ETIME; |
| 322 | goto end; | 305 | goto end; |
| 323 | } | 306 | } |
| 307 | pr_debug(PREFIX "transaction start\n"); | ||
| 308 | /* disable GPE during transaction if storm is detected */ | ||
| 309 | if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) { | ||
| 310 | acpi_disable_gpe(NULL, ec->gpe); | ||
| 311 | } | ||
| 312 | |||
| 324 | status = acpi_ec_transaction_unlocked(ec, t); | 313 | status = acpi_ec_transaction_unlocked(ec, t); |
| 314 | |||
| 315 | /* check if we received SCI during transaction */ | ||
| 316 | ec_check_sci_sync(ec, acpi_ec_read_status(ec)); | ||
| 317 | if (test_bit(EC_FLAGS_GPE_STORM, &ec->flags)) { | ||
| 318 | msleep(1); | ||
| 319 | /* it is safe to enable GPE outside of transaction */ | ||
| 320 | acpi_enable_gpe(NULL, ec->gpe); | ||
| 321 | } else if (t->irq_count > ACPI_EC_STORM_THRESHOLD) { | ||
| 322 | pr_info(PREFIX "GPE storm detected, " | ||
| 323 | "transactions will use polling mode\n"); | ||
| 324 | set_bit(EC_FLAGS_GPE_STORM, &ec->flags); | ||
| 325 | } | ||
| 326 | pr_debug(PREFIX "transaction end\n"); | ||
| 325 | end: | 327 | end: |
| 326 | if (ec->global_lock) | 328 | if (ec->global_lock) |
| 327 | acpi_release_global_lock(glk); | 329 | acpi_release_global_lock(glk); |
| @@ -443,7 +445,7 @@ int ec_transaction(u8 command, | |||
| 443 | 445 | ||
| 444 | EXPORT_SYMBOL(ec_transaction); | 446 | EXPORT_SYMBOL(ec_transaction); |
| 445 | 447 | ||
| 446 | static int acpi_ec_query(struct acpi_ec *ec, u8 * data) | 448 | static int acpi_ec_query_unlocked(struct acpi_ec *ec, u8 * data) |
| 447 | { | 449 | { |
| 448 | int result; | 450 | int result; |
| 449 | u8 d; | 451 | u8 d; |
| @@ -452,20 +454,16 @@ static int acpi_ec_query(struct acpi_ec *ec, u8 * data) | |||
| 452 | .wlen = 0, .rlen = 1}; | 454 | .wlen = 0, .rlen = 1}; |
| 453 | if (!ec || !data) | 455 | if (!ec || !data) |
| 454 | return -EINVAL; | 456 | return -EINVAL; |
| 455 | |||
| 456 | /* | 457 | /* |
| 457 | * Query the EC to find out which _Qxx method we need to evaluate. | 458 | * Query the EC to find out which _Qxx method we need to evaluate. |
| 458 | * Note that successful completion of the query causes the ACPI_EC_SCI | 459 | * Note that successful completion of the query causes the ACPI_EC_SCI |
| 459 | * bit to be cleared (and thus clearing the interrupt source). | 460 | * bit to be cleared (and thus clearing the interrupt source). |
| 460 | */ | 461 | */ |
| 461 | 462 | result = acpi_ec_transaction_unlocked(ec, &t); | |
| 462 | result = acpi_ec_transaction(ec, &t); | ||
| 463 | if (result) | 463 | if (result) |
| 464 | return result; | 464 | return result; |
| 465 | |||
| 466 | if (!d) | 465 | if (!d) |
| 467 | return -ENODATA; | 466 | return -ENODATA; |
| 468 | |||
| 469 | *data = d; | 467 | *data = d; |
| 470 | return 0; | 468 | return 0; |
| 471 | } | 469 | } |
| @@ -509,43 +507,79 @@ void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit) | |||
| 509 | 507 | ||
| 510 | EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler); | 508 | EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler); |
| 511 | 509 | ||
| 512 | static void acpi_ec_gpe_query(void *ec_cxt) | 510 | static void acpi_ec_run(void *cxt) |
| 513 | { | 511 | { |
| 514 | struct acpi_ec *ec = ec_cxt; | 512 | struct acpi_ec_query_handler *handler = cxt; |
| 515 | u8 value = 0; | 513 | if (!handler) |
| 516 | struct acpi_ec_query_handler *handler, copy; | ||
| 517 | |||
| 518 | if (!ec || acpi_ec_query(ec, &value)) | ||
| 519 | return; | 514 | return; |
| 520 | mutex_lock(&ec->lock); | 515 | pr_debug(PREFIX "start query execution\n"); |
| 516 | if (handler->func) | ||
| 517 | handler->func(handler->data); | ||
| 518 | else if (handler->handle) | ||
| 519 | acpi_evaluate_object(handler->handle, NULL, NULL, NULL); | ||
| 520 | pr_debug(PREFIX "stop query execution\n"); | ||
| 521 | kfree(handler); | ||
| 522 | } | ||
| 523 | |||
| 524 | static int acpi_ec_sync_query(struct acpi_ec *ec) | ||
| 525 | { | ||
| 526 | u8 value = 0; | ||
| 527 | int status; | ||
| 528 | struct acpi_ec_query_handler *handler, *copy; | ||
| 529 | if ((status = acpi_ec_query_unlocked(ec, &value))) | ||
| 530 | return status; | ||
| 521 | list_for_each_entry(handler, &ec->list, node) { | 531 | list_for_each_entry(handler, &ec->list, node) { |
| 522 | if (value == handler->query_bit) { | 532 | if (value == handler->query_bit) { |
| 523 | /* have custom handler for this bit */ | 533 | /* have custom handler for this bit */ |
| 524 | memcpy(©, handler, sizeof(copy)); | 534 | copy = kmalloc(sizeof(*handler), GFP_KERNEL); |
| 525 | mutex_unlock(&ec->lock); | 535 | if (!copy) |
| 526 | if (copy.func) { | 536 | return -ENOMEM; |
| 527 | copy.func(copy.data); | 537 | memcpy(copy, handler, sizeof(*copy)); |
| 528 | } else if (copy.handle) { | 538 | pr_debug(PREFIX "push query execution (0x%2x) on queue\n", value); |
| 529 | acpi_evaluate_object(copy.handle, NULL, NULL, NULL); | 539 | return acpi_os_execute((copy->func) ? |
| 530 | } | 540 | OSL_NOTIFY_HANDLER : OSL_GPE_HANDLER, |
| 531 | return; | 541 | acpi_ec_run, copy); |
| 532 | } | 542 | } |
| 533 | } | 543 | } |
| 544 | return 0; | ||
| 545 | } | ||
| 546 | |||
| 547 | static void acpi_ec_gpe_query(void *ec_cxt) | ||
| 548 | { | ||
| 549 | struct acpi_ec *ec = ec_cxt; | ||
| 550 | if (!ec) | ||
| 551 | return; | ||
| 552 | mutex_lock(&ec->lock); | ||
| 553 | acpi_ec_sync_query(ec); | ||
| 534 | mutex_unlock(&ec->lock); | 554 | mutex_unlock(&ec->lock); |
| 535 | } | 555 | } |
| 536 | 556 | ||
| 557 | static void acpi_ec_gpe_query(void *ec_cxt); | ||
| 558 | |||
| 559 | static int ec_check_sci(struct acpi_ec *ec, u8 state) | ||
| 560 | { | ||
| 561 | if (state & ACPI_EC_FLAG_SCI) { | ||
| 562 | if (!test_and_set_bit(EC_FLAGS_QUERY_PENDING, &ec->flags)) { | ||
| 563 | pr_debug(PREFIX "push gpe query to the queue\n"); | ||
| 564 | return acpi_os_execute(OSL_NOTIFY_HANDLER, | ||
| 565 | acpi_ec_gpe_query, ec); | ||
| 566 | } | ||
| 567 | } | ||
| 568 | return 0; | ||
| 569 | } | ||
| 570 | |||
| 537 | static u32 acpi_ec_gpe_handler(void *data) | 571 | static u32 acpi_ec_gpe_handler(void *data) |
| 538 | { | 572 | { |
| 539 | struct acpi_ec *ec = data; | 573 | struct acpi_ec *ec = data; |
| 540 | u8 status; | ||
| 541 | 574 | ||
| 542 | pr_debug(PREFIX "~~~> interrupt\n"); | 575 | pr_debug(PREFIX "~~~> interrupt\n"); |
| 543 | status = acpi_ec_read_status(ec); | ||
| 544 | 576 | ||
| 545 | advance_transaction(ec, status); | 577 | advance_transaction(ec, acpi_ec_read_status(ec)); |
| 546 | if (ec_transaction_done(ec) && (status & ACPI_EC_FLAG_IBF) == 0) | 578 | if (ec_transaction_done(ec) && |
| 579 | (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) == 0) { | ||
| 547 | wake_up(&ec->wait); | 580 | wake_up(&ec->wait); |
| 548 | ec_check_sci(ec, status); | 581 | ec_check_sci(ec, acpi_ec_read_status(ec)); |
| 582 | } | ||
| 549 | return ACPI_INTERRUPT_HANDLED; | 583 | return ACPI_INTERRUPT_HANDLED; |
| 550 | } | 584 | } |
| 551 | 585 | ||
diff --git a/drivers/acpi/pci_link.c b/drivers/acpi/pci_link.c index 394ae89409c2..04b0f007c9b7 100644 --- a/drivers/acpi/pci_link.c +++ b/drivers/acpi/pci_link.c | |||
| @@ -56,7 +56,7 @@ ACPI_MODULE_NAME("pci_link"); | |||
| 56 | static int acpi_pci_link_add(struct acpi_device *device); | 56 | static int acpi_pci_link_add(struct acpi_device *device); |
| 57 | static int acpi_pci_link_remove(struct acpi_device *device, int type); | 57 | static int acpi_pci_link_remove(struct acpi_device *device, int type); |
| 58 | 58 | ||
| 59 | static struct acpi_device_id link_device_ids[] = { | 59 | static const struct acpi_device_id link_device_ids[] = { |
| 60 | {"PNP0C0F", 0}, | 60 | {"PNP0C0F", 0}, |
| 61 | {"", 0}, | 61 | {"", 0}, |
| 62 | }; | 62 | }; |
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 101cce3681d1..64f55b6db73c 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c | |||
| @@ -46,7 +46,7 @@ static int acpi_pci_root_add(struct acpi_device *device); | |||
| 46 | static int acpi_pci_root_remove(struct acpi_device *device, int type); | 46 | static int acpi_pci_root_remove(struct acpi_device *device, int type); |
| 47 | static int acpi_pci_root_start(struct acpi_device *device); | 47 | static int acpi_pci_root_start(struct acpi_device *device); |
| 48 | 48 | ||
| 49 | static struct acpi_device_id root_device_ids[] = { | 49 | static const struct acpi_device_id root_device_ids[] = { |
| 50 | {"PNP0A03", 0}, | 50 | {"PNP0A03", 0}, |
| 51 | {"", 0}, | 51 | {"", 0}, |
| 52 | }; | 52 | }; |
diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c index 22b297916519..0f30c3c1eea4 100644 --- a/drivers/acpi/power.c +++ b/drivers/acpi/power.c | |||
| @@ -65,7 +65,7 @@ static int acpi_power_remove(struct acpi_device *device, int type); | |||
| 65 | static int acpi_power_resume(struct acpi_device *device); | 65 | static int acpi_power_resume(struct acpi_device *device); |
| 66 | static int acpi_power_open_fs(struct inode *inode, struct file *file); | 66 | static int acpi_power_open_fs(struct inode *inode, struct file *file); |
| 67 | 67 | ||
| 68 | static struct acpi_device_id power_device_ids[] = { | 68 | static const struct acpi_device_id power_device_ids[] = { |
| 69 | {ACPI_POWER_HID, 0}, | 69 | {ACPI_POWER_HID, 0}, |
| 70 | {"", 0}, | 70 | {"", 0}, |
| 71 | }; | 71 | }; |
diff --git a/drivers/acpi/power_meter.c b/drivers/acpi/power_meter.c index 2ef7030a0c28..dc4ffadf8122 100644 --- a/drivers/acpi/power_meter.c +++ b/drivers/acpi/power_meter.c | |||
| @@ -64,7 +64,7 @@ static int can_cap_in_hardware(void) | |||
| 64 | return force_cap_on || cap_in_hardware; | 64 | return force_cap_on || cap_in_hardware; |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | static struct acpi_device_id power_meter_ids[] = { | 67 | static const struct acpi_device_id power_meter_ids[] = { |
| 68 | {"ACPI000D", 0}, | 68 | {"ACPI000D", 0}, |
| 69 | {"", 0}, | 69 | {"", 0}, |
| 70 | }; | 70 | }; |
| @@ -534,6 +534,7 @@ static void remove_domain_devices(struct acpi_power_meter_resource *resource) | |||
| 534 | 534 | ||
| 535 | kfree(resource->domain_devices); | 535 | kfree(resource->domain_devices); |
| 536 | kobject_put(resource->holders_dir); | 536 | kobject_put(resource->holders_dir); |
| 537 | resource->num_domain_devices = 0; | ||
| 537 | } | 538 | } |
| 538 | 539 | ||
| 539 | static int read_domain_devices(struct acpi_power_meter_resource *resource) | 540 | static int read_domain_devices(struct acpi_power_meter_resource *resource) |
| @@ -740,7 +741,6 @@ skip_unsafe_cap: | |||
| 740 | 741 | ||
| 741 | return res; | 742 | return res; |
| 742 | error: | 743 | error: |
| 743 | remove_domain_devices(resource); | ||
| 744 | remove_attrs(resource); | 744 | remove_attrs(resource); |
| 745 | return res; | 745 | return res; |
| 746 | } | 746 | } |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index d1676b1754d9..7c0441f63b39 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
| @@ -305,6 +305,28 @@ static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr) | |||
| 305 | pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency; | 305 | pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency; |
| 306 | pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency; | 306 | pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency; |
| 307 | 307 | ||
| 308 | /* | ||
| 309 | * FADT specified C2 latency must be less than or equal to | ||
| 310 | * 100 microseconds. | ||
| 311 | */ | ||
| 312 | if (acpi_gbl_FADT.C2latency > ACPI_PROCESSOR_MAX_C2_LATENCY) { | ||
| 313 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
| 314 | "C2 latency too large [%d]\n", acpi_gbl_FADT.C2latency)); | ||
| 315 | /* invalidate C2 */ | ||
| 316 | pr->power.states[ACPI_STATE_C2].address = 0; | ||
| 317 | } | ||
| 318 | |||
| 319 | /* | ||
| 320 | * FADT supplied C3 latency must be less than or equal to | ||
| 321 | * 1000 microseconds. | ||
| 322 | */ | ||
| 323 | if (acpi_gbl_FADT.C3latency > ACPI_PROCESSOR_MAX_C3_LATENCY) { | ||
| 324 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
| 325 | "C3 latency too large [%d]\n", acpi_gbl_FADT.C3latency)); | ||
| 326 | /* invalidate C3 */ | ||
| 327 | pr->power.states[ACPI_STATE_C3].address = 0; | ||
| 328 | } | ||
| 329 | |||
| 308 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 330 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 309 | "lvl2[0x%08x] lvl3[0x%08x]\n", | 331 | "lvl2[0x%08x] lvl3[0x%08x]\n", |
| 310 | pr->power.states[ACPI_STATE_C2].address, | 332 | pr->power.states[ACPI_STATE_C2].address, |
| @@ -494,33 +516,6 @@ static int acpi_processor_get_power_info_cst(struct acpi_processor *pr) | |||
| 494 | return status; | 516 | return status; |
| 495 | } | 517 | } |
| 496 | 518 | ||
| 497 | static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx) | ||
| 498 | { | ||
| 499 | |||
| 500 | if (!cx->address) | ||
| 501 | return; | ||
| 502 | |||
| 503 | /* | ||
| 504 | * C2 latency must be less than or equal to 100 | ||
| 505 | * microseconds. | ||
| 506 | */ | ||
| 507 | else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) { | ||
| 508 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
| 509 | "latency too large [%d]\n", cx->latency)); | ||
| 510 | return; | ||
| 511 | } | ||
| 512 | |||
| 513 | /* | ||
| 514 | * Otherwise we've met all of our C2 requirements. | ||
| 515 | * Normalize the C2 latency to expidite policy | ||
| 516 | */ | ||
| 517 | cx->valid = 1; | ||
| 518 | |||
| 519 | cx->latency_ticks = cx->latency; | ||
| 520 | |||
| 521 | return; | ||
| 522 | } | ||
| 523 | |||
| 524 | static void acpi_processor_power_verify_c3(struct acpi_processor *pr, | 519 | static void acpi_processor_power_verify_c3(struct acpi_processor *pr, |
| 525 | struct acpi_processor_cx *cx) | 520 | struct acpi_processor_cx *cx) |
| 526 | { | 521 | { |
| @@ -532,16 +527,6 @@ static void acpi_processor_power_verify_c3(struct acpi_processor *pr, | |||
| 532 | return; | 527 | return; |
| 533 | 528 | ||
| 534 | /* | 529 | /* |
| 535 | * C3 latency must be less than or equal to 1000 | ||
| 536 | * microseconds. | ||
| 537 | */ | ||
| 538 | else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) { | ||
| 539 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
| 540 | "latency too large [%d]\n", cx->latency)); | ||
| 541 | return; | ||
| 542 | } | ||
| 543 | |||
| 544 | /* | ||
| 545 | * PIIX4 Erratum #18: We don't support C3 when Type-F (fast) | 530 | * PIIX4 Erratum #18: We don't support C3 when Type-F (fast) |
| 546 | * DMA transfers are used by any ISA device to avoid livelock. | 531 | * DMA transfers are used by any ISA device to avoid livelock. |
| 547 | * Note that we could disable Type-F DMA (as recommended by | 532 | * Note that we could disable Type-F DMA (as recommended by |
| @@ -629,7 +614,10 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) | |||
| 629 | break; | 614 | break; |
| 630 | 615 | ||
| 631 | case ACPI_STATE_C2: | 616 | case ACPI_STATE_C2: |
| 632 | acpi_processor_power_verify_c2(cx); | 617 | if (!cx->address) |
| 618 | break; | ||
| 619 | cx->valid = 1; | ||
| 620 | cx->latency_ticks = cx->latency; /* Normalize latency */ | ||
| 633 | break; | 621 | break; |
| 634 | 622 | ||
| 635 | case ACPI_STATE_C3: | 623 | case ACPI_STATE_C3: |
diff --git a/drivers/acpi/processor_pdc.c b/drivers/acpi/processor_pdc.c index 30e4dc0cdf30..7247819dbd80 100644 --- a/drivers/acpi/processor_pdc.c +++ b/drivers/acpi/processor_pdc.c | |||
| @@ -144,6 +144,29 @@ void acpi_processor_set_pdc(acpi_handle handle) | |||
| 144 | } | 144 | } |
| 145 | EXPORT_SYMBOL_GPL(acpi_processor_set_pdc); | 145 | EXPORT_SYMBOL_GPL(acpi_processor_set_pdc); |
| 146 | 146 | ||
| 147 | static int early_pdc_optin; | ||
| 148 | static int set_early_pdc_optin(const struct dmi_system_id *id) | ||
| 149 | { | ||
| 150 | early_pdc_optin = 1; | ||
| 151 | return 0; | ||
| 152 | } | ||
| 153 | |||
| 154 | static struct dmi_system_id __cpuinitdata early_pdc_optin_table[] = { | ||
| 155 | { | ||
| 156 | set_early_pdc_optin, "HP Envy", { | ||
| 157 | DMI_MATCH(DMI_BIOS_VENDOR, "Hewlett-Packard"), | ||
| 158 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Envy") }, NULL}, | ||
| 159 | { | ||
| 160 | set_early_pdc_optin, "HP Pavilion dv6", { | ||
| 161 | DMI_MATCH(DMI_BIOS_VENDOR, "Hewlett-Packard"), | ||
| 162 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv6") }, NULL}, | ||
| 163 | { | ||
| 164 | set_early_pdc_optin, "HP Pavilion dv7", { | ||
| 165 | DMI_MATCH(DMI_BIOS_VENDOR, "Hewlett-Packard"), | ||
| 166 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv7") }, NULL}, | ||
| 167 | {}, | ||
| 168 | }; | ||
| 169 | |||
| 147 | static acpi_status | 170 | static acpi_status |
| 148 | early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv) | 171 | early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 149 | { | 172 | { |
| @@ -151,7 +174,7 @@ early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
| 151 | return AE_OK; | 174 | return AE_OK; |
| 152 | } | 175 | } |
| 153 | 176 | ||
| 154 | void acpi_early_processor_set_pdc(void) | 177 | void __init acpi_early_processor_set_pdc(void) |
| 155 | { | 178 | { |
| 156 | /* | 179 | /* |
| 157 | * Check whether the system is DMI table. If yes, OSPM | 180 | * Check whether the system is DMI table. If yes, OSPM |
| @@ -159,6 +182,13 @@ void acpi_early_processor_set_pdc(void) | |||
| 159 | */ | 182 | */ |
| 160 | dmi_check_system(processor_idle_dmi_table); | 183 | dmi_check_system(processor_idle_dmi_table); |
| 161 | 184 | ||
| 185 | /* | ||
| 186 | * Allow systems to opt-in to early _PDC evaluation. | ||
| 187 | */ | ||
| 188 | dmi_check_system(early_pdc_optin_table); | ||
| 189 | if (!early_pdc_optin) | ||
| 190 | return; | ||
| 191 | |||
| 162 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT, | 192 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT, |
| 163 | ACPI_UINT32_MAX, | 193 | ACPI_UINT32_MAX, |
| 164 | early_init_pdc, NULL, NULL, NULL); | 194 | early_init_pdc, NULL, NULL, NULL); |
diff --git a/drivers/acpi/processor_thermal.c b/drivers/acpi/processor_thermal.c index 140c5c5b423c..6deafb4aa0da 100644 --- a/drivers/acpi/processor_thermal.c +++ b/drivers/acpi/processor_thermal.c | |||
| @@ -443,8 +443,7 @@ struct thermal_cooling_device_ops processor_cooling_ops = { | |||
| 443 | #ifdef CONFIG_ACPI_PROCFS | 443 | #ifdef CONFIG_ACPI_PROCFS |
| 444 | static int acpi_processor_limit_seq_show(struct seq_file *seq, void *offset) | 444 | static int acpi_processor_limit_seq_show(struct seq_file *seq, void *offset) |
| 445 | { | 445 | { |
| 446 | struct acpi_processor *pr = (struct acpi_processor *)seq->private; | 446 | struct acpi_processor *pr = seq->private; |
| 447 | |||
| 448 | 447 | ||
| 449 | if (!pr) | 448 | if (!pr) |
| 450 | goto end; | 449 | goto end; |
diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c index 52b9db8afc20..b16ddbf23a9c 100644 --- a/drivers/acpi/sbs.c +++ b/drivers/acpi/sbs.c | |||
| @@ -822,7 +822,10 @@ static int acpi_battery_add(struct acpi_sbs *sbs, int id) | |||
| 822 | 822 | ||
| 823 | static void acpi_battery_remove(struct acpi_sbs *sbs, int id) | 823 | static void acpi_battery_remove(struct acpi_sbs *sbs, int id) |
| 824 | { | 824 | { |
| 825 | #if defined(CONFIG_ACPI_SYSFS_POWER) || defined(CONFIG_ACPI_PROCFS_POWER) | ||
| 825 | struct acpi_battery *battery = &sbs->battery[id]; | 826 | struct acpi_battery *battery = &sbs->battery[id]; |
| 827 | #endif | ||
| 828 | |||
| 826 | #ifdef CONFIG_ACPI_SYSFS_POWER | 829 | #ifdef CONFIG_ACPI_SYSFS_POWER |
| 827 | if (battery->bat.dev) { | 830 | if (battery->bat.dev) { |
| 828 | if (battery->have_sysfs_alarm) | 831 | if (battery->have_sysfs_alarm) |
diff --git a/drivers/acpi/sbshc.c b/drivers/acpi/sbshc.c index d9339806df45..fd09229282ea 100644 --- a/drivers/acpi/sbshc.c +++ b/drivers/acpi/sbshc.c | |||
| @@ -242,7 +242,7 @@ static int smbus_alarm(void *context) | |||
| 242 | case ACPI_SBS_CHARGER: | 242 | case ACPI_SBS_CHARGER: |
| 243 | case ACPI_SBS_MANAGER: | 243 | case ACPI_SBS_MANAGER: |
| 244 | case ACPI_SBS_BATTERY: | 244 | case ACPI_SBS_BATTERY: |
| 245 | acpi_os_execute(OSL_GPE_HANDLER, | 245 | acpi_os_execute(OSL_NOTIFY_HANDLER, |
| 246 | acpi_smbus_callback, hc); | 246 | acpi_smbus_callback, hc); |
| 247 | default:; | 247 | default:; |
| 248 | } | 248 | } |
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 72e76b4b6538..b765790b32be 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
| @@ -78,6 +78,13 @@ MODULE_LICENSE("GPL"); | |||
| 78 | static int brightness_switch_enabled = 1; | 78 | static int brightness_switch_enabled = 1; |
| 79 | module_param(brightness_switch_enabled, bool, 0644); | 79 | module_param(brightness_switch_enabled, bool, 0644); |
| 80 | 80 | ||
| 81 | /* | ||
| 82 | * By default, we don't allow duplicate ACPI video bus devices | ||
| 83 | * under the same VGA controller | ||
| 84 | */ | ||
| 85 | static int allow_duplicates; | ||
| 86 | module_param(allow_duplicates, bool, 0644); | ||
| 87 | |||
| 81 | static int register_count = 0; | 88 | static int register_count = 0; |
| 82 | static int acpi_video_bus_add(struct acpi_device *device); | 89 | static int acpi_video_bus_add(struct acpi_device *device); |
| 83 | static int acpi_video_bus_remove(struct acpi_device *device, int type); | 90 | static int acpi_video_bus_remove(struct acpi_device *device, int type); |
| @@ -2239,11 +2246,47 @@ static int acpi_video_resume(struct acpi_device *device) | |||
| 2239 | return AE_OK; | 2246 | return AE_OK; |
| 2240 | } | 2247 | } |
| 2241 | 2248 | ||
| 2249 | static acpi_status | ||
| 2250 | acpi_video_bus_match(acpi_handle handle, u32 level, void *context, | ||
| 2251 | void **return_value) | ||
| 2252 | { | ||
| 2253 | struct acpi_device *device = context; | ||
| 2254 | struct acpi_device *sibling; | ||
| 2255 | int result; | ||
| 2256 | |||
| 2257 | if (handle == device->handle) | ||
| 2258 | return AE_CTRL_TERMINATE; | ||
| 2259 | |||
| 2260 | result = acpi_bus_get_device(handle, &sibling); | ||
| 2261 | if (result) | ||
| 2262 | return AE_OK; | ||
| 2263 | |||
| 2264 | if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME)) | ||
| 2265 | return AE_ALREADY_EXISTS; | ||
| 2266 | |||
| 2267 | return AE_OK; | ||
| 2268 | } | ||
| 2269 | |||
| 2242 | static int acpi_video_bus_add(struct acpi_device *device) | 2270 | static int acpi_video_bus_add(struct acpi_device *device) |
| 2243 | { | 2271 | { |
| 2244 | struct acpi_video_bus *video; | 2272 | struct acpi_video_bus *video; |
| 2245 | struct input_dev *input; | 2273 | struct input_dev *input; |
| 2246 | int error; | 2274 | int error; |
| 2275 | acpi_status status; | ||
| 2276 | |||
| 2277 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, | ||
| 2278 | device->parent->handle, 1, | ||
| 2279 | acpi_video_bus_match, NULL, | ||
| 2280 | device, NULL); | ||
| 2281 | if (status == AE_ALREADY_EXISTS) { | ||
| 2282 | printk(KERN_WARNING FW_BUG | ||
| 2283 | "Duplicate ACPI video bus devices for the" | ||
| 2284 | " same VGA controller, please try module " | ||
| 2285 | "parameter \"video.allow_duplicates=1\"" | ||
| 2286 | "if the current driver doesn't work.\n"); | ||
| 2287 | if (!allow_duplicates) | ||
| 2288 | return -ENODEV; | ||
| 2289 | } | ||
| 2247 | 2290 | ||
| 2248 | video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL); | 2291 | video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL); |
| 2249 | if (!video) | 2292 | if (!video) |
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index b8bea100a160..b34390347c16 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
| @@ -2868,6 +2868,21 @@ static bool ahci_broken_suspend(struct pci_dev *pdev) | |||
| 2868 | }, | 2868 | }, |
| 2869 | .driver_data = "F.23", /* cutoff BIOS version */ | 2869 | .driver_data = "F.23", /* cutoff BIOS version */ |
| 2870 | }, | 2870 | }, |
| 2871 | /* | ||
| 2872 | * Acer eMachines G725 has the same problem. BIOS | ||
| 2873 | * V1.03 is known to be broken. V3.04 is known to | ||
| 2874 | * work. Inbetween, there are V1.06, V2.06 and V3.03 | ||
| 2875 | * that we don't have much idea about. For now, | ||
| 2876 | * blacklist anything older than V3.04. | ||
| 2877 | */ | ||
| 2878 | { | ||
| 2879 | .ident = "G725", | ||
| 2880 | .matches = { | ||
| 2881 | DMI_MATCH(DMI_SYS_VENDOR, "eMachines"), | ||
| 2882 | DMI_MATCH(DMI_PRODUCT_NAME, "eMachines G725"), | ||
| 2883 | }, | ||
| 2884 | .driver_data = "V3.04", /* cutoff BIOS version */ | ||
| 2885 | }, | ||
| 2871 | { } /* terminate list */ | 2886 | { } /* terminate list */ |
| 2872 | }; | 2887 | }; |
| 2873 | const struct dmi_system_id *dmi = dmi_first_match(sysids); | 2888 | const struct dmi_system_id *dmi = dmi_first_match(sysids); |
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index 19136a7e1064..6f3f2257d0f0 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c | |||
| @@ -329,7 +329,7 @@ static struct ata_port_operations ich_pata_ops = { | |||
| 329 | }; | 329 | }; |
| 330 | 330 | ||
| 331 | static struct ata_port_operations piix_sata_ops = { | 331 | static struct ata_port_operations piix_sata_ops = { |
| 332 | .inherits = &ata_bmdma_port_ops, | 332 | .inherits = &ata_bmdma32_port_ops, |
| 333 | }; | 333 | }; |
| 334 | 334 | ||
| 335 | static struct ata_port_operations piix_sidpr_sata_ops = { | 335 | static struct ata_port_operations piix_sidpr_sata_ops = { |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 22ff51bdbc8a..6728328f3bea 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
| @@ -3790,21 +3790,45 @@ int sata_link_debounce(struct ata_link *link, const unsigned long *params, | |||
| 3790 | int sata_link_resume(struct ata_link *link, const unsigned long *params, | 3790 | int sata_link_resume(struct ata_link *link, const unsigned long *params, |
| 3791 | unsigned long deadline) | 3791 | unsigned long deadline) |
| 3792 | { | 3792 | { |
| 3793 | int tries = ATA_LINK_RESUME_TRIES; | ||
| 3793 | u32 scontrol, serror; | 3794 | u32 scontrol, serror; |
| 3794 | int rc; | 3795 | int rc; |
| 3795 | 3796 | ||
| 3796 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) | 3797 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
| 3797 | return rc; | 3798 | return rc; |
| 3798 | 3799 | ||
| 3799 | scontrol = (scontrol & 0x0f0) | 0x300; | 3800 | /* |
| 3801 | * Writes to SControl sometimes get ignored under certain | ||
| 3802 | * controllers (ata_piix SIDPR). Make sure DET actually is | ||
| 3803 | * cleared. | ||
| 3804 | */ | ||
| 3805 | do { | ||
| 3806 | scontrol = (scontrol & 0x0f0) | 0x300; | ||
| 3807 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) | ||
| 3808 | return rc; | ||
| 3809 | /* | ||
| 3810 | * Some PHYs react badly if SStatus is pounded | ||
| 3811 | * immediately after resuming. Delay 200ms before | ||
| 3812 | * debouncing. | ||
| 3813 | */ | ||
| 3814 | msleep(200); | ||
| 3800 | 3815 | ||
| 3801 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) | 3816 | /* is SControl restored correctly? */ |
| 3802 | return rc; | 3817 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
| 3818 | return rc; | ||
| 3819 | } while ((scontrol & 0xf0f) != 0x300 && --tries); | ||
| 3803 | 3820 | ||
| 3804 | /* Some PHYs react badly if SStatus is pounded immediately | 3821 | if ((scontrol & 0xf0f) != 0x300) { |
| 3805 | * after resuming. Delay 200ms before debouncing. | 3822 | ata_link_printk(link, KERN_ERR, |
| 3806 | */ | 3823 | "failed to resume link (SControl %X)\n", |
| 3807 | msleep(200); | 3824 | scontrol); |
| 3825 | return 0; | ||
| 3826 | } | ||
| 3827 | |||
| 3828 | if (tries < ATA_LINK_RESUME_TRIES) | ||
| 3829 | ata_link_printk(link, KERN_WARNING, | ||
| 3830 | "link resume succeeded after %d retries\n", | ||
| 3831 | ATA_LINK_RESUME_TRIES - tries); | ||
| 3808 | 3832 | ||
| 3809 | if ((rc = sata_link_debounce(link, params, deadline))) | 3833 | if ((rc = sata_link_debounce(link, params, deadline))) |
| 3810 | return rc; | 3834 | return rc; |
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 0ea97c942ced..9f6cfac0f2cc 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c | |||
| @@ -2028,8 +2028,9 @@ static void ata_eh_link_autopsy(struct ata_link *link) | |||
| 2028 | qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER); | 2028 | qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER); |
| 2029 | 2029 | ||
| 2030 | /* determine whether the command is worth retrying */ | 2030 | /* determine whether the command is worth retrying */ |
| 2031 | if (!(qc->err_mask & AC_ERR_INVALID) && | 2031 | if (qc->flags & ATA_QCFLAG_IO || |
| 2032 | ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) | 2032 | (!(qc->err_mask & AC_ERR_INVALID) && |
| 2033 | qc->err_mask != AC_ERR_DEV)) | ||
| 2033 | qc->flags |= ATA_QCFLAG_RETRY; | 2034 | qc->flags |= ATA_QCFLAG_RETRY; |
| 2034 | 2035 | ||
| 2035 | /* accumulate error info */ | 2036 | /* accumulate error info */ |
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index f4ea5a8c325b..d096fbcbc771 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
| @@ -2875,7 +2875,7 @@ static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc) | |||
| 2875 | * write indication (used for PIO/DMA setup), result TF is | 2875 | * write indication (used for PIO/DMA setup), result TF is |
| 2876 | * copied back and we don't whine too much about its failure. | 2876 | * copied back and we don't whine too much about its failure. |
| 2877 | */ | 2877 | */ |
| 2878 | tf->flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; | 2878 | tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 2879 | if (scmd->sc_data_direction == DMA_TO_DEVICE) | 2879 | if (scmd->sc_data_direction == DMA_TO_DEVICE) |
| 2880 | tf->flags |= ATA_TFLAG_WRITE; | 2880 | tf->flags |= ATA_TFLAG_WRITE; |
| 2881 | 2881 | ||
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 741065c9da67..730ef3c384ca 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c | |||
| @@ -893,6 +893,9 @@ static void ata_pio_sector(struct ata_queued_cmd *qc) | |||
| 893 | do_write); | 893 | do_write); |
| 894 | } | 894 | } |
| 895 | 895 | ||
| 896 | if (!do_write) | ||
| 897 | flush_dcache_page(page); | ||
| 898 | |||
| 896 | qc->curbytes += qc->sect_size; | 899 | qc->curbytes += qc->sect_size; |
| 897 | qc->cursg_ofs += qc->sect_size; | 900 | qc->cursg_ofs += qc->sect_size; |
| 898 | 901 | ||
diff --git a/drivers/ata/sata_promise.c b/drivers/ata/sata_promise.c index 07d8d00b4d34..63306285c843 100644 --- a/drivers/ata/sata_promise.c +++ b/drivers/ata/sata_promise.c | |||
| @@ -862,7 +862,7 @@ static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc, | |||
| 862 | if (port_status & PDC_DRIVE_ERR) | 862 | if (port_status & PDC_DRIVE_ERR) |
| 863 | ac_err_mask |= AC_ERR_DEV; | 863 | ac_err_mask |= AC_ERR_DEV; |
| 864 | if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR)) | 864 | if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR)) |
| 865 | ac_err_mask |= AC_ERR_HSM; | 865 | ac_err_mask |= AC_ERR_OTHER; |
| 866 | if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR)) | 866 | if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR)) |
| 867 | ac_err_mask |= AC_ERR_ATA_BUS; | 867 | ac_err_mask |= AC_ERR_ATA_BUS; |
| 868 | if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR | 868 | if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR |
diff --git a/drivers/base/devtmpfs.c b/drivers/base/devtmpfs.c index 090dd4851301..42ae452b36b0 100644 --- a/drivers/base/devtmpfs.c +++ b/drivers/base/devtmpfs.c | |||
| @@ -354,6 +354,7 @@ int __init devtmpfs_init(void) | |||
| 354 | { | 354 | { |
| 355 | int err; | 355 | int err; |
| 356 | struct vfsmount *mnt; | 356 | struct vfsmount *mnt; |
| 357 | char options[] = "mode=0755"; | ||
| 357 | 358 | ||
| 358 | err = register_filesystem(&dev_fs_type); | 359 | err = register_filesystem(&dev_fs_type); |
| 359 | if (err) { | 360 | if (err) { |
| @@ -362,7 +363,7 @@ int __init devtmpfs_init(void) | |||
| 362 | return err; | 363 | return err; |
| 363 | } | 364 | } |
| 364 | 365 | ||
| 365 | mnt = kern_mount_data(&dev_fs_type, "mode=0755"); | 366 | mnt = kern_mount_data(&dev_fs_type, options); |
| 366 | if (IS_ERR(mnt)) { | 367 | if (IS_ERR(mnt)) { |
| 367 | err = PTR_ERR(mnt); | 368 | err = PTR_ERR(mnt); |
| 368 | printk(KERN_ERR "devtmpfs: unable to create devtmpfs %i\n", err); | 369 | printk(KERN_ERR "devtmpfs: unable to create devtmpfs %i\n", err); |
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index d7d77d4a402c..bd025059711f 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c | |||
| @@ -311,7 +311,7 @@ static SYSDEV_ATTR(removable, 0444, show_mem_removable, NULL); | |||
| 311 | static ssize_t | 311 | static ssize_t |
| 312 | print_block_size(struct class *class, char *buf) | 312 | print_block_size(struct class *class, char *buf) |
| 313 | { | 313 | { |
| 314 | return sprintf(buf, "%lx\n", (unsigned long)PAGES_PER_SECTION * PAGE_SIZE); | 314 | return sprintf(buf, "%#lx\n", (unsigned long)PAGES_PER_SECTION * PAGE_SIZE); |
| 315 | } | 315 | } |
| 316 | 316 | ||
| 317 | static CLASS_ATTR(block_size_bytes, 0444, print_block_size, NULL); | 317 | static CLASS_ATTR(block_size_bytes, 0444, print_block_size, NULL); |
diff --git a/drivers/block/drbd/Kconfig b/drivers/block/drbd/Kconfig index f4acd04ebeef..df0983787390 100644 --- a/drivers/block/drbd/Kconfig +++ b/drivers/block/drbd/Kconfig | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | comment "DRBD disabled because PROC_FS, INET or CONNECTOR not selected" | 5 | comment "DRBD disabled because PROC_FS, INET or CONNECTOR not selected" |
| 6 | depends on !PROC_FS || !INET || !CONNECTOR | 6 | depends on PROC_FS='n' || INET='n' || CONNECTOR='n' |
| 7 | 7 | ||
| 8 | config BLK_DEV_DRBD | 8 | config BLK_DEV_DRBD |
| 9 | tristate "DRBD Distributed Replicated Block Device support" | 9 | tristate "DRBD Distributed Replicated Block Device support" |
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index c97558763430..2bf3a6ef3684 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h | |||
| @@ -1275,7 +1275,7 @@ struct bm_extent { | |||
| 1275 | #if DRBD_MAX_SECTORS_BM < DRBD_MAX_SECTORS_32 | 1275 | #if DRBD_MAX_SECTORS_BM < DRBD_MAX_SECTORS_32 |
| 1276 | #define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM | 1276 | #define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM |
| 1277 | #define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_BM | 1277 | #define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_BM |
| 1278 | #elif !defined(CONFIG_LBD) && BITS_PER_LONG == 32 | 1278 | #elif !defined(CONFIG_LBDAF) && BITS_PER_LONG == 32 |
| 1279 | #define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_32 | 1279 | #define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_32 |
| 1280 | #define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_32 | 1280 | #define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_32 |
| 1281 | #else | 1281 | #else |
| @@ -1371,10 +1371,9 @@ extern int is_valid_ar_handle(struct drbd_request *, sector_t); | |||
| 1371 | extern void drbd_suspend_io(struct drbd_conf *mdev); | 1371 | extern void drbd_suspend_io(struct drbd_conf *mdev); |
| 1372 | extern void drbd_resume_io(struct drbd_conf *mdev); | 1372 | extern void drbd_resume_io(struct drbd_conf *mdev); |
| 1373 | extern char *ppsize(char *buf, unsigned long long size); | 1373 | extern char *ppsize(char *buf, unsigned long long size); |
| 1374 | extern sector_t drbd_new_dev_size(struct drbd_conf *, | 1374 | extern sector_t drbd_new_dev_size(struct drbd_conf *, struct drbd_backing_dev *, int); |
| 1375 | struct drbd_backing_dev *); | ||
| 1376 | enum determine_dev_size { dev_size_error = -1, unchanged = 0, shrunk = 1, grew = 2 }; | 1375 | enum determine_dev_size { dev_size_error = -1, unchanged = 0, shrunk = 1, grew = 2 }; |
| 1377 | extern enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *) __must_hold(local); | 1376 | extern enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *, int force) __must_hold(local); |
| 1378 | extern void resync_after_online_grow(struct drbd_conf *); | 1377 | extern void resync_after_online_grow(struct drbd_conf *); |
| 1379 | extern void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int) __must_hold(local); | 1378 | extern void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int) __must_hold(local); |
| 1380 | extern int drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role, | 1379 | extern int drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role, |
diff --git a/drivers/block/drbd/drbd_main.c b/drivers/block/drbd/drbd_main.c index 9348f33f6242..ab871e00ffc5 100644 --- a/drivers/block/drbd/drbd_main.c +++ b/drivers/block/drbd/drbd_main.c | |||
| @@ -1298,6 +1298,7 @@ static void after_state_ch(struct drbd_conf *mdev, union drbd_state os, | |||
| 1298 | dev_err(DEV, "Sending state in drbd_io_error() failed\n"); | 1298 | dev_err(DEV, "Sending state in drbd_io_error() failed\n"); |
| 1299 | } | 1299 | } |
| 1300 | 1300 | ||
| 1301 | wait_event(mdev->misc_wait, !atomic_read(&mdev->local_cnt)); | ||
| 1301 | lc_destroy(mdev->resync); | 1302 | lc_destroy(mdev->resync); |
| 1302 | mdev->resync = NULL; | 1303 | mdev->resync = NULL; |
| 1303 | lc_destroy(mdev->act_log); | 1304 | lc_destroy(mdev->act_log); |
| @@ -2972,7 +2973,6 @@ struct drbd_conf *drbd_new_device(unsigned int minor) | |||
| 2972 | goto out_no_q; | 2973 | goto out_no_q; |
| 2973 | mdev->rq_queue = q; | 2974 | mdev->rq_queue = q; |
| 2974 | q->queuedata = mdev; | 2975 | q->queuedata = mdev; |
| 2975 | blk_queue_max_segment_size(q, DRBD_MAX_SEGMENT_SIZE); | ||
| 2976 | 2976 | ||
| 2977 | disk = alloc_disk(1); | 2977 | disk = alloc_disk(1); |
| 2978 | if (!disk) | 2978 | if (!disk) |
| @@ -2996,6 +2996,7 @@ struct drbd_conf *drbd_new_device(unsigned int minor) | |||
| 2996 | q->backing_dev_info.congested_data = mdev; | 2996 | q->backing_dev_info.congested_data = mdev; |
| 2997 | 2997 | ||
| 2998 | blk_queue_make_request(q, drbd_make_request_26); | 2998 | blk_queue_make_request(q, drbd_make_request_26); |
| 2999 | blk_queue_max_segment_size(q, DRBD_MAX_SEGMENT_SIZE); | ||
| 2999 | blk_queue_bounce_limit(q, BLK_BOUNCE_ANY); | 3000 | blk_queue_bounce_limit(q, BLK_BOUNCE_ANY); |
| 3000 | blk_queue_merge_bvec(q, drbd_merge_bvec); | 3001 | blk_queue_merge_bvec(q, drbd_merge_bvec); |
| 3001 | q->queue_lock = &mdev->req_lock; /* needed since we use */ | 3002 | q->queue_lock = &mdev->req_lock; /* needed since we use */ |
diff --git a/drivers/block/drbd/drbd_nl.c b/drivers/block/drbd/drbd_nl.c index 4e0726aa53b0..1292e0620663 100644 --- a/drivers/block/drbd/drbd_nl.c +++ b/drivers/block/drbd/drbd_nl.c | |||
| @@ -510,7 +510,7 @@ void drbd_resume_io(struct drbd_conf *mdev) | |||
| 510 | * Returns 0 on success, negative return values indicate errors. | 510 | * Returns 0 on success, negative return values indicate errors. |
| 511 | * You should call drbd_md_sync() after calling this function. | 511 | * You should call drbd_md_sync() after calling this function. |
| 512 | */ | 512 | */ |
| 513 | enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *mdev) __must_hold(local) | 513 | enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *mdev, int force) __must_hold(local) |
| 514 | { | 514 | { |
| 515 | sector_t prev_first_sect, prev_size; /* previous meta location */ | 515 | sector_t prev_first_sect, prev_size; /* previous meta location */ |
| 516 | sector_t la_size; | 516 | sector_t la_size; |
| @@ -541,7 +541,7 @@ enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *mdev) __must_ho | |||
| 541 | /* TODO: should only be some assert here, not (re)init... */ | 541 | /* TODO: should only be some assert here, not (re)init... */ |
| 542 | drbd_md_set_sector_offsets(mdev, mdev->ldev); | 542 | drbd_md_set_sector_offsets(mdev, mdev->ldev); |
| 543 | 543 | ||
| 544 | size = drbd_new_dev_size(mdev, mdev->ldev); | 544 | size = drbd_new_dev_size(mdev, mdev->ldev, force); |
| 545 | 545 | ||
| 546 | if (drbd_get_capacity(mdev->this_bdev) != size || | 546 | if (drbd_get_capacity(mdev->this_bdev) != size || |
| 547 | drbd_bm_capacity(mdev) != size) { | 547 | drbd_bm_capacity(mdev) != size) { |
| @@ -596,7 +596,7 @@ out: | |||
| 596 | } | 596 | } |
| 597 | 597 | ||
| 598 | sector_t | 598 | sector_t |
| 599 | drbd_new_dev_size(struct drbd_conf *mdev, struct drbd_backing_dev *bdev) | 599 | drbd_new_dev_size(struct drbd_conf *mdev, struct drbd_backing_dev *bdev, int assume_peer_has_space) |
| 600 | { | 600 | { |
| 601 | sector_t p_size = mdev->p_size; /* partner's disk size. */ | 601 | sector_t p_size = mdev->p_size; /* partner's disk size. */ |
| 602 | sector_t la_size = bdev->md.la_size_sect; /* last agreed size. */ | 602 | sector_t la_size = bdev->md.la_size_sect; /* last agreed size. */ |
| @@ -606,6 +606,11 @@ drbd_new_dev_size(struct drbd_conf *mdev, struct drbd_backing_dev *bdev) | |||
| 606 | 606 | ||
| 607 | m_size = drbd_get_max_capacity(bdev); | 607 | m_size = drbd_get_max_capacity(bdev); |
| 608 | 608 | ||
| 609 | if (mdev->state.conn < C_CONNECTED && assume_peer_has_space) { | ||
| 610 | dev_warn(DEV, "Resize while not connected was forced by the user!\n"); | ||
| 611 | p_size = m_size; | ||
| 612 | } | ||
| 613 | |||
| 609 | if (p_size && m_size) { | 614 | if (p_size && m_size) { |
| 610 | size = min_t(sector_t, p_size, m_size); | 615 | size = min_t(sector_t, p_size, m_size); |
| 611 | } else { | 616 | } else { |
| @@ -965,7 +970,7 @@ static int drbd_nl_disk_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp | |||
| 965 | 970 | ||
| 966 | /* Prevent shrinking of consistent devices ! */ | 971 | /* Prevent shrinking of consistent devices ! */ |
| 967 | if (drbd_md_test_flag(nbc, MDF_CONSISTENT) && | 972 | if (drbd_md_test_flag(nbc, MDF_CONSISTENT) && |
| 968 | drbd_new_dev_size(mdev, nbc) < nbc->md.la_size_sect) { | 973 | drbd_new_dev_size(mdev, nbc, 0) < nbc->md.la_size_sect) { |
| 969 | dev_warn(DEV, "refusing to truncate a consistent device\n"); | 974 | dev_warn(DEV, "refusing to truncate a consistent device\n"); |
| 970 | retcode = ERR_DISK_TO_SMALL; | 975 | retcode = ERR_DISK_TO_SMALL; |
| 971 | goto force_diskless_dec; | 976 | goto force_diskless_dec; |
| @@ -1052,7 +1057,7 @@ static int drbd_nl_disk_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp | |||
| 1052 | !drbd_md_test_flag(mdev->ldev, MDF_CONNECTED_IND)) | 1057 | !drbd_md_test_flag(mdev->ldev, MDF_CONNECTED_IND)) |
| 1053 | set_bit(USE_DEGR_WFC_T, &mdev->flags); | 1058 | set_bit(USE_DEGR_WFC_T, &mdev->flags); |
| 1054 | 1059 | ||
| 1055 | dd = drbd_determin_dev_size(mdev); | 1060 | dd = drbd_determin_dev_size(mdev, 0); |
| 1056 | if (dd == dev_size_error) { | 1061 | if (dd == dev_size_error) { |
| 1057 | retcode = ERR_NOMEM_BITMAP; | 1062 | retcode = ERR_NOMEM_BITMAP; |
| 1058 | goto force_diskless_dec; | 1063 | goto force_diskless_dec; |
| @@ -1271,7 +1276,7 @@ static int drbd_nl_net_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp, | |||
| 1271 | goto fail; | 1276 | goto fail; |
| 1272 | } | 1277 | } |
| 1273 | 1278 | ||
| 1274 | if (crypto_tfm_alg_type(crypto_hash_tfm(tfm)) != CRYPTO_ALG_TYPE_SHASH) { | 1279 | if (!drbd_crypto_is_hash(crypto_hash_tfm(tfm))) { |
| 1275 | retcode = ERR_AUTH_ALG_ND; | 1280 | retcode = ERR_AUTH_ALG_ND; |
| 1276 | goto fail; | 1281 | goto fail; |
| 1277 | } | 1282 | } |
| @@ -1504,7 +1509,7 @@ static int drbd_nl_resize(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp, | |||
| 1504 | } | 1509 | } |
| 1505 | 1510 | ||
| 1506 | mdev->ldev->dc.disk_size = (sector_t)rs.resize_size; | 1511 | mdev->ldev->dc.disk_size = (sector_t)rs.resize_size; |
| 1507 | dd = drbd_determin_dev_size(mdev); | 1512 | dd = drbd_determin_dev_size(mdev, rs.resize_force); |
| 1508 | drbd_md_sync(mdev); | 1513 | drbd_md_sync(mdev); |
| 1509 | put_ldev(mdev); | 1514 | put_ldev(mdev); |
| 1510 | if (dd == dev_size_error) { | 1515 | if (dd == dev_size_error) { |
diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c index 259c1351b152..d065c646b35a 100644 --- a/drivers/block/drbd/drbd_receiver.c +++ b/drivers/block/drbd/drbd_receiver.c | |||
| @@ -878,9 +878,13 @@ retry: | |||
| 878 | 878 | ||
| 879 | if (mdev->cram_hmac_tfm) { | 879 | if (mdev->cram_hmac_tfm) { |
| 880 | /* drbd_request_state(mdev, NS(conn, WFAuth)); */ | 880 | /* drbd_request_state(mdev, NS(conn, WFAuth)); */ |
| 881 | if (!drbd_do_auth(mdev)) { | 881 | switch (drbd_do_auth(mdev)) { |
| 882 | case -1: | ||
| 882 | dev_err(DEV, "Authentication of peer failed\n"); | 883 | dev_err(DEV, "Authentication of peer failed\n"); |
| 883 | return -1; | 884 | return -1; |
| 885 | case 0: | ||
| 886 | dev_err(DEV, "Authentication of peer failed, trying again.\n"); | ||
| 887 | return 0; | ||
| 884 | } | 888 | } |
| 885 | } | 889 | } |
| 886 | 890 | ||
| @@ -1201,10 +1205,11 @@ static int receive_Barrier(struct drbd_conf *mdev, struct p_header *h) | |||
| 1201 | 1205 | ||
| 1202 | case WO_bdev_flush: | 1206 | case WO_bdev_flush: |
| 1203 | case WO_drain_io: | 1207 | case WO_drain_io: |
| 1204 | D_ASSERT(rv == FE_STILL_LIVE); | 1208 | if (rv == FE_STILL_LIVE) { |
| 1205 | set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags); | 1209 | set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags); |
| 1206 | drbd_wait_ee_list_empty(mdev, &mdev->active_ee); | 1210 | drbd_wait_ee_list_empty(mdev, &mdev->active_ee); |
| 1207 | rv = drbd_flush_after_epoch(mdev, mdev->current_epoch); | 1211 | rv = drbd_flush_after_epoch(mdev, mdev->current_epoch); |
| 1212 | } | ||
| 1208 | if (rv == FE_RECYCLED) | 1213 | if (rv == FE_RECYCLED) |
| 1209 | return TRUE; | 1214 | return TRUE; |
| 1210 | 1215 | ||
| @@ -1219,7 +1224,7 @@ static int receive_Barrier(struct drbd_conf *mdev, struct p_header *h) | |||
| 1219 | epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO); | 1224 | epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO); |
| 1220 | if (!epoch) { | 1225 | if (!epoch) { |
| 1221 | dev_warn(DEV, "Allocation of an epoch failed, slowing down\n"); | 1226 | dev_warn(DEV, "Allocation of an epoch failed, slowing down\n"); |
| 1222 | issue_flush = !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags); | 1227 | issue_flush = !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags); |
| 1223 | drbd_wait_ee_list_empty(mdev, &mdev->active_ee); | 1228 | drbd_wait_ee_list_empty(mdev, &mdev->active_ee); |
| 1224 | if (issue_flush) { | 1229 | if (issue_flush) { |
| 1225 | rv = drbd_flush_after_epoch(mdev, mdev->current_epoch); | 1230 | rv = drbd_flush_after_epoch(mdev, mdev->current_epoch); |
| @@ -2865,7 +2870,7 @@ static int receive_sizes(struct drbd_conf *mdev, struct p_header *h) | |||
| 2865 | 2870 | ||
| 2866 | /* Never shrink a device with usable data during connect. | 2871 | /* Never shrink a device with usable data during connect. |
| 2867 | But allow online shrinking if we are connected. */ | 2872 | But allow online shrinking if we are connected. */ |
| 2868 | if (drbd_new_dev_size(mdev, mdev->ldev) < | 2873 | if (drbd_new_dev_size(mdev, mdev->ldev, 0) < |
| 2869 | drbd_get_capacity(mdev->this_bdev) && | 2874 | drbd_get_capacity(mdev->this_bdev) && |
| 2870 | mdev->state.disk >= D_OUTDATED && | 2875 | mdev->state.disk >= D_OUTDATED && |
| 2871 | mdev->state.conn < C_CONNECTED) { | 2876 | mdev->state.conn < C_CONNECTED) { |
| @@ -2880,7 +2885,7 @@ static int receive_sizes(struct drbd_conf *mdev, struct p_header *h) | |||
| 2880 | #undef min_not_zero | 2885 | #undef min_not_zero |
| 2881 | 2886 | ||
| 2882 | if (get_ldev(mdev)) { | 2887 | if (get_ldev(mdev)) { |
| 2883 | dd = drbd_determin_dev_size(mdev); | 2888 | dd = drbd_determin_dev_size(mdev, 0); |
| 2884 | put_ldev(mdev); | 2889 | put_ldev(mdev); |
| 2885 | if (dd == dev_size_error) | 2890 | if (dd == dev_size_error) |
| 2886 | return FALSE; | 2891 | return FALSE; |
| @@ -3830,10 +3835,17 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3830 | { | 3835 | { |
| 3831 | dev_err(DEV, "This kernel was build without CONFIG_CRYPTO_HMAC.\n"); | 3836 | dev_err(DEV, "This kernel was build without CONFIG_CRYPTO_HMAC.\n"); |
| 3832 | dev_err(DEV, "You need to disable 'cram-hmac-alg' in drbd.conf.\n"); | 3837 | dev_err(DEV, "You need to disable 'cram-hmac-alg' in drbd.conf.\n"); |
| 3833 | return 0; | 3838 | return -1; |
| 3834 | } | 3839 | } |
| 3835 | #else | 3840 | #else |
| 3836 | #define CHALLENGE_LEN 64 | 3841 | #define CHALLENGE_LEN 64 |
| 3842 | |||
| 3843 | /* Return value: | ||
| 3844 | 1 - auth succeeded, | ||
| 3845 | 0 - failed, try again (network error), | ||
| 3846 | -1 - auth failed, don't try again. | ||
| 3847 | */ | ||
| 3848 | |||
| 3837 | static int drbd_do_auth(struct drbd_conf *mdev) | 3849 | static int drbd_do_auth(struct drbd_conf *mdev) |
| 3838 | { | 3850 | { |
| 3839 | char my_challenge[CHALLENGE_LEN]; /* 64 Bytes... */ | 3851 | char my_challenge[CHALLENGE_LEN]; /* 64 Bytes... */ |
| @@ -3854,7 +3866,7 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3854 | (u8 *)mdev->net_conf->shared_secret, key_len); | 3866 | (u8 *)mdev->net_conf->shared_secret, key_len); |
| 3855 | if (rv) { | 3867 | if (rv) { |
| 3856 | dev_err(DEV, "crypto_hash_setkey() failed with %d\n", rv); | 3868 | dev_err(DEV, "crypto_hash_setkey() failed with %d\n", rv); |
| 3857 | rv = 0; | 3869 | rv = -1; |
| 3858 | goto fail; | 3870 | goto fail; |
| 3859 | } | 3871 | } |
| 3860 | 3872 | ||
| @@ -3877,14 +3889,14 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3877 | 3889 | ||
| 3878 | if (p.length > CHALLENGE_LEN*2) { | 3890 | if (p.length > CHALLENGE_LEN*2) { |
| 3879 | dev_err(DEV, "expected AuthChallenge payload too big.\n"); | 3891 | dev_err(DEV, "expected AuthChallenge payload too big.\n"); |
| 3880 | rv = 0; | 3892 | rv = -1; |
| 3881 | goto fail; | 3893 | goto fail; |
| 3882 | } | 3894 | } |
| 3883 | 3895 | ||
| 3884 | peers_ch = kmalloc(p.length, GFP_NOIO); | 3896 | peers_ch = kmalloc(p.length, GFP_NOIO); |
| 3885 | if (peers_ch == NULL) { | 3897 | if (peers_ch == NULL) { |
| 3886 | dev_err(DEV, "kmalloc of peers_ch failed\n"); | 3898 | dev_err(DEV, "kmalloc of peers_ch failed\n"); |
| 3887 | rv = 0; | 3899 | rv = -1; |
| 3888 | goto fail; | 3900 | goto fail; |
| 3889 | } | 3901 | } |
| 3890 | 3902 | ||
| @@ -3900,7 +3912,7 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3900 | response = kmalloc(resp_size, GFP_NOIO); | 3912 | response = kmalloc(resp_size, GFP_NOIO); |
| 3901 | if (response == NULL) { | 3913 | if (response == NULL) { |
| 3902 | dev_err(DEV, "kmalloc of response failed\n"); | 3914 | dev_err(DEV, "kmalloc of response failed\n"); |
| 3903 | rv = 0; | 3915 | rv = -1; |
| 3904 | goto fail; | 3916 | goto fail; |
| 3905 | } | 3917 | } |
| 3906 | 3918 | ||
| @@ -3910,7 +3922,7 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3910 | rv = crypto_hash_digest(&desc, &sg, sg.length, response); | 3922 | rv = crypto_hash_digest(&desc, &sg, sg.length, response); |
| 3911 | if (rv) { | 3923 | if (rv) { |
| 3912 | dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv); | 3924 | dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv); |
| 3913 | rv = 0; | 3925 | rv = -1; |
| 3914 | goto fail; | 3926 | goto fail; |
| 3915 | } | 3927 | } |
| 3916 | 3928 | ||
| @@ -3944,9 +3956,9 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3944 | } | 3956 | } |
| 3945 | 3957 | ||
| 3946 | right_response = kmalloc(resp_size, GFP_NOIO); | 3958 | right_response = kmalloc(resp_size, GFP_NOIO); |
| 3947 | if (response == NULL) { | 3959 | if (right_response == NULL) { |
| 3948 | dev_err(DEV, "kmalloc of right_response failed\n"); | 3960 | dev_err(DEV, "kmalloc of right_response failed\n"); |
| 3949 | rv = 0; | 3961 | rv = -1; |
| 3950 | goto fail; | 3962 | goto fail; |
| 3951 | } | 3963 | } |
| 3952 | 3964 | ||
| @@ -3955,7 +3967,7 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3955 | rv = crypto_hash_digest(&desc, &sg, sg.length, right_response); | 3967 | rv = crypto_hash_digest(&desc, &sg, sg.length, right_response); |
| 3956 | if (rv) { | 3968 | if (rv) { |
| 3957 | dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv); | 3969 | dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv); |
| 3958 | rv = 0; | 3970 | rv = -1; |
| 3959 | goto fail; | 3971 | goto fail; |
| 3960 | } | 3972 | } |
| 3961 | 3973 | ||
| @@ -3964,6 +3976,8 @@ static int drbd_do_auth(struct drbd_conf *mdev) | |||
| 3964 | if (rv) | 3976 | if (rv) |
| 3965 | dev_info(DEV, "Peer authenticated using %d bytes of '%s' HMAC\n", | 3977 | dev_info(DEV, "Peer authenticated using %d bytes of '%s' HMAC\n", |
| 3966 | resp_size, mdev->net_conf->cram_hmac_alg); | 3978 | resp_size, mdev->net_conf->cram_hmac_alg); |
| 3979 | else | ||
| 3980 | rv = -1; | ||
| 3967 | 3981 | ||
| 3968 | fail: | 3982 | fail: |
| 3969 | kfree(peers_ch); | 3983 | kfree(peers_ch); |
diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 2ddf03ae034e..68b5957f107c 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c | |||
| @@ -322,7 +322,7 @@ static void pkt_sysfs_dev_remove(struct pktcdvd_device *pd) | |||
| 322 | pkt_kobj_remove(pd->kobj_stat); | 322 | pkt_kobj_remove(pd->kobj_stat); |
| 323 | pkt_kobj_remove(pd->kobj_wqueue); | 323 | pkt_kobj_remove(pd->kobj_wqueue); |
| 324 | if (class_pktcdvd) | 324 | if (class_pktcdvd) |
| 325 | device_destroy(class_pktcdvd, pd->pkt_dev); | 325 | device_unregister(pd->dev); |
| 326 | } | 326 | } |
| 327 | 327 | ||
| 328 | 328 | ||
diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index 652367aa6546..058fbccf2f52 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig | |||
| @@ -195,5 +195,16 @@ config BT_MRVL_SDIO | |||
| 195 | Say Y here to compile support for Marvell BT-over-SDIO driver | 195 | Say Y here to compile support for Marvell BT-over-SDIO driver |
| 196 | into the kernel or say M to compile it as module. | 196 | into the kernel or say M to compile it as module. |
| 197 | 197 | ||
| 198 | endmenu | 198 | config BT_ATH3K |
| 199 | tristate "Atheros firmware download driver" | ||
| 200 | depends on BT_HCIBTUSB | ||
| 201 | select FW_LOADER | ||
| 202 | help | ||
| 203 | Bluetooth firmware download driver. | ||
| 204 | This driver loads the firmware into the Atheros Bluetooth | ||
| 205 | chipset. | ||
| 199 | 206 | ||
| 207 | Say Y here to compile support for "Atheros firmware download driver" | ||
| 208 | into the kernel or say M to compile it as module (ath3k). | ||
| 209 | |||
| 210 | endmenu | ||
diff --git a/drivers/bluetooth/Makefile b/drivers/bluetooth/Makefile index b3f57d2d4eb0..7e5aed598121 100644 --- a/drivers/bluetooth/Makefile +++ b/drivers/bluetooth/Makefile | |||
| @@ -15,6 +15,7 @@ obj-$(CONFIG_BT_HCIBTUART) += btuart_cs.o | |||
| 15 | obj-$(CONFIG_BT_HCIBTUSB) += btusb.o | 15 | obj-$(CONFIG_BT_HCIBTUSB) += btusb.o |
| 16 | obj-$(CONFIG_BT_HCIBTSDIO) += btsdio.o | 16 | obj-$(CONFIG_BT_HCIBTSDIO) += btsdio.o |
| 17 | 17 | ||
| 18 | obj-$(CONFIG_BT_ATH3K) += ath3k.o | ||
| 18 | obj-$(CONFIG_BT_MRVL) += btmrvl.o | 19 | obj-$(CONFIG_BT_MRVL) += btmrvl.o |
| 19 | obj-$(CONFIG_BT_MRVL_SDIO) += btmrvl_sdio.o | 20 | obj-$(CONFIG_BT_MRVL_SDIO) += btmrvl_sdio.o |
| 20 | 21 | ||
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c new file mode 100644 index 000000000000..add9485ca5b6 --- /dev/null +++ b/drivers/bluetooth/ath3k.c | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | * | ||
| 18 | */ | ||
| 19 | |||
| 20 | |||
| 21 | #include <linux/module.h> | ||
| 22 | #include <linux/kernel.h> | ||
| 23 | #include <linux/init.h> | ||
| 24 | #include <linux/slab.h> | ||
| 25 | #include <linux/types.h> | ||
| 26 | #include <linux/errno.h> | ||
| 27 | #include <linux/device.h> | ||
| 28 | #include <linux/firmware.h> | ||
| 29 | #include <linux/usb.h> | ||
| 30 | #include <net/bluetooth/bluetooth.h> | ||
| 31 | |||
| 32 | #define VERSION "1.0" | ||
| 33 | |||
| 34 | |||
| 35 | static struct usb_device_id ath3k_table[] = { | ||
| 36 | /* Atheros AR3011 */ | ||
| 37 | { USB_DEVICE(0x0CF3, 0x3000) }, | ||
| 38 | { } /* Terminating entry */ | ||
| 39 | }; | ||
| 40 | |||
| 41 | MODULE_DEVICE_TABLE(usb, ath3k_table); | ||
| 42 | |||
| 43 | #define USB_REQ_DFU_DNLOAD 1 | ||
| 44 | #define BULK_SIZE 4096 | ||
| 45 | |||
| 46 | struct ath3k_data { | ||
| 47 | struct usb_device *udev; | ||
| 48 | u8 *fw_data; | ||
| 49 | u32 fw_size; | ||
| 50 | u32 fw_sent; | ||
| 51 | }; | ||
| 52 | |||
| 53 | static int ath3k_load_firmware(struct ath3k_data *data, | ||
| 54 | unsigned char *firmware, | ||
| 55 | int count) | ||
| 56 | { | ||
| 57 | u8 *send_buf; | ||
| 58 | int err, pipe, len, size, sent = 0; | ||
| 59 | |||
| 60 | BT_DBG("ath3k %p udev %p", data, data->udev); | ||
| 61 | |||
| 62 | pipe = usb_sndctrlpipe(data->udev, 0); | ||
| 63 | |||
| 64 | if ((usb_control_msg(data->udev, pipe, | ||
| 65 | USB_REQ_DFU_DNLOAD, | ||
| 66 | USB_TYPE_VENDOR, 0, 0, | ||
| 67 | firmware, 20, USB_CTRL_SET_TIMEOUT)) < 0) { | ||
| 68 | BT_ERR("Can't change to loading configuration err"); | ||
| 69 | return -EBUSY; | ||
| 70 | } | ||
| 71 | sent += 20; | ||
| 72 | count -= 20; | ||
| 73 | |||
| 74 | send_buf = kmalloc(BULK_SIZE, GFP_ATOMIC); | ||
| 75 | if (!send_buf) { | ||
| 76 | BT_ERR("Can't allocate memory chunk for firmware"); | ||
| 77 | return -ENOMEM; | ||
| 78 | } | ||
| 79 | |||
| 80 | while (count) { | ||
| 81 | size = min_t(uint, count, BULK_SIZE); | ||
| 82 | pipe = usb_sndbulkpipe(data->udev, 0x02); | ||
| 83 | memcpy(send_buf, firmware + sent, size); | ||
| 84 | |||
| 85 | err = usb_bulk_msg(data->udev, pipe, send_buf, size, | ||
| 86 | &len, 3000); | ||
| 87 | |||
| 88 | if (err || (len != size)) { | ||
| 89 | BT_ERR("Error in firmware loading err = %d," | ||
| 90 | "len = %d, size = %d", err, len, size); | ||
| 91 | goto error; | ||
| 92 | } | ||
| 93 | |||
| 94 | sent += size; | ||
| 95 | count -= size; | ||
| 96 | } | ||
| 97 | |||
| 98 | kfree(send_buf); | ||
| 99 | return 0; | ||
| 100 | |||
| 101 | error: | ||
| 102 | kfree(send_buf); | ||
| 103 | return err; | ||
| 104 | } | ||
| 105 | |||
| 106 | static int ath3k_probe(struct usb_interface *intf, | ||
| 107 | const struct usb_device_id *id) | ||
| 108 | { | ||
| 109 | const struct firmware *firmware; | ||
| 110 | struct usb_device *udev = interface_to_usbdev(intf); | ||
| 111 | struct ath3k_data *data; | ||
| 112 | int size; | ||
| 113 | |||
| 114 | BT_DBG("intf %p id %p", intf, id); | ||
| 115 | |||
| 116 | if (intf->cur_altsetting->desc.bInterfaceNumber != 0) | ||
| 117 | return -ENODEV; | ||
| 118 | |||
| 119 | data = kzalloc(sizeof(*data), GFP_KERNEL); | ||
| 120 | if (!data) | ||
| 121 | return -ENOMEM; | ||
| 122 | |||
| 123 | data->udev = udev; | ||
| 124 | |||
| 125 | if (request_firmware(&firmware, "ath3k-1.fw", &udev->dev) < 0) { | ||
| 126 | kfree(data); | ||
| 127 | return -EIO; | ||
| 128 | } | ||
| 129 | |||
| 130 | size = max_t(uint, firmware->size, 4096); | ||
| 131 | data->fw_data = kmalloc(size, GFP_KERNEL); | ||
| 132 | if (!data->fw_data) { | ||
| 133 | release_firmware(firmware); | ||
| 134 | kfree(data); | ||
| 135 | return -ENOMEM; | ||
| 136 | } | ||
| 137 | |||
| 138 | memcpy(data->fw_data, firmware->data, firmware->size); | ||
| 139 | data->fw_size = firmware->size; | ||
| 140 | data->fw_sent = 0; | ||
| 141 | release_firmware(firmware); | ||
| 142 | |||
| 143 | usb_set_intfdata(intf, data); | ||
| 144 | if (ath3k_load_firmware(data, data->fw_data, data->fw_size)) { | ||
| 145 | usb_set_intfdata(intf, NULL); | ||
| 146 | return -EIO; | ||
| 147 | } | ||
| 148 | |||
| 149 | return 0; | ||
| 150 | } | ||
| 151 | |||
| 152 | static void ath3k_disconnect(struct usb_interface *intf) | ||
| 153 | { | ||
| 154 | struct ath3k_data *data = usb_get_intfdata(intf); | ||
| 155 | |||
| 156 | BT_DBG("ath3k_disconnect intf %p", intf); | ||
| 157 | |||
| 158 | kfree(data->fw_data); | ||
| 159 | kfree(data); | ||
| 160 | } | ||
| 161 | |||
| 162 | static struct usb_driver ath3k_driver = { | ||
| 163 | .name = "ath3k", | ||
| 164 | .probe = ath3k_probe, | ||
| 165 | .disconnect = ath3k_disconnect, | ||
| 166 | .id_table = ath3k_table, | ||
| 167 | }; | ||
| 168 | |||
| 169 | static int __init ath3k_init(void) | ||
| 170 | { | ||
| 171 | BT_INFO("Atheros AR30xx firmware driver ver %s", VERSION); | ||
| 172 | return usb_register(&ath3k_driver); | ||
| 173 | } | ||
| 174 | |||
| 175 | static void __exit ath3k_exit(void) | ||
| 176 | { | ||
| 177 | usb_deregister(&ath3k_driver); | ||
| 178 | } | ||
| 179 | |||
| 180 | module_init(ath3k_init); | ||
| 181 | module_exit(ath3k_exit); | ||
| 182 | |||
| 183 | MODULE_AUTHOR("Atheros Communications"); | ||
| 184 | MODULE_DESCRIPTION("Atheros AR30xx firmware driver"); | ||
| 185 | MODULE_VERSION(VERSION); | ||
| 186 | MODULE_LICENSE("GPL"); | ||
| 187 | MODULE_FIRMWARE("ath3k-1.fw"); | ||
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index 2acdc605cb4b..c2cf81144715 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
| @@ -503,7 +503,9 @@ static irqreturn_t bluecard_interrupt(int irq, void *dev_inst) | |||
| 503 | unsigned int iobase; | 503 | unsigned int iobase; |
| 504 | unsigned char reg; | 504 | unsigned char reg; |
| 505 | 505 | ||
| 506 | BUG_ON(!info->hdev); | 506 | if (!info || !info->hdev) |
| 507 | /* our irq handler is shared */ | ||
| 508 | return IRQ_NONE; | ||
| 507 | 509 | ||
| 508 | if (!test_bit(CARD_READY, &(info->hw_state))) | 510 | if (!test_bit(CARD_READY, &(info->hw_state))) |
| 509 | return IRQ_HANDLED; | 511 | return IRQ_HANDLED; |
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index d814a2755ccb..9f5926aaf57f 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
| @@ -345,7 +345,9 @@ static irqreturn_t bt3c_interrupt(int irq, void *dev_inst) | |||
| 345 | int iir; | 345 | int iir; |
| 346 | irqreturn_t r = IRQ_NONE; | 346 | irqreturn_t r = IRQ_NONE; |
| 347 | 347 | ||
| 348 | BUG_ON(!info->hdev); | 348 | if (!info || !info->hdev) |
| 349 | /* our irq handler is shared */ | ||
| 350 | return IRQ_NONE; | ||
| 349 | 351 | ||
| 350 | iobase = info->p_dev->io.BasePort1; | 352 | iobase = info->p_dev->io.BasePort1; |
| 351 | 353 | ||
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index d339464dc15e..91c523099804 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c | |||
| @@ -295,7 +295,9 @@ static irqreturn_t btuart_interrupt(int irq, void *dev_inst) | |||
| 295 | int iir, lsr; | 295 | int iir, lsr; |
| 296 | irqreturn_t r = IRQ_NONE; | 296 | irqreturn_t r = IRQ_NONE; |
| 297 | 297 | ||
| 298 | BUG_ON(!info->hdev); | 298 | if (!info || !info->hdev) |
| 299 | /* our irq handler is shared */ | ||
| 300 | return IRQ_NONE; | ||
| 299 | 301 | ||
| 300 | iobase = info->p_dev->io.BasePort1; | 302 | iobase = info->p_dev->io.BasePort1; |
| 301 | 303 | ||
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index 4f02a6f3c980..697591941e17 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
| @@ -299,7 +299,9 @@ static irqreturn_t dtl1_interrupt(int irq, void *dev_inst) | |||
| 299 | int iir, lsr; | 299 | int iir, lsr; |
| 300 | irqreturn_t r = IRQ_NONE; | 300 | irqreturn_t r = IRQ_NONE; |
| 301 | 301 | ||
| 302 | BUG_ON(!info->hdev); | 302 | if (!info || !info->hdev) |
| 303 | /* our irq handler is shared */ | ||
| 304 | return IRQ_NONE; | ||
| 303 | 305 | ||
| 304 | iobase = info->p_dev->io.BasePort1; | 306 | iobase = info->p_dev->io.BasePort1; |
| 305 | 307 | ||
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 31be3ac2e21b..e023682be2c4 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
| @@ -669,7 +669,7 @@ config VIRTIO_CONSOLE | |||
| 669 | 669 | ||
| 670 | config HVCS | 670 | config HVCS |
| 671 | tristate "IBM Hypervisor Virtual Console Server support" | 671 | tristate "IBM Hypervisor Virtual Console Server support" |
| 672 | depends on PPC_PSERIES | 672 | depends on PPC_PSERIES && HVC_CONSOLE |
| 673 | help | 673 | help |
| 674 | Partitionable IBM Power5 ppc64 machines allow hosting of | 674 | Partitionable IBM Power5 ppc64 machines allow hosting of |
| 675 | firmware virtual consoles from one Linux partition by | 675 | firmware virtual consoles from one Linux partition by |
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index 5aa7a586a7ff..34cf04e21795 100644 --- a/drivers/char/agp/amd64-agp.c +++ b/drivers/char/agp/amd64-agp.c | |||
| @@ -725,14 +725,10 @@ static struct pci_driver agp_amd64_pci_driver = { | |||
| 725 | int __init agp_amd64_init(void) | 725 | int __init agp_amd64_init(void) |
| 726 | { | 726 | { |
| 727 | int err = 0; | 727 | int err = 0; |
| 728 | static int done = 0; | ||
| 729 | 728 | ||
| 730 | if (agp_off) | 729 | if (agp_off) |
| 731 | return -EINVAL; | 730 | return -EINVAL; |
| 732 | 731 | ||
| 733 | if (done++) | ||
| 734 | return agp_bridges_found ? 0 : -ENODEV; | ||
| 735 | |||
| 736 | err = pci_register_driver(&agp_amd64_pci_driver); | 732 | err = pci_register_driver(&agp_amd64_pci_driver); |
| 737 | if (err < 0) | 733 | if (err < 0) |
| 738 | return err; | 734 | return err; |
| @@ -769,14 +765,24 @@ int __init agp_amd64_init(void) | |||
| 769 | return err; | 765 | return err; |
| 770 | } | 766 | } |
| 771 | 767 | ||
| 768 | static int __init agp_amd64_mod_init(void) | ||
| 769 | { | ||
| 770 | if (gart_iommu_aperture) | ||
| 771 | return agp_bridges_found ? 0 : -ENODEV; | ||
| 772 | |||
| 773 | return agp_amd64_init(); | ||
| 774 | } | ||
| 775 | |||
| 772 | static void __exit agp_amd64_cleanup(void) | 776 | static void __exit agp_amd64_cleanup(void) |
| 773 | { | 777 | { |
| 778 | if (gart_iommu_aperture) | ||
| 779 | return; | ||
| 774 | if (aperture_resource) | 780 | if (aperture_resource) |
| 775 | release_resource(aperture_resource); | 781 | release_resource(aperture_resource); |
| 776 | pci_unregister_driver(&agp_amd64_pci_driver); | 782 | pci_unregister_driver(&agp_amd64_pci_driver); |
| 777 | } | 783 | } |
| 778 | 784 | ||
| 779 | module_init(agp_amd64_init); | 785 | module_init(agp_amd64_mod_init); |
| 780 | module_exit(agp_amd64_cleanup); | 786 | module_exit(agp_amd64_cleanup); |
| 781 | 787 | ||
| 782 | MODULE_AUTHOR("Dave Jones <davej@redhat.com>, Andi Kleen"); | 788 | MODULE_AUTHOR("Dave Jones <davej@redhat.com>, Andi Kleen"); |
diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c index 30c36ac2cd00..3999a5f25f38 100644 --- a/drivers/char/agp/intel-agp.c +++ b/drivers/char/agp/intel-agp.c | |||
| @@ -2460,10 +2460,14 @@ static int __devinit agp_intel_probe(struct pci_dev *pdev, | |||
| 2460 | &bridge->mode); | 2460 | &bridge->mode); |
| 2461 | } | 2461 | } |
| 2462 | 2462 | ||
| 2463 | if (bridge->driver->mask_memory == intel_i965_mask_memory) | 2463 | if (bridge->driver->mask_memory == intel_i965_mask_memory) { |
| 2464 | if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(36))) | 2464 | if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(36))) |
| 2465 | dev_err(&intel_private.pcidev->dev, | 2465 | dev_err(&intel_private.pcidev->dev, |
| 2466 | "set gfx device dma mask 36bit failed!\n"); | 2466 | "set gfx device dma mask 36bit failed!\n"); |
| 2467 | else | ||
| 2468 | pci_set_consistent_dma_mask(intel_private.pcidev, | ||
| 2469 | DMA_BIT_MASK(36)); | ||
| 2470 | } | ||
| 2467 | 2471 | ||
| 2468 | pci_set_drvdata(pdev, bridge); | 2472 | pci_set_drvdata(pdev, bridge); |
| 2469 | return agp_add_bridge(bridge); | 2473 | return agp_add_bridge(bridge); |
diff --git a/drivers/char/hw_random/virtio-rng.c b/drivers/char/hw_random/virtio-rng.c index bdaef8e94021..64fe0a793efd 100644 --- a/drivers/char/hw_random/virtio-rng.c +++ b/drivers/char/hw_random/virtio-rng.c | |||
| @@ -114,7 +114,7 @@ static struct virtio_device_id id_table[] = { | |||
| 114 | { 0 }, | 114 | { 0 }, |
| 115 | }; | 115 | }; |
| 116 | 116 | ||
| 117 | static struct virtio_driver virtio_rng = { | 117 | static struct virtio_driver virtio_rng_driver = { |
| 118 | .driver.name = KBUILD_MODNAME, | 118 | .driver.name = KBUILD_MODNAME, |
| 119 | .driver.owner = THIS_MODULE, | 119 | .driver.owner = THIS_MODULE, |
| 120 | .id_table = id_table, | 120 | .id_table = id_table, |
| @@ -124,12 +124,12 @@ static struct virtio_driver virtio_rng = { | |||
| 124 | 124 | ||
| 125 | static int __init init(void) | 125 | static int __init init(void) |
| 126 | { | 126 | { |
| 127 | return register_virtio_driver(&virtio_rng); | 127 | return register_virtio_driver(&virtio_rng_driver); |
| 128 | } | 128 | } |
| 129 | 129 | ||
| 130 | static void __exit fini(void) | 130 | static void __exit fini(void) |
| 131 | { | 131 | { |
| 132 | unregister_virtio_driver(&virtio_rng); | 132 | unregister_virtio_driver(&virtio_rng_driver); |
| 133 | } | 133 | } |
| 134 | module_init(init); | 134 | module_init(init); |
| 135 | module_exit(fini); | 135 | module_exit(fini); |
diff --git a/drivers/char/mem.c b/drivers/char/mem.c index be832b6f8279..48788db4e280 100644 --- a/drivers/char/mem.c +++ b/drivers/char/mem.c | |||
| @@ -395,6 +395,7 @@ static ssize_t read_kmem(struct file *file, char __user *buf, | |||
| 395 | unsigned long p = *ppos; | 395 | unsigned long p = *ppos; |
| 396 | ssize_t low_count, read, sz; | 396 | ssize_t low_count, read, sz; |
| 397 | char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */ | 397 | char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */ |
| 398 | int err = 0; | ||
| 398 | 399 | ||
| 399 | read = 0; | 400 | read = 0; |
| 400 | if (p < (unsigned long) high_memory) { | 401 | if (p < (unsigned long) high_memory) { |
| @@ -441,12 +442,16 @@ static ssize_t read_kmem(struct file *file, char __user *buf, | |||
| 441 | return -ENOMEM; | 442 | return -ENOMEM; |
| 442 | while (count > 0) { | 443 | while (count > 0) { |
| 443 | sz = size_inside_page(p, count); | 444 | sz = size_inside_page(p, count); |
| 445 | if (!is_vmalloc_or_module_addr((void *)p)) { | ||
| 446 | err = -ENXIO; | ||
| 447 | break; | ||
| 448 | } | ||
| 444 | sz = vread(kbuf, (char *)p, sz); | 449 | sz = vread(kbuf, (char *)p, sz); |
| 445 | if (!sz) | 450 | if (!sz) |
| 446 | break; | 451 | break; |
| 447 | if (copy_to_user(buf, kbuf, sz)) { | 452 | if (copy_to_user(buf, kbuf, sz)) { |
| 448 | free_page((unsigned long)kbuf); | 453 | err = -EFAULT; |
| 449 | return -EFAULT; | 454 | break; |
| 450 | } | 455 | } |
| 451 | count -= sz; | 456 | count -= sz; |
| 452 | buf += sz; | 457 | buf += sz; |
| @@ -455,8 +460,8 @@ static ssize_t read_kmem(struct file *file, char __user *buf, | |||
| 455 | } | 460 | } |
| 456 | free_page((unsigned long)kbuf); | 461 | free_page((unsigned long)kbuf); |
| 457 | } | 462 | } |
| 458 | *ppos = p; | 463 | *ppos = p; |
| 459 | return read; | 464 | return read ? read : err; |
| 460 | } | 465 | } |
| 461 | 466 | ||
| 462 | 467 | ||
| @@ -520,6 +525,7 @@ static ssize_t write_kmem(struct file * file, const char __user * buf, | |||
| 520 | ssize_t wrote = 0; | 525 | ssize_t wrote = 0; |
| 521 | ssize_t virtr = 0; | 526 | ssize_t virtr = 0; |
| 522 | char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */ | 527 | char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */ |
| 528 | int err = 0; | ||
| 523 | 529 | ||
| 524 | if (p < (unsigned long) high_memory) { | 530 | if (p < (unsigned long) high_memory) { |
| 525 | unsigned long to_write = min_t(unsigned long, count, | 531 | unsigned long to_write = min_t(unsigned long, count, |
| @@ -540,14 +546,16 @@ static ssize_t write_kmem(struct file * file, const char __user * buf, | |||
| 540 | unsigned long sz = size_inside_page(p, count); | 546 | unsigned long sz = size_inside_page(p, count); |
| 541 | unsigned long n; | 547 | unsigned long n; |
| 542 | 548 | ||
| 549 | if (!is_vmalloc_or_module_addr((void *)p)) { | ||
| 550 | err = -ENXIO; | ||
| 551 | break; | ||
| 552 | } | ||
| 543 | n = copy_from_user(kbuf, buf, sz); | 553 | n = copy_from_user(kbuf, buf, sz); |
| 544 | if (n) { | 554 | if (n) { |
| 545 | if (wrote + virtr) | 555 | err = -EFAULT; |
| 546 | break; | 556 | break; |
| 547 | free_page((unsigned long)kbuf); | ||
| 548 | return -EFAULT; | ||
| 549 | } | 557 | } |
| 550 | sz = vwrite(kbuf, (char *)p, sz); | 558 | vwrite(kbuf, (char *)p, sz); |
| 551 | count -= sz; | 559 | count -= sz; |
| 552 | buf += sz; | 560 | buf += sz; |
| 553 | virtr += sz; | 561 | virtr += sz; |
| @@ -556,8 +564,8 @@ static ssize_t write_kmem(struct file * file, const char __user * buf, | |||
| 556 | free_page((unsigned long)kbuf); | 564 | free_page((unsigned long)kbuf); |
| 557 | } | 565 | } |
| 558 | 566 | ||
| 559 | *ppos = p; | 567 | *ppos = p; |
| 560 | return virtr + wrote; | 568 | return virtr + wrote ? : err; |
| 561 | } | 569 | } |
| 562 | #endif | 570 | #endif |
| 563 | 571 | ||
diff --git a/drivers/char/nozomi.c b/drivers/char/nozomi.c index 7d73cd430340..2ad7d37afbd0 100644 --- a/drivers/char/nozomi.c +++ b/drivers/char/nozomi.c | |||
| @@ -1651,10 +1651,10 @@ static void ntty_close(struct tty_struct *tty, struct file *file) | |||
| 1651 | 1651 | ||
| 1652 | dc->open_ttys--; | 1652 | dc->open_ttys--; |
| 1653 | port->count--; | 1653 | port->count--; |
| 1654 | tty_port_tty_set(port, NULL); | ||
| 1655 | 1654 | ||
| 1656 | if (port->count == 0) { | 1655 | if (port->count == 0) { |
| 1657 | DBG1("close: %d", nport->token_dl); | 1656 | DBG1("close: %d", nport->token_dl); |
| 1657 | tty_port_tty_set(port, NULL); | ||
| 1658 | spin_lock_irqsave(&dc->spin_mutex, flags); | 1658 | spin_lock_irqsave(&dc->spin_mutex, flags); |
| 1659 | dc->last_ier &= ~(nport->token_dl); | 1659 | dc->last_ier &= ~(nport->token_dl); |
| 1660 | writew(dc->last_ier, dc->reg_ier); | 1660 | writew(dc->last_ier, dc->reg_ier); |
diff --git a/drivers/char/random.c b/drivers/char/random.c index 8258982b49ec..2849713d2231 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c | |||
| @@ -1051,12 +1051,6 @@ random_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) | |||
| 1051 | /* like a named pipe */ | 1051 | /* like a named pipe */ |
| 1052 | } | 1052 | } |
| 1053 | 1053 | ||
| 1054 | /* | ||
| 1055 | * If we gave the user some bytes, update the access time. | ||
| 1056 | */ | ||
| 1057 | if (count) | ||
| 1058 | file_accessed(file); | ||
| 1059 | |||
| 1060 | return (count ? count : retval); | 1054 | return (count ? count : retval); |
| 1061 | } | 1055 | } |
| 1062 | 1056 | ||
| @@ -1107,7 +1101,6 @@ static ssize_t random_write(struct file *file, const char __user *buffer, | |||
| 1107 | size_t count, loff_t *ppos) | 1101 | size_t count, loff_t *ppos) |
| 1108 | { | 1102 | { |
| 1109 | size_t ret; | 1103 | size_t ret; |
| 1110 | struct inode *inode = file->f_path.dentry->d_inode; | ||
| 1111 | 1104 | ||
| 1112 | ret = write_pool(&blocking_pool, buffer, count); | 1105 | ret = write_pool(&blocking_pool, buffer, count); |
| 1113 | if (ret) | 1106 | if (ret) |
| @@ -1116,8 +1109,6 @@ static ssize_t random_write(struct file *file, const char __user *buffer, | |||
| 1116 | if (ret) | 1109 | if (ret) |
| 1117 | return ret; | 1110 | return ret; |
| 1118 | 1111 | ||
| 1119 | inode->i_mtime = current_fs_time(inode->i_sb); | ||
| 1120 | mark_inode_dirty(inode); | ||
| 1121 | return (ssize_t)count; | 1112 | return (ssize_t)count; |
| 1122 | } | 1113 | } |
| 1123 | 1114 | ||
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index f15df40bc318..dcb9083ecde0 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
| @@ -1951,8 +1951,10 @@ static int tty_fasync(int fd, struct file *filp, int on) | |||
| 1951 | pid = task_pid(current); | 1951 | pid = task_pid(current); |
| 1952 | type = PIDTYPE_PID; | 1952 | type = PIDTYPE_PID; |
| 1953 | } | 1953 | } |
| 1954 | get_pid(pid); | ||
| 1954 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 1955 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); |
| 1955 | retval = __f_setown(filp, pid, type, 0); | 1956 | retval = __f_setown(filp, pid, type, 0); |
| 1957 | put_pid(pid); | ||
| 1956 | if (retval) | 1958 | if (retval) |
| 1957 | goto out; | 1959 | goto out; |
| 1958 | } else { | 1960 | } else { |
diff --git a/drivers/char/uv_mmtimer.c b/drivers/char/uv_mmtimer.c index 867b67be9f0a..c7072ba14f48 100644 --- a/drivers/char/uv_mmtimer.c +++ b/drivers/char/uv_mmtimer.c | |||
| @@ -89,13 +89,17 @@ static long uv_mmtimer_ioctl(struct file *file, unsigned int cmd, | |||
| 89 | switch (cmd) { | 89 | switch (cmd) { |
| 90 | case MMTIMER_GETOFFSET: /* offset of the counter */ | 90 | case MMTIMER_GETOFFSET: /* offset of the counter */ |
| 91 | /* | 91 | /* |
| 92 | * UV RTC register is on its own page | 92 | * Starting with HUB rev 2.0, the UV RTC register is |
| 93 | * replicated across all cachelines of it's own page. | ||
| 94 | * This allows faster simultaneous reads from a given socket. | ||
| 95 | * | ||
| 96 | * The offset returned is in 64 bit units. | ||
| 93 | */ | 97 | */ |
| 94 | if (PAGE_SIZE <= (1 << 16)) | 98 | if (uv_get_min_hub_revision_id() == 1) |
| 95 | ret = ((UV_LOCAL_MMR_BASE | UVH_RTC) & (PAGE_SIZE-1)) | 99 | ret = 0; |
| 96 | / 8; | ||
| 97 | else | 100 | else |
| 98 | ret = -ENOSYS; | 101 | ret = ((uv_blade_processor_id() * L1_CACHE_BYTES) % |
| 102 | PAGE_SIZE) / 8; | ||
| 99 | break; | 103 | break; |
| 100 | 104 | ||
| 101 | case MMTIMER_GETRES: /* resolution of the clock in 10^-15 s */ | 105 | case MMTIMER_GETRES: /* resolution of the clock in 10^-15 s */ |
| @@ -115,8 +119,8 @@ static long uv_mmtimer_ioctl(struct file *file, unsigned int cmd, | |||
| 115 | ret = hweight64(UVH_RTC_REAL_TIME_CLOCK_MASK); | 119 | ret = hweight64(UVH_RTC_REAL_TIME_CLOCK_MASK); |
| 116 | break; | 120 | break; |
| 117 | 121 | ||
| 118 | case MMTIMER_MMAPAVAIL: /* can we mmap the clock into userspace? */ | 122 | case MMTIMER_MMAPAVAIL: |
| 119 | ret = (PAGE_SIZE <= (1 << 16)) ? 1 : 0; | 123 | ret = 1; |
| 120 | break; | 124 | break; |
| 121 | 125 | ||
| 122 | case MMTIMER_GETCOUNTER: | 126 | case MMTIMER_GETCOUNTER: |
diff --git a/drivers/connector/connector.c b/drivers/connector/connector.c index f06024668f99..537c29ac4487 100644 --- a/drivers/connector/connector.c +++ b/drivers/connector/connector.c | |||
| @@ -36,17 +36,6 @@ MODULE_LICENSE("GPL"); | |||
| 36 | MODULE_AUTHOR("Evgeniy Polyakov <zbr@ioremap.net>"); | 36 | MODULE_AUTHOR("Evgeniy Polyakov <zbr@ioremap.net>"); |
| 37 | MODULE_DESCRIPTION("Generic userspace <-> kernelspace connector."); | 37 | MODULE_DESCRIPTION("Generic userspace <-> kernelspace connector."); |
| 38 | 38 | ||
| 39 | static u32 cn_idx = CN_IDX_CONNECTOR; | ||
| 40 | static u32 cn_val = CN_VAL_CONNECTOR; | ||
| 41 | |||
| 42 | module_param(cn_idx, uint, 0); | ||
| 43 | module_param(cn_val, uint, 0); | ||
| 44 | MODULE_PARM_DESC(cn_idx, "Connector's main device idx."); | ||
| 45 | MODULE_PARM_DESC(cn_val, "Connector's main device val."); | ||
| 46 | |||
| 47 | static DEFINE_MUTEX(notify_lock); | ||
| 48 | static LIST_HEAD(notify_list); | ||
| 49 | |||
| 50 | static struct cn_dev cdev; | 39 | static struct cn_dev cdev; |
| 51 | 40 | ||
| 52 | static int cn_already_initialized; | 41 | static int cn_already_initialized; |
| @@ -210,54 +199,6 @@ static void cn_rx_skb(struct sk_buff *__skb) | |||
| 210 | } | 199 | } |
| 211 | 200 | ||
| 212 | /* | 201 | /* |
| 213 | * Notification routing. | ||
| 214 | * | ||
| 215 | * Gets id and checks if there are notification request for it's idx | ||
| 216 | * and val. If there are such requests notify the listeners with the | ||
| 217 | * given notify event. | ||
| 218 | * | ||
| 219 | */ | ||
| 220 | static void cn_notify(struct cb_id *id, u32 notify_event) | ||
| 221 | { | ||
| 222 | struct cn_ctl_entry *ent; | ||
| 223 | |||
| 224 | mutex_lock(¬ify_lock); | ||
| 225 | list_for_each_entry(ent, ¬ify_list, notify_entry) { | ||
| 226 | int i; | ||
| 227 | struct cn_notify_req *req; | ||
| 228 | struct cn_ctl_msg *ctl = ent->msg; | ||
| 229 | int idx_found, val_found; | ||
| 230 | |||
| 231 | idx_found = val_found = 0; | ||
| 232 | |||
| 233 | req = (struct cn_notify_req *)ctl->data; | ||
| 234 | for (i = 0; i < ctl->idx_notify_num; ++i, ++req) { | ||
| 235 | if (id->idx >= req->first && | ||
| 236 | id->idx < req->first + req->range) { | ||
| 237 | idx_found = 1; | ||
| 238 | break; | ||
| 239 | } | ||
| 240 | } | ||
| 241 | |||
| 242 | for (i = 0; i < ctl->val_notify_num; ++i, ++req) { | ||
| 243 | if (id->val >= req->first && | ||
| 244 | id->val < req->first + req->range) { | ||
| 245 | val_found = 1; | ||
| 246 | break; | ||
| 247 | } | ||
| 248 | } | ||
| 249 | |||
| 250 | if (idx_found && val_found) { | ||
| 251 | struct cn_msg m = { .ack = notify_event, }; | ||
| 252 | |||
| 253 | memcpy(&m.id, id, sizeof(m.id)); | ||
| 254 | cn_netlink_send(&m, ctl->group, GFP_KERNEL); | ||
| 255 | } | ||
| 256 | } | ||
| 257 | mutex_unlock(¬ify_lock); | ||
| 258 | } | ||
| 259 | |||
| 260 | /* | ||
| 261 | * Callback add routing - adds callback with given ID and name. | 202 | * Callback add routing - adds callback with given ID and name. |
| 262 | * If there is registered callback with the same ID it will not be added. | 203 | * If there is registered callback with the same ID it will not be added. |
| 263 | * | 204 | * |
| @@ -276,8 +217,6 @@ int cn_add_callback(struct cb_id *id, char *name, | |||
| 276 | if (err) | 217 | if (err) |
| 277 | return err; | 218 | return err; |
| 278 | 219 | ||
| 279 | cn_notify(id, 0); | ||
| 280 | |||
| 281 | return 0; | 220 | return 0; |
| 282 | } | 221 | } |
| 283 | EXPORT_SYMBOL_GPL(cn_add_callback); | 222 | EXPORT_SYMBOL_GPL(cn_add_callback); |
| @@ -295,111 +234,9 @@ void cn_del_callback(struct cb_id *id) | |||
| 295 | struct cn_dev *dev = &cdev; | 234 | struct cn_dev *dev = &cdev; |
| 296 | 235 | ||
| 297 | cn_queue_del_callback(dev->cbdev, id); | 236 | cn_queue_del_callback(dev->cbdev, id); |
| 298 | cn_notify(id, 1); | ||
| 299 | } | 237 | } |
| 300 | EXPORT_SYMBOL_GPL(cn_del_callback); | 238 | EXPORT_SYMBOL_GPL(cn_del_callback); |
| 301 | 239 | ||
| 302 | /* | ||
| 303 | * Checks two connector's control messages to be the same. | ||
| 304 | * Returns 1 if they are the same or if the first one is corrupted. | ||
| 305 | */ | ||
| 306 | static int cn_ctl_msg_equals(struct cn_ctl_msg *m1, struct cn_ctl_msg *m2) | ||
| 307 | { | ||
| 308 | int i; | ||
| 309 | struct cn_notify_req *req1, *req2; | ||
| 310 | |||
| 311 | if (m1->idx_notify_num != m2->idx_notify_num) | ||
| 312 | return 0; | ||
| 313 | |||
| 314 | if (m1->val_notify_num != m2->val_notify_num) | ||
| 315 | return 0; | ||
| 316 | |||
| 317 | if (m1->len != m2->len) | ||
| 318 | return 0; | ||
| 319 | |||
| 320 | if ((m1->idx_notify_num + m1->val_notify_num) * sizeof(*req1) != | ||
| 321 | m1->len) | ||
| 322 | return 1; | ||
| 323 | |||
| 324 | req1 = (struct cn_notify_req *)m1->data; | ||
| 325 | req2 = (struct cn_notify_req *)m2->data; | ||
| 326 | |||
| 327 | for (i = 0; i < m1->idx_notify_num; ++i) { | ||
| 328 | if (req1->first != req2->first || req1->range != req2->range) | ||
| 329 | return 0; | ||
| 330 | req1++; | ||
| 331 | req2++; | ||
| 332 | } | ||
| 333 | |||
| 334 | for (i = 0; i < m1->val_notify_num; ++i) { | ||
| 335 | if (req1->first != req2->first || req1->range != req2->range) | ||
| 336 | return 0; | ||
| 337 | req1++; | ||
| 338 | req2++; | ||
| 339 | } | ||
| 340 | |||
| 341 | return 1; | ||
| 342 | } | ||
| 343 | |||
| 344 | /* | ||
| 345 | * Main connector device's callback. | ||
| 346 | * | ||
| 347 | * Used for notification of a request's processing. | ||
| 348 | */ | ||
| 349 | static void cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) | ||
| 350 | { | ||
| 351 | struct cn_ctl_msg *ctl; | ||
| 352 | struct cn_ctl_entry *ent; | ||
| 353 | u32 size; | ||
| 354 | |||
| 355 | if (msg->len < sizeof(*ctl)) | ||
| 356 | return; | ||
| 357 | |||
| 358 | ctl = (struct cn_ctl_msg *)msg->data; | ||
| 359 | |||
| 360 | size = (sizeof(*ctl) + ((ctl->idx_notify_num + | ||
| 361 | ctl->val_notify_num) * | ||
| 362 | sizeof(struct cn_notify_req))); | ||
| 363 | |||
| 364 | if (msg->len != size) | ||
| 365 | return; | ||
| 366 | |||
| 367 | if (ctl->len + sizeof(*ctl) != msg->len) | ||
| 368 | return; | ||
| 369 | |||
| 370 | /* | ||
| 371 | * Remove notification. | ||
| 372 | */ | ||
| 373 | if (ctl->group == 0) { | ||
| 374 | struct cn_ctl_entry *n; | ||
| 375 | |||
| 376 | mutex_lock(¬ify_lock); | ||
| 377 | list_for_each_entry_safe(ent, n, ¬ify_list, notify_entry) { | ||
| 378 | if (cn_ctl_msg_equals(ent->msg, ctl)) { | ||
| 379 | list_del(&ent->notify_entry); | ||
| 380 | kfree(ent); | ||
| 381 | } | ||
| 382 | } | ||
| 383 | mutex_unlock(¬ify_lock); | ||
| 384 | |||
| 385 | return; | ||
| 386 | } | ||
| 387 | |||
| 388 | size += sizeof(*ent); | ||
| 389 | |||
| 390 | ent = kzalloc(size, GFP_KERNEL); | ||
| 391 | if (!ent) | ||
| 392 | return; | ||
| 393 | |||
| 394 | ent->msg = (struct cn_ctl_msg *)(ent + 1); | ||
| 395 | |||
| 396 | memcpy(ent->msg, ctl, size - sizeof(*ent)); | ||
| 397 | |||
| 398 | mutex_lock(¬ify_lock); | ||
| 399 | list_add(&ent->notify_entry, ¬ify_list); | ||
| 400 | mutex_unlock(¬ify_lock); | ||
| 401 | } | ||
| 402 | |||
| 403 | static int cn_proc_show(struct seq_file *m, void *v) | 240 | static int cn_proc_show(struct seq_file *m, void *v) |
| 404 | { | 241 | { |
| 405 | struct cn_queue_dev *dev = cdev.cbdev; | 242 | struct cn_queue_dev *dev = cdev.cbdev; |
| @@ -437,11 +274,8 @@ static const struct file_operations cn_file_ops = { | |||
| 437 | static int __devinit cn_init(void) | 274 | static int __devinit cn_init(void) |
| 438 | { | 275 | { |
| 439 | struct cn_dev *dev = &cdev; | 276 | struct cn_dev *dev = &cdev; |
| 440 | int err; | ||
| 441 | 277 | ||
| 442 | dev->input = cn_rx_skb; | 278 | dev->input = cn_rx_skb; |
| 443 | dev->id.idx = cn_idx; | ||
| 444 | dev->id.val = cn_val; | ||
| 445 | 279 | ||
| 446 | dev->nls = netlink_kernel_create(&init_net, NETLINK_CONNECTOR, | 280 | dev->nls = netlink_kernel_create(&init_net, NETLINK_CONNECTOR, |
| 447 | CN_NETLINK_USERS + 0xf, | 281 | CN_NETLINK_USERS + 0xf, |
| @@ -457,14 +291,6 @@ static int __devinit cn_init(void) | |||
| 457 | 291 | ||
| 458 | cn_already_initialized = 1; | 292 | cn_already_initialized = 1; |
| 459 | 293 | ||
| 460 | err = cn_add_callback(&dev->id, "connector", &cn_callback); | ||
| 461 | if (err) { | ||
| 462 | cn_already_initialized = 0; | ||
| 463 | cn_queue_free_dev(dev->cbdev); | ||
| 464 | netlink_kernel_release(dev->nls); | ||
| 465 | return -EINVAL; | ||
| 466 | } | ||
| 467 | |||
| 468 | proc_net_fops_create(&init_net, "connector", S_IRUGO, &cn_file_ops); | 294 | proc_net_fops_create(&init_net, "connector", S_IRUGO, &cn_file_ops); |
| 469 | 295 | ||
| 470 | return 0; | 296 | return 0; |
| @@ -478,7 +304,6 @@ static void __devexit cn_fini(void) | |||
| 478 | 304 | ||
| 479 | proc_net_remove(&init_net, "connector"); | 305 | proc_net_remove(&init_net, "connector"); |
| 480 | 306 | ||
| 481 | cn_del_callback(&dev->id); | ||
| 482 | cn_queue_free_dev(dev->cbdev); | 307 | cn_queue_free_dev(dev->cbdev); |
| 483 | netlink_kernel_release(dev->nls); | 308 | netlink_kernel_release(dev->nls); |
| 484 | } | 309 | } |
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 4b34ade2332b..bd444dc93cf2 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
| @@ -554,6 +554,9 @@ static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info) | |||
| 554 | (dbs_tuners_ins.up_threshold - | 554 | (dbs_tuners_ins.up_threshold - |
| 555 | dbs_tuners_ins.down_differential); | 555 | dbs_tuners_ins.down_differential); |
| 556 | 556 | ||
| 557 | if (freq_next < policy->min) | ||
| 558 | freq_next = policy->min; | ||
| 559 | |||
| 557 | if (!dbs_tuners_ins.powersave_bias) { | 560 | if (!dbs_tuners_ins.powersave_bias) { |
| 558 | __cpufreq_driver_target(policy, freq_next, | 561 | __cpufreq_driver_target(policy, freq_next, |
| 559 | CPUFREQ_RELATION_L); | 562 | CPUFREQ_RELATION_L); |
diff --git a/drivers/crypto/padlock-sha.c b/drivers/crypto/padlock-sha.c index 0af80577dc7b..d3a27e0119bc 100644 --- a/drivers/crypto/padlock-sha.c +++ b/drivers/crypto/padlock-sha.c | |||
| @@ -57,6 +57,23 @@ static int padlock_sha_update(struct shash_desc *desc, | |||
| 57 | return crypto_shash_update(&dctx->fallback, data, length); | 57 | return crypto_shash_update(&dctx->fallback, data, length); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | static int padlock_sha_export(struct shash_desc *desc, void *out) | ||
| 61 | { | ||
| 62 | struct padlock_sha_desc *dctx = shash_desc_ctx(desc); | ||
| 63 | |||
| 64 | return crypto_shash_export(&dctx->fallback, out); | ||
| 65 | } | ||
| 66 | |||
| 67 | static int padlock_sha_import(struct shash_desc *desc, const void *in) | ||
| 68 | { | ||
| 69 | struct padlock_sha_desc *dctx = shash_desc_ctx(desc); | ||
| 70 | struct padlock_sha_ctx *ctx = crypto_shash_ctx(desc->tfm); | ||
| 71 | |||
| 72 | dctx->fallback.tfm = ctx->fallback; | ||
| 73 | dctx->fallback.flags = desc->flags & CRYPTO_TFM_REQ_MAY_SLEEP; | ||
| 74 | return crypto_shash_import(&dctx->fallback, in); | ||
| 75 | } | ||
| 76 | |||
| 60 | static inline void padlock_output_block(uint32_t *src, | 77 | static inline void padlock_output_block(uint32_t *src, |
| 61 | uint32_t *dst, size_t count) | 78 | uint32_t *dst, size_t count) |
| 62 | { | 79 | { |
| @@ -235,7 +252,10 @@ static struct shash_alg sha1_alg = { | |||
| 235 | .update = padlock_sha_update, | 252 | .update = padlock_sha_update, |
| 236 | .finup = padlock_sha1_finup, | 253 | .finup = padlock_sha1_finup, |
| 237 | .final = padlock_sha1_final, | 254 | .final = padlock_sha1_final, |
| 255 | .export = padlock_sha_export, | ||
| 256 | .import = padlock_sha_import, | ||
| 238 | .descsize = sizeof(struct padlock_sha_desc), | 257 | .descsize = sizeof(struct padlock_sha_desc), |
| 258 | .statesize = sizeof(struct sha1_state), | ||
| 239 | .base = { | 259 | .base = { |
| 240 | .cra_name = "sha1", | 260 | .cra_name = "sha1", |
| 241 | .cra_driver_name = "sha1-padlock", | 261 | .cra_driver_name = "sha1-padlock", |
| @@ -256,7 +276,10 @@ static struct shash_alg sha256_alg = { | |||
| 256 | .update = padlock_sha_update, | 276 | .update = padlock_sha_update, |
| 257 | .finup = padlock_sha256_finup, | 277 | .finup = padlock_sha256_finup, |
| 258 | .final = padlock_sha256_final, | 278 | .final = padlock_sha256_final, |
| 279 | .export = padlock_sha_export, | ||
| 280 | .import = padlock_sha_import, | ||
| 259 | .descsize = sizeof(struct padlock_sha_desc), | 281 | .descsize = sizeof(struct padlock_sha_desc), |
| 282 | .statesize = sizeof(struct sha256_state), | ||
| 260 | .base = { | 283 | .base = { |
| 261 | .cra_name = "sha256", | 284 | .cra_name = "sha256", |
| 262 | .cra_driver_name = "sha256-padlock", | 285 | .cra_driver_name = "sha256-padlock", |
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index c5facd951dda..000dc67b85b7 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c | |||
| @@ -197,7 +197,7 @@ static int amd64_get_scrub_rate(struct mem_ctl_info *mci, u32 *bw) | |||
| 197 | edac_printk(KERN_DEBUG, EDAC_MC, | 197 | edac_printk(KERN_DEBUG, EDAC_MC, |
| 198 | "pci-read, sdram scrub control value: %d \n", scrubval); | 198 | "pci-read, sdram scrub control value: %d \n", scrubval); |
| 199 | 199 | ||
| 200 | for (i = 0; ARRAY_SIZE(scrubrates); i++) { | 200 | for (i = 0; i < ARRAY_SIZE(scrubrates); i++) { |
| 201 | if (scrubrates[i].scrubval == scrubval) { | 201 | if (scrubrates[i].scrubval == scrubval) { |
| 202 | *bw = scrubrates[i].bandwidth; | 202 | *bw = scrubrates[i].bandwidth; |
| 203 | status = 0; | 203 | status = 0; |
diff --git a/drivers/edac/i5000_edac.c b/drivers/edac/i5000_edac.c index 77a9579d7167..adc10a2ac5f6 100644 --- a/drivers/edac/i5000_edac.c +++ b/drivers/edac/i5000_edac.c | |||
| @@ -577,7 +577,13 @@ static void i5000_process_nonfatal_error_info(struct mem_ctl_info *mci, | |||
| 577 | debugf0("\tUncorrected bits= 0x%x\n", ue_errors); | 577 | debugf0("\tUncorrected bits= 0x%x\n", ue_errors); |
| 578 | 578 | ||
| 579 | branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd); | 579 | branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd); |
| 580 | channel = branch; | 580 | |
| 581 | /* | ||
| 582 | * According with i5000 datasheet, bit 28 has no significance | ||
| 583 | * for errors M4Err-M12Err and M17Err-M21Err, on FERR_NF_FBD | ||
| 584 | */ | ||
| 585 | channel = branch & 2; | ||
| 586 | |||
| 581 | bank = NREC_BANK(info->nrecmema); | 587 | bank = NREC_BANK(info->nrecmema); |
| 582 | rank = NREC_RANK(info->nrecmema); | 588 | rank = NREC_RANK(info->nrecmema); |
| 583 | rdwr = NREC_RDWR(info->nrecmema); | 589 | rdwr = NREC_RDWR(info->nrecmema); |
diff --git a/drivers/firewire/core-card.c b/drivers/firewire/core-card.c index 7083bcc1b9c7..5045156c5313 100644 --- a/drivers/firewire/core-card.c +++ b/drivers/firewire/core-card.c | |||
| @@ -57,6 +57,8 @@ static LIST_HEAD(descriptor_list); | |||
| 57 | static int descriptor_count; | 57 | static int descriptor_count; |
| 58 | 58 | ||
| 59 | static __be32 tmp_config_rom[256]; | 59 | static __be32 tmp_config_rom[256]; |
| 60 | /* ROM header, bus info block, root dir header, capabilities = 7 quadlets */ | ||
| 61 | static size_t config_rom_length = 1 + 4 + 1 + 1; | ||
| 60 | 62 | ||
| 61 | #define BIB_CRC(v) ((v) << 0) | 63 | #define BIB_CRC(v) ((v) << 0) |
| 62 | #define BIB_CRC_LENGTH(v) ((v) << 16) | 64 | #define BIB_CRC_LENGTH(v) ((v) << 16) |
| @@ -73,7 +75,7 @@ static __be32 tmp_config_rom[256]; | |||
| 73 | #define BIB_CMC ((1) << 30) | 75 | #define BIB_CMC ((1) << 30) |
| 74 | #define BIB_IMC ((1) << 31) | 76 | #define BIB_IMC ((1) << 31) |
| 75 | 77 | ||
| 76 | static size_t generate_config_rom(struct fw_card *card, __be32 *config_rom) | 78 | static void generate_config_rom(struct fw_card *card, __be32 *config_rom) |
| 77 | { | 79 | { |
| 78 | struct fw_descriptor *desc; | 80 | struct fw_descriptor *desc; |
| 79 | int i, j, k, length; | 81 | int i, j, k, length; |
| @@ -130,23 +132,30 @@ static size_t generate_config_rom(struct fw_card *card, __be32 *config_rom) | |||
| 130 | for (i = 0; i < j; i += length + 1) | 132 | for (i = 0; i < j; i += length + 1) |
| 131 | length = fw_compute_block_crc(config_rom + i); | 133 | length = fw_compute_block_crc(config_rom + i); |
| 132 | 134 | ||
| 133 | return j; | 135 | WARN_ON(j != config_rom_length); |
| 134 | } | 136 | } |
| 135 | 137 | ||
| 136 | static void update_config_roms(void) | 138 | static void update_config_roms(void) |
| 137 | { | 139 | { |
| 138 | struct fw_card *card; | 140 | struct fw_card *card; |
| 139 | size_t length; | ||
| 140 | 141 | ||
| 141 | list_for_each_entry (card, &card_list, link) { | 142 | list_for_each_entry (card, &card_list, link) { |
| 142 | length = generate_config_rom(card, tmp_config_rom); | 143 | generate_config_rom(card, tmp_config_rom); |
| 143 | card->driver->set_config_rom(card, tmp_config_rom, length); | 144 | card->driver->set_config_rom(card, tmp_config_rom, |
| 145 | config_rom_length); | ||
| 144 | } | 146 | } |
| 145 | } | 147 | } |
| 146 | 148 | ||
| 149 | static size_t required_space(struct fw_descriptor *desc) | ||
| 150 | { | ||
| 151 | /* descriptor + entry into root dir + optional immediate entry */ | ||
| 152 | return desc->length + 1 + (desc->immediate > 0 ? 1 : 0); | ||
| 153 | } | ||
| 154 | |||
| 147 | int fw_core_add_descriptor(struct fw_descriptor *desc) | 155 | int fw_core_add_descriptor(struct fw_descriptor *desc) |
| 148 | { | 156 | { |
| 149 | size_t i; | 157 | size_t i; |
| 158 | int ret; | ||
| 150 | 159 | ||
| 151 | /* | 160 | /* |
| 152 | * Check descriptor is valid; the length of all blocks in the | 161 | * Check descriptor is valid; the length of all blocks in the |
| @@ -162,15 +171,21 @@ int fw_core_add_descriptor(struct fw_descriptor *desc) | |||
| 162 | 171 | ||
| 163 | mutex_lock(&card_mutex); | 172 | mutex_lock(&card_mutex); |
| 164 | 173 | ||
| 165 | list_add_tail(&desc->link, &descriptor_list); | 174 | if (config_rom_length + required_space(desc) > 256) { |
| 166 | descriptor_count++; | 175 | ret = -EBUSY; |
| 167 | if (desc->immediate > 0) | 176 | } else { |
| 177 | list_add_tail(&desc->link, &descriptor_list); | ||
| 178 | config_rom_length += required_space(desc); | ||
| 168 | descriptor_count++; | 179 | descriptor_count++; |
| 169 | update_config_roms(); | 180 | if (desc->immediate > 0) |
| 181 | descriptor_count++; | ||
| 182 | update_config_roms(); | ||
| 183 | ret = 0; | ||
| 184 | } | ||
| 170 | 185 | ||
| 171 | mutex_unlock(&card_mutex); | 186 | mutex_unlock(&card_mutex); |
| 172 | 187 | ||
| 173 | return 0; | 188 | return ret; |
| 174 | } | 189 | } |
| 175 | EXPORT_SYMBOL(fw_core_add_descriptor); | 190 | EXPORT_SYMBOL(fw_core_add_descriptor); |
| 176 | 191 | ||
| @@ -179,6 +194,7 @@ void fw_core_remove_descriptor(struct fw_descriptor *desc) | |||
| 179 | mutex_lock(&card_mutex); | 194 | mutex_lock(&card_mutex); |
| 180 | 195 | ||
| 181 | list_del(&desc->link); | 196 | list_del(&desc->link); |
| 197 | config_rom_length -= required_space(desc); | ||
| 182 | descriptor_count--; | 198 | descriptor_count--; |
| 183 | if (desc->immediate > 0) | 199 | if (desc->immediate > 0) |
| 184 | descriptor_count--; | 200 | descriptor_count--; |
| @@ -428,7 +444,6 @@ EXPORT_SYMBOL(fw_card_initialize); | |||
| 428 | int fw_card_add(struct fw_card *card, | 444 | int fw_card_add(struct fw_card *card, |
| 429 | u32 max_receive, u32 link_speed, u64 guid) | 445 | u32 max_receive, u32 link_speed, u64 guid) |
| 430 | { | 446 | { |
| 431 | size_t length; | ||
| 432 | int ret; | 447 | int ret; |
| 433 | 448 | ||
| 434 | card->max_receive = max_receive; | 449 | card->max_receive = max_receive; |
| @@ -437,8 +452,8 @@ int fw_card_add(struct fw_card *card, | |||
| 437 | 452 | ||
| 438 | mutex_lock(&card_mutex); | 453 | mutex_lock(&card_mutex); |
| 439 | 454 | ||
| 440 | length = generate_config_rom(card, tmp_config_rom); | 455 | generate_config_rom(card, tmp_config_rom); |
| 441 | ret = card->driver->enable(card, tmp_config_rom, length); | 456 | ret = card->driver->enable(card, tmp_config_rom, config_rom_length); |
| 442 | if (ret == 0) | 457 | if (ret == 0) |
| 443 | list_add_tail(&card->link, &card_list); | 458 | list_add_tail(&card->link, &card_list); |
| 444 | 459 | ||
diff --git a/drivers/firewire/core-cdev.c b/drivers/firewire/core-cdev.c index e6d63849e78e..4eeaed57e219 100644 --- a/drivers/firewire/core-cdev.c +++ b/drivers/firewire/core-cdev.c | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | #include <linux/preempt.h> | 35 | #include <linux/preempt.h> |
| 36 | #include <linux/sched.h> | 36 | #include <linux/sched.h> |
| 37 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
| 38 | #include <linux/string.h> | ||
| 38 | #include <linux/time.h> | 39 | #include <linux/time.h> |
| 39 | #include <linux/uaccess.h> | 40 | #include <linux/uaccess.h> |
| 40 | #include <linux/vmalloc.h> | 41 | #include <linux/vmalloc.h> |
| @@ -595,13 +596,20 @@ static int ioctl_send_request(struct client *client, void *buffer) | |||
| 595 | client->device->max_speed); | 596 | client->device->max_speed); |
| 596 | } | 597 | } |
| 597 | 598 | ||
| 599 | static inline bool is_fcp_request(struct fw_request *request) | ||
| 600 | { | ||
| 601 | return request == NULL; | ||
| 602 | } | ||
| 603 | |||
| 598 | static void release_request(struct client *client, | 604 | static void release_request(struct client *client, |
| 599 | struct client_resource *resource) | 605 | struct client_resource *resource) |
| 600 | { | 606 | { |
| 601 | struct inbound_transaction_resource *r = container_of(resource, | 607 | struct inbound_transaction_resource *r = container_of(resource, |
| 602 | struct inbound_transaction_resource, resource); | 608 | struct inbound_transaction_resource, resource); |
| 603 | 609 | ||
| 604 | if (r->request) | 610 | if (is_fcp_request(r->request)) |
| 611 | kfree(r->data); | ||
| 612 | else | ||
| 605 | fw_send_response(client->device->card, r->request, | 613 | fw_send_response(client->device->card, r->request, |
| 606 | RCODE_CONFLICT_ERROR); | 614 | RCODE_CONFLICT_ERROR); |
| 607 | kfree(r); | 615 | kfree(r); |
| @@ -616,6 +624,7 @@ static void handle_request(struct fw_card *card, struct fw_request *request, | |||
| 616 | struct address_handler_resource *handler = callback_data; | 624 | struct address_handler_resource *handler = callback_data; |
| 617 | struct inbound_transaction_resource *r; | 625 | struct inbound_transaction_resource *r; |
| 618 | struct inbound_transaction_event *e; | 626 | struct inbound_transaction_event *e; |
| 627 | void *fcp_frame = NULL; | ||
| 619 | int ret; | 628 | int ret; |
| 620 | 629 | ||
| 621 | r = kmalloc(sizeof(*r), GFP_ATOMIC); | 630 | r = kmalloc(sizeof(*r), GFP_ATOMIC); |
| @@ -627,6 +636,18 @@ static void handle_request(struct fw_card *card, struct fw_request *request, | |||
| 627 | r->data = payload; | 636 | r->data = payload; |
| 628 | r->length = length; | 637 | r->length = length; |
| 629 | 638 | ||
| 639 | if (is_fcp_request(request)) { | ||
| 640 | /* | ||
| 641 | * FIXME: Let core-transaction.c manage a | ||
| 642 | * single reference-counted copy? | ||
| 643 | */ | ||
| 644 | fcp_frame = kmemdup(payload, length, GFP_ATOMIC); | ||
| 645 | if (fcp_frame == NULL) | ||
| 646 | goto failed; | ||
| 647 | |||
| 648 | r->data = fcp_frame; | ||
| 649 | } | ||
| 650 | |||
| 630 | r->resource.release = release_request; | 651 | r->resource.release = release_request; |
| 631 | ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC); | 652 | ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC); |
| 632 | if (ret < 0) | 653 | if (ret < 0) |
| @@ -640,13 +661,15 @@ static void handle_request(struct fw_card *card, struct fw_request *request, | |||
| 640 | e->request.closure = handler->closure; | 661 | e->request.closure = handler->closure; |
| 641 | 662 | ||
| 642 | queue_event(handler->client, &e->event, | 663 | queue_event(handler->client, &e->event, |
| 643 | &e->request, sizeof(e->request), payload, length); | 664 | &e->request, sizeof(e->request), r->data, length); |
| 644 | return; | 665 | return; |
| 645 | 666 | ||
| 646 | failed: | 667 | failed: |
| 647 | kfree(r); | 668 | kfree(r); |
| 648 | kfree(e); | 669 | kfree(e); |
| 649 | if (request) | 670 | kfree(fcp_frame); |
| 671 | |||
| 672 | if (!is_fcp_request(request)) | ||
| 650 | fw_send_response(card, request, RCODE_CONFLICT_ERROR); | 673 | fw_send_response(card, request, RCODE_CONFLICT_ERROR); |
| 651 | } | 674 | } |
| 652 | 675 | ||
| @@ -717,18 +740,17 @@ static int ioctl_send_response(struct client *client, void *buffer) | |||
| 717 | 740 | ||
| 718 | r = container_of(resource, struct inbound_transaction_resource, | 741 | r = container_of(resource, struct inbound_transaction_resource, |
| 719 | resource); | 742 | resource); |
| 720 | if (r->request) { | 743 | if (is_fcp_request(r->request)) |
| 721 | if (request->length < r->length) | 744 | goto out; |
| 722 | r->length = request->length; | 745 | |
| 723 | if (copy_from_user(r->data, u64_to_uptr(request->data), | 746 | if (request->length < r->length) |
| 724 | r->length)) { | 747 | r->length = request->length; |
| 725 | ret = -EFAULT; | 748 | if (copy_from_user(r->data, u64_to_uptr(request->data), r->length)) { |
| 726 | kfree(r->request); | 749 | ret = -EFAULT; |
| 727 | goto out; | 750 | kfree(r->request); |
| 728 | } | 751 | goto out; |
| 729 | fw_send_response(client->device->card, r->request, | ||
| 730 | request->rcode); | ||
| 731 | } | 752 | } |
| 753 | fw_send_response(client->device->card, r->request, request->rcode); | ||
| 732 | out: | 754 | out: |
| 733 | kfree(r); | 755 | kfree(r); |
| 734 | 756 | ||
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index a61571c63c59..2345d4103fe6 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
| @@ -2420,6 +2420,7 @@ static void ohci_pmac_off(struct pci_dev *dev) | |||
| 2420 | 2420 | ||
| 2421 | #define PCI_VENDOR_ID_AGERE PCI_VENDOR_ID_ATT | 2421 | #define PCI_VENDOR_ID_AGERE PCI_VENDOR_ID_ATT |
| 2422 | #define PCI_DEVICE_ID_AGERE_FW643 0x5901 | 2422 | #define PCI_DEVICE_ID_AGERE_FW643 0x5901 |
| 2423 | #define PCI_DEVICE_ID_TI_TSB43AB23 0x8024 | ||
| 2423 | 2424 | ||
| 2424 | static int __devinit pci_probe(struct pci_dev *dev, | 2425 | static int __devinit pci_probe(struct pci_dev *dev, |
| 2425 | const struct pci_device_id *ent) | 2426 | const struct pci_device_id *ent) |
| @@ -2488,7 +2489,8 @@ static int __devinit pci_probe(struct pci_dev *dev, | |||
| 2488 | #if !defined(CONFIG_X86_32) | 2489 | #if !defined(CONFIG_X86_32) |
| 2489 | /* dual-buffer mode is broken with descriptor addresses above 2G */ | 2490 | /* dual-buffer mode is broken with descriptor addresses above 2G */ |
| 2490 | if (dev->vendor == PCI_VENDOR_ID_TI && | 2491 | if (dev->vendor == PCI_VENDOR_ID_TI && |
| 2491 | dev->device == PCI_DEVICE_ID_TI_TSB43AB22) | 2492 | (dev->device == PCI_DEVICE_ID_TI_TSB43AB22 || |
| 2493 | dev->device == PCI_DEVICE_ID_TI_TSB43AB23)) | ||
| 2492 | ohci->use_dualbuffer = false; | 2494 | ohci->use_dualbuffer = false; |
| 2493 | #endif | 2495 | #endif |
| 2494 | 2496 | ||
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 96eddd17e050..305c59003963 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig | |||
| @@ -66,6 +66,8 @@ config DRM_RADEON | |||
| 66 | 66 | ||
| 67 | If M is selected, the module will be called radeon. | 67 | If M is selected, the module will be called radeon. |
| 68 | 68 | ||
| 69 | source "drivers/gpu/drm/radeon/Kconfig" | ||
| 70 | |||
| 69 | config DRM_I810 | 71 | config DRM_I810 |
| 70 | tristate "Intel I810" | 72 | tristate "Intel I810" |
| 71 | depends on DRM && AGP && AGP_INTEL | 73 | depends on DRM && AGP && AGP_INTEL |
diff --git a/drivers/gpu/drm/ati_pcigart.c b/drivers/gpu/drm/ati_pcigart.c index a1fce68e3bbe..17be051b7aa3 100644 --- a/drivers/gpu/drm/ati_pcigart.c +++ b/drivers/gpu/drm/ati_pcigart.c | |||
| @@ -113,7 +113,7 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga | |||
| 113 | 113 | ||
| 114 | if (pci_set_dma_mask(dev->pdev, gart_info->table_mask)) { | 114 | if (pci_set_dma_mask(dev->pdev, gart_info->table_mask)) { |
| 115 | DRM_ERROR("fail to set dma mask to 0x%Lx\n", | 115 | DRM_ERROR("fail to set dma mask to 0x%Lx\n", |
| 116 | gart_info->table_mask); | 116 | (unsigned long long)gart_info->table_mask); |
| 117 | ret = 1; | 117 | ret = 1; |
| 118 | goto done; | 118 | goto done; |
| 119 | } | 119 | } |
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index 077313f0d47f..7d0f00a935fa 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c | |||
| @@ -702,7 +702,7 @@ bool drm_crtc_helper_set_mode(struct drm_crtc *crtc, | |||
| 702 | if (encoder->crtc != crtc) | 702 | if (encoder->crtc != crtc) |
| 703 | continue; | 703 | continue; |
| 704 | 704 | ||
| 705 | DRM_INFO("%s: set mode %s %x\n", drm_get_encoder_name(encoder), | 705 | DRM_DEBUG("%s: set mode %s %x\n", drm_get_encoder_name(encoder), |
| 706 | mode->name, mode->base.id); | 706 | mode->name, mode->base.id); |
| 707 | encoder_funcs = encoder->helper_private; | 707 | encoder_funcs = encoder->helper_private; |
| 708 | encoder_funcs->mode_set(encoder, mode, adjusted_mode); | 708 | encoder_funcs->mode_set(encoder, mode, adjusted_mode); |
| @@ -1032,7 +1032,8 @@ bool drm_helper_initial_config(struct drm_device *dev) | |||
| 1032 | /* | 1032 | /* |
| 1033 | * we shouldn't end up with no modes here. | 1033 | * we shouldn't end up with no modes here. |
| 1034 | */ | 1034 | */ |
| 1035 | printk(KERN_INFO "No connectors reported conncted with modes\n"); | 1035 | if (count == 0) |
| 1036 | printk(KERN_INFO "No connectors reported connected with modes\n"); | ||
| 1036 | 1037 | ||
| 1037 | drm_setup_crtcs(dev); | 1038 | drm_setup_crtcs(dev); |
| 1038 | 1039 | ||
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index defcaf108460..f665b05592f3 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c | |||
| @@ -633,8 +633,7 @@ static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev, | |||
| 633 | return NULL; | 633 | return NULL; |
| 634 | } | 634 | } |
| 635 | if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) { | 635 | if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) { |
| 636 | printk(KERN_WARNING "integrated sync not supported\n"); | 636 | printk(KERN_WARNING "composite sync not supported\n"); |
| 637 | return NULL; | ||
| 638 | } | 637 | } |
| 639 | 638 | ||
| 640 | /* it is incorrect if hsync/vsync width is zero */ | 639 | /* it is incorrect if hsync/vsync width is zero */ |
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index 1c2b7d44ec05..0f9e90552dc4 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c | |||
| @@ -389,7 +389,7 @@ int drm_fb_helper_blank(int blank, struct fb_info *info) | |||
| 389 | break; | 389 | break; |
| 390 | /* Display: Off; HSync: On, VSync: On */ | 390 | /* Display: Off; HSync: On, VSync: On */ |
| 391 | case FB_BLANK_NORMAL: | 391 | case FB_BLANK_NORMAL: |
| 392 | drm_fb_helper_off(info, DRM_MODE_DPMS_ON); | 392 | drm_fb_helper_off(info, DRM_MODE_DPMS_STANDBY); |
| 393 | break; | 393 | break; |
| 394 | /* Display: Off; HSync: Off, VSync: On */ | 394 | /* Display: Off; HSync: Off, VSync: On */ |
| 395 | case FB_BLANK_HSYNC_SUSPEND: | 395 | case FB_BLANK_HSYNC_SUSPEND: |
diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c index e9dbb481c469..8bf3770f294e 100644 --- a/drivers/gpu/drm/drm_gem.c +++ b/drivers/gpu/drm/drm_gem.c | |||
| @@ -142,19 +142,6 @@ drm_gem_object_alloc(struct drm_device *dev, size_t size) | |||
| 142 | if (IS_ERR(obj->filp)) | 142 | if (IS_ERR(obj->filp)) |
| 143 | goto free; | 143 | goto free; |
| 144 | 144 | ||
| 145 | /* Basically we want to disable the OOM killer and handle ENOMEM | ||
| 146 | * ourselves by sacrificing pages from cached buffers. | ||
| 147 | * XXX shmem_file_[gs]et_gfp_mask() | ||
| 148 | */ | ||
| 149 | mapping_set_gfp_mask(obj->filp->f_path.dentry->d_inode->i_mapping, | ||
| 150 | GFP_HIGHUSER | | ||
| 151 | __GFP_COLD | | ||
| 152 | __GFP_FS | | ||
| 153 | __GFP_RECLAIMABLE | | ||
| 154 | __GFP_NORETRY | | ||
| 155 | __GFP_NOWARN | | ||
| 156 | __GFP_NOMEMALLOC); | ||
| 157 | |||
| 158 | kref_init(&obj->refcount); | 145 | kref_init(&obj->refcount); |
| 159 | kref_init(&obj->handlecount); | 146 | kref_init(&obj->handlecount); |
| 160 | obj->size = size; | 147 | obj->size = size; |
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 6d81a02463a3..76d63394c776 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c | |||
| @@ -1,9 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * The list_sort function is (presumably) licensed under the GPL (see the | ||
| 3 | * top level "COPYING" file for details). | ||
| 4 | * | ||
| 5 | * The remainder of this file is: | ||
| 6 | * | ||
| 7 | * Copyright © 1997-2003 by The XFree86 Project, Inc. | 2 | * Copyright © 1997-2003 by The XFree86 Project, Inc. |
| 8 | * Copyright © 2007 Dave Airlie | 3 | * Copyright © 2007 Dave Airlie |
| 9 | * Copyright © 2007-2008 Intel Corporation | 4 | * Copyright © 2007-2008 Intel Corporation |
| @@ -36,6 +31,7 @@ | |||
| 36 | */ | 31 | */ |
| 37 | 32 | ||
| 38 | #include <linux/list.h> | 33 | #include <linux/list.h> |
| 34 | #include <linux/list_sort.h> | ||
| 39 | #include "drmP.h" | 35 | #include "drmP.h" |
| 40 | #include "drm.h" | 36 | #include "drm.h" |
| 41 | #include "drm_crtc.h" | 37 | #include "drm_crtc.h" |
| @@ -855,6 +851,7 @@ EXPORT_SYMBOL(drm_mode_prune_invalid); | |||
| 855 | 851 | ||
| 856 | /** | 852 | /** |
| 857 | * drm_mode_compare - compare modes for favorability | 853 | * drm_mode_compare - compare modes for favorability |
| 854 | * @priv: unused | ||
| 858 | * @lh_a: list_head for first mode | 855 | * @lh_a: list_head for first mode |
| 859 | * @lh_b: list_head for second mode | 856 | * @lh_b: list_head for second mode |
| 860 | * | 857 | * |
| @@ -868,7 +865,7 @@ EXPORT_SYMBOL(drm_mode_prune_invalid); | |||
| 868 | * Negative if @lh_a is better than @lh_b, zero if they're equivalent, or | 865 | * Negative if @lh_a is better than @lh_b, zero if they're equivalent, or |
| 869 | * positive if @lh_b is better than @lh_a. | 866 | * positive if @lh_b is better than @lh_a. |
| 870 | */ | 867 | */ |
| 871 | static int drm_mode_compare(struct list_head *lh_a, struct list_head *lh_b) | 868 | static int drm_mode_compare(void *priv, struct list_head *lh_a, struct list_head *lh_b) |
| 872 | { | 869 | { |
| 873 | struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head); | 870 | struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head); |
| 874 | struct drm_display_mode *b = list_entry(lh_b, struct drm_display_mode, head); | 871 | struct drm_display_mode *b = list_entry(lh_b, struct drm_display_mode, head); |
| @@ -885,85 +882,6 @@ static int drm_mode_compare(struct list_head *lh_a, struct list_head *lh_b) | |||
| 885 | return diff; | 882 | return diff; |
| 886 | } | 883 | } |
| 887 | 884 | ||
| 888 | /* FIXME: what we don't have a list sort function? */ | ||
| 889 | /* list sort from Mark J Roberts (mjr@znex.org) */ | ||
| 890 | void list_sort(struct list_head *head, | ||
| 891 | int (*cmp)(struct list_head *a, struct list_head *b)) | ||
| 892 | { | ||
| 893 | struct list_head *p, *q, *e, *list, *tail, *oldhead; | ||
| 894 | int insize, nmerges, psize, qsize, i; | ||
| 895 | |||
| 896 | list = head->next; | ||
| 897 | list_del(head); | ||
| 898 | insize = 1; | ||
| 899 | for (;;) { | ||
| 900 | p = oldhead = list; | ||
| 901 | list = tail = NULL; | ||
| 902 | nmerges = 0; | ||
| 903 | |||
| 904 | while (p) { | ||
| 905 | nmerges++; | ||
| 906 | q = p; | ||
| 907 | psize = 0; | ||
| 908 | for (i = 0; i < insize; i++) { | ||
| 909 | psize++; | ||
| 910 | q = q->next == oldhead ? NULL : q->next; | ||
| 911 | if (!q) | ||
| 912 | break; | ||
| 913 | } | ||
| 914 | |||
| 915 | qsize = insize; | ||
| 916 | while (psize > 0 || (qsize > 0 && q)) { | ||
| 917 | if (!psize) { | ||
| 918 | e = q; | ||
| 919 | q = q->next; | ||
| 920 | qsize--; | ||
| 921 | if (q == oldhead) | ||
| 922 | q = NULL; | ||
| 923 | } else if (!qsize || !q) { | ||
| 924 | e = p; | ||
| 925 | p = p->next; | ||
| 926 | psize--; | ||
| 927 | if (p == oldhead) | ||
| 928 | p = NULL; | ||
| 929 | } else if (cmp(p, q) <= 0) { | ||
| 930 | e = p; | ||
| 931 | p = p->next; | ||
| 932 | psize--; | ||
| 933 | if (p == oldhead) | ||
| 934 | p = NULL; | ||
| 935 | } else { | ||
| 936 | e = q; | ||
| 937 | q = q->next; | ||
| 938 | qsize--; | ||
| 939 | if (q == oldhead) | ||
| 940 | q = NULL; | ||
| 941 | } | ||
| 942 | if (tail) | ||
| 943 | tail->next = e; | ||
| 944 | else | ||
| 945 | list = e; | ||
| 946 | e->prev = tail; | ||
| 947 | tail = e; | ||
| 948 | } | ||
| 949 | p = q; | ||
| 950 | } | ||
| 951 | |||
| 952 | tail->next = list; | ||
| 953 | list->prev = tail; | ||
| 954 | |||
| 955 | if (nmerges <= 1) | ||
| 956 | break; | ||
| 957 | |||
| 958 | insize *= 2; | ||
| 959 | } | ||
| 960 | |||
| 961 | head->next = list; | ||
| 962 | head->prev = list->prev; | ||
| 963 | list->prev->next = head; | ||
| 964 | list->prev = head; | ||
| 965 | } | ||
| 966 | |||
| 967 | /** | 885 | /** |
| 968 | * drm_mode_sort - sort mode list | 886 | * drm_mode_sort - sort mode list |
| 969 | * @mode_list: list to sort | 887 | * @mode_list: list to sort |
| @@ -975,7 +893,7 @@ void list_sort(struct list_head *head, | |||
| 975 | */ | 893 | */ |
| 976 | void drm_mode_sort(struct list_head *mode_list) | 894 | void drm_mode_sort(struct list_head *mode_list) |
| 977 | { | 895 | { |
| 978 | list_sort(mode_list, drm_mode_compare); | 896 | list_sort(NULL, mode_list, drm_mode_compare); |
| 979 | } | 897 | } |
| 980 | EXPORT_SYMBOL(drm_mode_sort); | 898 | EXPORT_SYMBOL(drm_mode_sort); |
| 981 | 899 | ||
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 9c9998c4dceb..a894ade03093 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c | |||
| @@ -290,7 +290,7 @@ static int i915_batchbuffer_info(struct seq_file *m, void *data) | |||
| 290 | list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) { | 290 | list_for_each_entry(obj_priv, &dev_priv->mm.active_list, list) { |
| 291 | obj = obj_priv->obj; | 291 | obj = obj_priv->obj; |
| 292 | if (obj->read_domains & I915_GEM_DOMAIN_COMMAND) { | 292 | if (obj->read_domains & I915_GEM_DOMAIN_COMMAND) { |
| 293 | ret = i915_gem_object_get_pages(obj); | 293 | ret = i915_gem_object_get_pages(obj, 0); |
| 294 | if (ret) { | 294 | if (ret) { |
| 295 | DRM_ERROR("Failed to get pages: %d\n", ret); | 295 | DRM_ERROR("Failed to get pages: %d\n", ret); |
| 296 | spin_unlock(&dev_priv->mm.active_list_lock); | 296 | spin_unlock(&dev_priv->mm.active_list_lock); |
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index bbe47812e4b6..e660ac07f3b2 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
| @@ -134,6 +134,10 @@ static int i915_init_phys_hws(struct drm_device *dev) | |||
| 134 | 134 | ||
| 135 | memset(dev_priv->hw_status_page, 0, PAGE_SIZE); | 135 | memset(dev_priv->hw_status_page, 0, PAGE_SIZE); |
| 136 | 136 | ||
| 137 | if (IS_I965G(dev)) | ||
| 138 | dev_priv->dma_status_page |= (dev_priv->dma_status_page >> 28) & | ||
| 139 | 0xf0; | ||
| 140 | |||
| 137 | I915_WRITE(HWS_PGA, dev_priv->dma_status_page); | 141 | I915_WRITE(HWS_PGA, dev_priv->dma_status_page); |
| 138 | DRM_DEBUG_DRIVER("Enabled hardware status page\n"); | 142 | DRM_DEBUG_DRIVER("Enabled hardware status page\n"); |
| 139 | return 0; | 143 | return 0; |
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index be631cc3e4dc..ecac882e1d54 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c | |||
| @@ -45,6 +45,9 @@ module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400); | |||
| 45 | unsigned int i915_powersave = 1; | 45 | unsigned int i915_powersave = 1; |
| 46 | module_param_named(powersave, i915_powersave, int, 0400); | 46 | module_param_named(powersave, i915_powersave, int, 0400); |
| 47 | 47 | ||
| 48 | unsigned int i915_lvds_downclock = 0; | ||
| 49 | module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400); | ||
| 50 | |||
| 48 | static struct drm_driver driver; | 51 | static struct drm_driver driver; |
| 49 | 52 | ||
| 50 | #define INTEL_VGA_DEVICE(id, info) { \ | 53 | #define INTEL_VGA_DEVICE(id, info) { \ |
| @@ -117,7 +120,7 @@ const static struct intel_device_info intel_gm45_info = { | |||
| 117 | 120 | ||
| 118 | const static struct intel_device_info intel_pineview_info = { | 121 | const static struct intel_device_info intel_pineview_info = { |
| 119 | .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .is_i9xx = 1, | 122 | .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .is_i9xx = 1, |
| 120 | .has_pipe_cxsr = 1, | 123 | .need_gfx_hws = 1, |
| 121 | .has_hotplug = 1, | 124 | .has_hotplug = 1, |
| 122 | }; | 125 | }; |
| 123 | 126 | ||
| @@ -464,8 +467,11 @@ static struct drm_driver driver = { | |||
| 464 | .lastclose = i915_driver_lastclose, | 467 | .lastclose = i915_driver_lastclose, |
| 465 | .preclose = i915_driver_preclose, | 468 | .preclose = i915_driver_preclose, |
| 466 | .postclose = i915_driver_postclose, | 469 | .postclose = i915_driver_postclose, |
| 470 | |||
| 471 | /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ | ||
| 467 | .suspend = i915_suspend, | 472 | .suspend = i915_suspend, |
| 468 | .resume = i915_resume, | 473 | .resume = i915_resume, |
| 474 | |||
| 469 | .device_is_agp = i915_driver_device_is_agp, | 475 | .device_is_agp = i915_driver_device_is_agp, |
| 470 | .enable_vblank = i915_enable_vblank, | 476 | .enable_vblank = i915_enable_vblank, |
| 471 | .disable_vblank = i915_disable_vblank, | 477 | .disable_vblank = i915_disable_vblank, |
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 29dd67626967..aaf934d96f21 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h | |||
| @@ -283,6 +283,7 @@ typedef struct drm_i915_private { | |||
| 283 | unsigned int lvds_use_ssc:1; | 283 | unsigned int lvds_use_ssc:1; |
| 284 | unsigned int edp_support:1; | 284 | unsigned int edp_support:1; |
| 285 | int lvds_ssc_freq; | 285 | int lvds_ssc_freq; |
| 286 | int edp_bpp; | ||
| 286 | 287 | ||
| 287 | struct notifier_block lid_notifier; | 288 | struct notifier_block lid_notifier; |
| 288 | 289 | ||
| @@ -722,6 +723,7 @@ extern struct drm_ioctl_desc i915_ioctls[]; | |||
| 722 | extern int i915_max_ioctl; | 723 | extern int i915_max_ioctl; |
| 723 | extern unsigned int i915_fbpercrtc; | 724 | extern unsigned int i915_fbpercrtc; |
| 724 | extern unsigned int i915_powersave; | 725 | extern unsigned int i915_powersave; |
| 726 | extern unsigned int i915_lvds_downclock; | ||
| 725 | 727 | ||
| 726 | extern void i915_save_display(struct drm_device *dev); | 728 | extern void i915_save_display(struct drm_device *dev); |
| 727 | extern void i915_restore_display(struct drm_device *dev); | 729 | extern void i915_restore_display(struct drm_device *dev); |
| @@ -864,12 +866,13 @@ int i915_do_wait_request(struct drm_device *dev, uint32_t seqno, int interruptib | |||
| 864 | int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf); | 866 | int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf); |
| 865 | int i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, | 867 | int i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, |
| 866 | int write); | 868 | int write); |
| 869 | int i915_gem_object_set_to_display_plane(struct drm_gem_object *obj); | ||
| 867 | int i915_gem_attach_phys_object(struct drm_device *dev, | 870 | int i915_gem_attach_phys_object(struct drm_device *dev, |
| 868 | struct drm_gem_object *obj, int id); | 871 | struct drm_gem_object *obj, int id); |
| 869 | void i915_gem_detach_phys_object(struct drm_device *dev, | 872 | void i915_gem_detach_phys_object(struct drm_device *dev, |
| 870 | struct drm_gem_object *obj); | 873 | struct drm_gem_object *obj); |
| 871 | void i915_gem_free_all_phys_object(struct drm_device *dev); | 874 | void i915_gem_free_all_phys_object(struct drm_device *dev); |
| 872 | int i915_gem_object_get_pages(struct drm_gem_object *obj); | 875 | int i915_gem_object_get_pages(struct drm_gem_object *obj, gfp_t gfpmask); |
| 873 | void i915_gem_object_put_pages(struct drm_gem_object *obj); | 876 | void i915_gem_object_put_pages(struct drm_gem_object *obj); |
| 874 | void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv); | 877 | void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv); |
| 875 | void i915_gem_object_flush_write_domain(struct drm_gem_object *obj); | 878 | void i915_gem_object_flush_write_domain(struct drm_gem_object *obj); |
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 2748609f05b3..b4c8c0230689 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c | |||
| @@ -277,7 +277,7 @@ i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj, | |||
| 277 | 277 | ||
| 278 | mutex_lock(&dev->struct_mutex); | 278 | mutex_lock(&dev->struct_mutex); |
| 279 | 279 | ||
| 280 | ret = i915_gem_object_get_pages(obj); | 280 | ret = i915_gem_object_get_pages(obj, 0); |
| 281 | if (ret != 0) | 281 | if (ret != 0) |
| 282 | goto fail_unlock; | 282 | goto fail_unlock; |
| 283 | 283 | ||
| @@ -321,40 +321,24 @@ fail_unlock: | |||
| 321 | return ret; | 321 | return ret; |
| 322 | } | 322 | } |
| 323 | 323 | ||
| 324 | static inline gfp_t | ||
| 325 | i915_gem_object_get_page_gfp_mask (struct drm_gem_object *obj) | ||
| 326 | { | ||
| 327 | return mapping_gfp_mask(obj->filp->f_path.dentry->d_inode->i_mapping); | ||
| 328 | } | ||
| 329 | |||
| 330 | static inline void | ||
| 331 | i915_gem_object_set_page_gfp_mask (struct drm_gem_object *obj, gfp_t gfp) | ||
| 332 | { | ||
| 333 | mapping_set_gfp_mask(obj->filp->f_path.dentry->d_inode->i_mapping, gfp); | ||
| 334 | } | ||
| 335 | |||
| 336 | static int | 324 | static int |
| 337 | i915_gem_object_get_pages_or_evict(struct drm_gem_object *obj) | 325 | i915_gem_object_get_pages_or_evict(struct drm_gem_object *obj) |
| 338 | { | 326 | { |
| 339 | int ret; | 327 | int ret; |
| 340 | 328 | ||
| 341 | ret = i915_gem_object_get_pages(obj); | 329 | ret = i915_gem_object_get_pages(obj, __GFP_NORETRY | __GFP_NOWARN); |
| 342 | 330 | ||
| 343 | /* If we've insufficient memory to map in the pages, attempt | 331 | /* If we've insufficient memory to map in the pages, attempt |
| 344 | * to make some space by throwing out some old buffers. | 332 | * to make some space by throwing out some old buffers. |
| 345 | */ | 333 | */ |
| 346 | if (ret == -ENOMEM) { | 334 | if (ret == -ENOMEM) { |
| 347 | struct drm_device *dev = obj->dev; | 335 | struct drm_device *dev = obj->dev; |
| 348 | gfp_t gfp; | ||
| 349 | 336 | ||
| 350 | ret = i915_gem_evict_something(dev, obj->size); | 337 | ret = i915_gem_evict_something(dev, obj->size); |
| 351 | if (ret) | 338 | if (ret) |
| 352 | return ret; | 339 | return ret; |
| 353 | 340 | ||
| 354 | gfp = i915_gem_object_get_page_gfp_mask(obj); | 341 | ret = i915_gem_object_get_pages(obj, 0); |
| 355 | i915_gem_object_set_page_gfp_mask(obj, gfp & ~__GFP_NORETRY); | ||
| 356 | ret = i915_gem_object_get_pages(obj); | ||
| 357 | i915_gem_object_set_page_gfp_mask (obj, gfp); | ||
| 358 | } | 342 | } |
| 359 | 343 | ||
| 360 | return ret; | 344 | return ret; |
| @@ -790,7 +774,7 @@ i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj, | |||
| 790 | 774 | ||
| 791 | mutex_lock(&dev->struct_mutex); | 775 | mutex_lock(&dev->struct_mutex); |
| 792 | 776 | ||
| 793 | ret = i915_gem_object_get_pages(obj); | 777 | ret = i915_gem_object_get_pages(obj, 0); |
| 794 | if (ret != 0) | 778 | if (ret != 0) |
| 795 | goto fail_unlock; | 779 | goto fail_unlock; |
| 796 | 780 | ||
| @@ -2230,7 +2214,8 @@ i915_gem_evict_something(struct drm_device *dev, int min_size) | |||
| 2230 | } | 2214 | } |
| 2231 | 2215 | ||
| 2232 | int | 2216 | int |
| 2233 | i915_gem_object_get_pages(struct drm_gem_object *obj) | 2217 | i915_gem_object_get_pages(struct drm_gem_object *obj, |
| 2218 | gfp_t gfpmask) | ||
| 2234 | { | 2219 | { |
| 2235 | struct drm_i915_gem_object *obj_priv = obj->driver_private; | 2220 | struct drm_i915_gem_object *obj_priv = obj->driver_private; |
| 2236 | int page_count, i; | 2221 | int page_count, i; |
| @@ -2256,7 +2241,10 @@ i915_gem_object_get_pages(struct drm_gem_object *obj) | |||
| 2256 | inode = obj->filp->f_path.dentry->d_inode; | 2241 | inode = obj->filp->f_path.dentry->d_inode; |
| 2257 | mapping = inode->i_mapping; | 2242 | mapping = inode->i_mapping; |
| 2258 | for (i = 0; i < page_count; i++) { | 2243 | for (i = 0; i < page_count; i++) { |
| 2259 | page = read_mapping_page(mapping, i, NULL); | 2244 | page = read_cache_page_gfp(mapping, i, |
| 2245 | mapping_gfp_mask (mapping) | | ||
| 2246 | __GFP_COLD | | ||
| 2247 | gfpmask); | ||
| 2260 | if (IS_ERR(page)) { | 2248 | if (IS_ERR(page)) { |
| 2261 | ret = PTR_ERR(page); | 2249 | ret = PTR_ERR(page); |
| 2262 | i915_gem_object_put_pages(obj); | 2250 | i915_gem_object_put_pages(obj); |
| @@ -2579,7 +2567,7 @@ i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment) | |||
| 2579 | drm_i915_private_t *dev_priv = dev->dev_private; | 2567 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 2580 | struct drm_i915_gem_object *obj_priv = obj->driver_private; | 2568 | struct drm_i915_gem_object *obj_priv = obj->driver_private; |
| 2581 | struct drm_mm_node *free_space; | 2569 | struct drm_mm_node *free_space; |
| 2582 | bool retry_alloc = false; | 2570 | gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN; |
| 2583 | int ret; | 2571 | int ret; |
| 2584 | 2572 | ||
| 2585 | if (obj_priv->madv != I915_MADV_WILLNEED) { | 2573 | if (obj_priv->madv != I915_MADV_WILLNEED) { |
| @@ -2623,15 +2611,7 @@ i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment) | |||
| 2623 | DRM_INFO("Binding object of size %zd at 0x%08x\n", | 2611 | DRM_INFO("Binding object of size %zd at 0x%08x\n", |
| 2624 | obj->size, obj_priv->gtt_offset); | 2612 | obj->size, obj_priv->gtt_offset); |
| 2625 | #endif | 2613 | #endif |
| 2626 | if (retry_alloc) { | 2614 | ret = i915_gem_object_get_pages(obj, gfpmask); |
| 2627 | i915_gem_object_set_page_gfp_mask (obj, | ||
| 2628 | i915_gem_object_get_page_gfp_mask (obj) & ~__GFP_NORETRY); | ||
| 2629 | } | ||
| 2630 | ret = i915_gem_object_get_pages(obj); | ||
| 2631 | if (retry_alloc) { | ||
| 2632 | i915_gem_object_set_page_gfp_mask (obj, | ||
| 2633 | i915_gem_object_get_page_gfp_mask (obj) | __GFP_NORETRY); | ||
| 2634 | } | ||
| 2635 | if (ret) { | 2615 | if (ret) { |
| 2636 | drm_mm_put_block(obj_priv->gtt_space); | 2616 | drm_mm_put_block(obj_priv->gtt_space); |
| 2637 | obj_priv->gtt_space = NULL; | 2617 | obj_priv->gtt_space = NULL; |
| @@ -2641,9 +2621,9 @@ i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment) | |||
| 2641 | ret = i915_gem_evict_something(dev, obj->size); | 2621 | ret = i915_gem_evict_something(dev, obj->size); |
| 2642 | if (ret) { | 2622 | if (ret) { |
| 2643 | /* now try to shrink everyone else */ | 2623 | /* now try to shrink everyone else */ |
| 2644 | if (! retry_alloc) { | 2624 | if (gfpmask) { |
| 2645 | retry_alloc = true; | 2625 | gfpmask = 0; |
| 2646 | goto search_free; | 2626 | goto search_free; |
| 2647 | } | 2627 | } |
| 2648 | 2628 | ||
| 2649 | return ret; | 2629 | return ret; |
| @@ -2837,6 +2817,57 @@ i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write) | |||
| 2837 | return 0; | 2817 | return 0; |
| 2838 | } | 2818 | } |
| 2839 | 2819 | ||
| 2820 | /* | ||
| 2821 | * Prepare buffer for display plane. Use uninterruptible for possible flush | ||
| 2822 | * wait, as in modesetting process we're not supposed to be interrupted. | ||
| 2823 | */ | ||
| 2824 | int | ||
| 2825 | i915_gem_object_set_to_display_plane(struct drm_gem_object *obj) | ||
| 2826 | { | ||
| 2827 | struct drm_device *dev = obj->dev; | ||
| 2828 | struct drm_i915_gem_object *obj_priv = obj->driver_private; | ||
| 2829 | uint32_t old_write_domain, old_read_domains; | ||
| 2830 | int ret; | ||
| 2831 | |||
| 2832 | /* Not valid to be called on unbound objects. */ | ||
| 2833 | if (obj_priv->gtt_space == NULL) | ||
| 2834 | return -EINVAL; | ||
| 2835 | |||
| 2836 | i915_gem_object_flush_gpu_write_domain(obj); | ||
| 2837 | |||
| 2838 | /* Wait on any GPU rendering and flushing to occur. */ | ||
| 2839 | if (obj_priv->active) { | ||
| 2840 | #if WATCH_BUF | ||
| 2841 | DRM_INFO("%s: object %p wait for seqno %08x\n", | ||
| 2842 | __func__, obj, obj_priv->last_rendering_seqno); | ||
| 2843 | #endif | ||
| 2844 | ret = i915_do_wait_request(dev, obj_priv->last_rendering_seqno, 0); | ||
| 2845 | if (ret != 0) | ||
| 2846 | return ret; | ||
| 2847 | } | ||
| 2848 | |||
| 2849 | old_write_domain = obj->write_domain; | ||
| 2850 | old_read_domains = obj->read_domains; | ||
| 2851 | |||
| 2852 | obj->read_domains &= I915_GEM_DOMAIN_GTT; | ||
| 2853 | |||
| 2854 | i915_gem_object_flush_cpu_write_domain(obj); | ||
| 2855 | |||
| 2856 | /* It should now be out of any other write domains, and we can update | ||
| 2857 | * the domain values for our changes. | ||
| 2858 | */ | ||
| 2859 | BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0); | ||
| 2860 | obj->read_domains |= I915_GEM_DOMAIN_GTT; | ||
| 2861 | obj->write_domain = I915_GEM_DOMAIN_GTT; | ||
| 2862 | obj_priv->dirty = 1; | ||
| 2863 | |||
| 2864 | trace_i915_gem_object_change_domain(obj, | ||
| 2865 | old_read_domains, | ||
| 2866 | old_write_domain); | ||
| 2867 | |||
| 2868 | return 0; | ||
| 2869 | } | ||
| 2870 | |||
| 2840 | /** | 2871 | /** |
| 2841 | * Moves a single object to the CPU read, and possibly write domain. | 2872 | * Moves a single object to the CPU read, and possibly write domain. |
| 2842 | * | 2873 | * |
| @@ -3533,6 +3564,9 @@ i915_gem_put_relocs_to_user(struct drm_i915_gem_exec_object2 *exec_list, | |||
| 3533 | uint32_t reloc_count = 0, i; | 3564 | uint32_t reloc_count = 0, i; |
| 3534 | int ret = 0; | 3565 | int ret = 0; |
| 3535 | 3566 | ||
| 3567 | if (relocs == NULL) | ||
| 3568 | return 0; | ||
| 3569 | |||
| 3536 | for (i = 0; i < buffer_count; i++) { | 3570 | for (i = 0; i < buffer_count; i++) { |
| 3537 | struct drm_i915_gem_relocation_entry __user *user_relocs; | 3571 | struct drm_i915_gem_relocation_entry __user *user_relocs; |
| 3538 | int unwritten; | 3572 | int unwritten; |
| @@ -3622,7 +3656,7 @@ i915_gem_do_execbuffer(struct drm_device *dev, void *data, | |||
| 3622 | struct drm_gem_object *batch_obj; | 3656 | struct drm_gem_object *batch_obj; |
| 3623 | struct drm_i915_gem_object *obj_priv; | 3657 | struct drm_i915_gem_object *obj_priv; |
| 3624 | struct drm_clip_rect *cliprects = NULL; | 3658 | struct drm_clip_rect *cliprects = NULL; |
| 3625 | struct drm_i915_gem_relocation_entry *relocs; | 3659 | struct drm_i915_gem_relocation_entry *relocs = NULL; |
| 3626 | int ret = 0, ret2, i, pinned = 0; | 3660 | int ret = 0, ret2, i, pinned = 0; |
| 3627 | uint64_t exec_offset; | 3661 | uint64_t exec_offset; |
| 3628 | uint32_t seqno, flush_domains, reloc_index; | 3662 | uint32_t seqno, flush_domains, reloc_index; |
| @@ -3691,6 +3725,8 @@ i915_gem_do_execbuffer(struct drm_device *dev, void *data, | |||
| 3691 | if (object_list[i] == NULL) { | 3725 | if (object_list[i] == NULL) { |
| 3692 | DRM_ERROR("Invalid object handle %d at index %d\n", | 3726 | DRM_ERROR("Invalid object handle %d at index %d\n", |
| 3693 | exec_list[i].handle, i); | 3727 | exec_list[i].handle, i); |
| 3728 | /* prevent error path from reading uninitialized data */ | ||
| 3729 | args->buffer_count = i + 1; | ||
| 3694 | ret = -EBADF; | 3730 | ret = -EBADF; |
| 3695 | goto err; | 3731 | goto err; |
| 3696 | } | 3732 | } |
| @@ -3699,6 +3735,8 @@ i915_gem_do_execbuffer(struct drm_device *dev, void *data, | |||
| 3699 | if (obj_priv->in_execbuffer) { | 3735 | if (obj_priv->in_execbuffer) { |
| 3700 | DRM_ERROR("Object %p appears more than once in object list\n", | 3736 | DRM_ERROR("Object %p appears more than once in object list\n", |
| 3701 | object_list[i]); | 3737 | object_list[i]); |
| 3738 | /* prevent error path from reading uninitialized data */ | ||
| 3739 | args->buffer_count = i + 1; | ||
| 3702 | ret = -EBADF; | 3740 | ret = -EBADF; |
| 3703 | goto err; | 3741 | goto err; |
| 3704 | } | 3742 | } |
| @@ -3895,6 +3933,7 @@ err: | |||
| 3895 | 3933 | ||
| 3896 | mutex_unlock(&dev->struct_mutex); | 3934 | mutex_unlock(&dev->struct_mutex); |
| 3897 | 3935 | ||
| 3936 | pre_mutex_err: | ||
| 3898 | /* Copy the updated relocations out regardless of current error | 3937 | /* Copy the updated relocations out regardless of current error |
| 3899 | * state. Failure to update the relocs would mean that the next | 3938 | * state. Failure to update the relocs would mean that the next |
| 3900 | * time userland calls execbuf, it would do so with presumed offset | 3939 | * time userland calls execbuf, it would do so with presumed offset |
| @@ -3909,7 +3948,6 @@ err: | |||
| 3909 | ret = ret2; | 3948 | ret = ret2; |
| 3910 | } | 3949 | } |
| 3911 | 3950 | ||
| 3912 | pre_mutex_err: | ||
| 3913 | drm_free_large(object_list); | 3951 | drm_free_large(object_list); |
| 3914 | kfree(cliprects); | 3952 | kfree(cliprects); |
| 3915 | 3953 | ||
| @@ -4000,8 +4038,6 @@ i915_gem_execbuffer(struct drm_device *dev, void *data, | |||
| 4000 | "back to user (%d)\n", | 4038 | "back to user (%d)\n", |
| 4001 | args->buffer_count, ret); | 4039 | args->buffer_count, ret); |
| 4002 | } | 4040 | } |
| 4003 | } else { | ||
| 4004 | DRM_ERROR("i915_gem_do_execbuffer returns %d\n", ret); | ||
| 4005 | } | 4041 | } |
| 4006 | 4042 | ||
| 4007 | drm_free_large(exec_list); | 4043 | drm_free_large(exec_list); |
| @@ -4897,7 +4933,7 @@ void i915_gem_detach_phys_object(struct drm_device *dev, | |||
| 4897 | if (!obj_priv->phys_obj) | 4933 | if (!obj_priv->phys_obj) |
| 4898 | return; | 4934 | return; |
| 4899 | 4935 | ||
| 4900 | ret = i915_gem_object_get_pages(obj); | 4936 | ret = i915_gem_object_get_pages(obj, 0); |
| 4901 | if (ret) | 4937 | if (ret) |
| 4902 | goto out; | 4938 | goto out; |
| 4903 | 4939 | ||
| @@ -4955,7 +4991,7 @@ i915_gem_attach_phys_object(struct drm_device *dev, | |||
| 4955 | obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1]; | 4991 | obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1]; |
| 4956 | obj_priv->phys_obj->cur_obj = obj; | 4992 | obj_priv->phys_obj->cur_obj = obj; |
| 4957 | 4993 | ||
| 4958 | ret = i915_gem_object_get_pages(obj); | 4994 | ret = i915_gem_object_get_pages(obj, 0); |
| 4959 | if (ret) { | 4995 | if (ret) { |
| 4960 | DRM_ERROR("failed to get page list\n"); | 4996 | DRM_ERROR("failed to get page list\n"); |
| 4961 | goto out; | 4997 | goto out; |
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 7cd8110051b6..50ddf4a95c5e 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c | |||
| @@ -274,7 +274,6 @@ irqreturn_t ironlake_irq_handler(struct drm_device *dev) | |||
| 274 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; | 274 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 275 | int ret = IRQ_NONE; | 275 | int ret = IRQ_NONE; |
| 276 | u32 de_iir, gt_iir, de_ier, pch_iir; | 276 | u32 de_iir, gt_iir, de_ier, pch_iir; |
| 277 | u32 new_de_iir, new_gt_iir, new_pch_iir; | ||
| 278 | struct drm_i915_master_private *master_priv; | 277 | struct drm_i915_master_private *master_priv; |
| 279 | 278 | ||
| 280 | /* disable master interrupt before clearing iir */ | 279 | /* disable master interrupt before clearing iir */ |
| @@ -286,51 +285,58 @@ irqreturn_t ironlake_irq_handler(struct drm_device *dev) | |||
| 286 | gt_iir = I915_READ(GTIIR); | 285 | gt_iir = I915_READ(GTIIR); |
| 287 | pch_iir = I915_READ(SDEIIR); | 286 | pch_iir = I915_READ(SDEIIR); |
| 288 | 287 | ||
| 289 | for (;;) { | 288 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0) |
| 290 | if (de_iir == 0 && gt_iir == 0 && pch_iir == 0) | 289 | goto done; |
| 291 | break; | ||
| 292 | 290 | ||
| 293 | ret = IRQ_HANDLED; | 291 | ret = IRQ_HANDLED; |
| 294 | 292 | ||
| 295 | /* should clear PCH hotplug event before clear CPU irq */ | 293 | if (dev->primary->master) { |
| 296 | I915_WRITE(SDEIIR, pch_iir); | 294 | master_priv = dev->primary->master->driver_priv; |
| 297 | new_pch_iir = I915_READ(SDEIIR); | 295 | if (master_priv->sarea_priv) |
| 296 | master_priv->sarea_priv->last_dispatch = | ||
| 297 | READ_BREADCRUMB(dev_priv); | ||
| 298 | } | ||
| 298 | 299 | ||
| 299 | I915_WRITE(DEIIR, de_iir); | 300 | if (gt_iir & GT_USER_INTERRUPT) { |
| 300 | new_de_iir = I915_READ(DEIIR); | 301 | u32 seqno = i915_get_gem_seqno(dev); |
| 301 | I915_WRITE(GTIIR, gt_iir); | 302 | dev_priv->mm.irq_gem_seqno = seqno; |
| 302 | new_gt_iir = I915_READ(GTIIR); | 303 | trace_i915_gem_request_complete(dev, seqno); |
| 304 | DRM_WAKEUP(&dev_priv->irq_queue); | ||
| 305 | dev_priv->hangcheck_count = 0; | ||
| 306 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); | ||
| 307 | } | ||
| 303 | 308 | ||
| 304 | if (dev->primary->master) { | 309 | if (de_iir & DE_GSE) |
| 305 | master_priv = dev->primary->master->driver_priv; | 310 | ironlake_opregion_gse_intr(dev); |
| 306 | if (master_priv->sarea_priv) | ||
| 307 | master_priv->sarea_priv->last_dispatch = | ||
| 308 | READ_BREADCRUMB(dev_priv); | ||
| 309 | } | ||
| 310 | 311 | ||
| 311 | if (gt_iir & GT_USER_INTERRUPT) { | 312 | if (de_iir & DE_PLANEA_FLIP_DONE) |
| 312 | u32 seqno = i915_get_gem_seqno(dev); | 313 | intel_prepare_page_flip(dev, 0); |
| 313 | dev_priv->mm.irq_gem_seqno = seqno; | ||
| 314 | trace_i915_gem_request_complete(dev, seqno); | ||
| 315 | DRM_WAKEUP(&dev_priv->irq_queue); | ||
| 316 | dev_priv->hangcheck_count = 0; | ||
| 317 | mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD); | ||
| 318 | } | ||
| 319 | 314 | ||
| 320 | if (de_iir & DE_GSE) | 315 | if (de_iir & DE_PLANEB_FLIP_DONE) |
| 321 | ironlake_opregion_gse_intr(dev); | 316 | intel_prepare_page_flip(dev, 1); |
| 322 | 317 | ||
| 323 | /* check event from PCH */ | 318 | if (de_iir & DE_PIPEA_VBLANK) { |
| 324 | if ((de_iir & DE_PCH_EVENT) && | 319 | drm_handle_vblank(dev, 0); |
| 325 | (pch_iir & SDE_HOTPLUG_MASK)) { | 320 | intel_finish_page_flip(dev, 0); |
| 326 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); | 321 | } |
| 327 | } | ||
| 328 | 322 | ||
| 329 | de_iir = new_de_iir; | 323 | if (de_iir & DE_PIPEB_VBLANK) { |
| 330 | gt_iir = new_gt_iir; | 324 | drm_handle_vblank(dev, 1); |
| 331 | pch_iir = new_pch_iir; | 325 | intel_finish_page_flip(dev, 1); |
| 332 | } | 326 | } |
| 333 | 327 | ||
| 328 | /* check event from PCH */ | ||
| 329 | if ((de_iir & DE_PCH_EVENT) && | ||
| 330 | (pch_iir & SDE_HOTPLUG_MASK)) { | ||
| 331 | queue_work(dev_priv->wq, &dev_priv->hotplug_work); | ||
| 332 | } | ||
| 333 | |||
| 334 | /* should clear PCH hotplug event before clear CPU irq */ | ||
| 335 | I915_WRITE(SDEIIR, pch_iir); | ||
| 336 | I915_WRITE(GTIIR, gt_iir); | ||
| 337 | I915_WRITE(DEIIR, de_iir); | ||
| 338 | |||
| 339 | done: | ||
| 334 | I915_WRITE(DEIER, de_ier); | 340 | I915_WRITE(DEIER, de_ier); |
| 335 | (void)I915_READ(DEIER); | 341 | (void)I915_READ(DEIER); |
| 336 | 342 | ||
| @@ -854,11 +860,11 @@ int i915_enable_vblank(struct drm_device *dev, int pipe) | |||
| 854 | if (!(pipeconf & PIPEACONF_ENABLE)) | 860 | if (!(pipeconf & PIPEACONF_ENABLE)) |
| 855 | return -EINVAL; | 861 | return -EINVAL; |
| 856 | 862 | ||
| 857 | if (IS_IRONLAKE(dev)) | ||
| 858 | return 0; | ||
| 859 | |||
| 860 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); | 863 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
| 861 | if (IS_I965G(dev)) | 864 | if (IS_IRONLAKE(dev)) |
| 865 | ironlake_enable_display_irq(dev_priv, (pipe == 0) ? | ||
| 866 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); | ||
| 867 | else if (IS_I965G(dev)) | ||
| 862 | i915_enable_pipestat(dev_priv, pipe, | 868 | i915_enable_pipestat(dev_priv, pipe, |
| 863 | PIPE_START_VBLANK_INTERRUPT_ENABLE); | 869 | PIPE_START_VBLANK_INTERRUPT_ENABLE); |
| 864 | else | 870 | else |
| @@ -876,13 +882,14 @@ void i915_disable_vblank(struct drm_device *dev, int pipe) | |||
| 876 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; | 882 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 877 | unsigned long irqflags; | 883 | unsigned long irqflags; |
| 878 | 884 | ||
| 879 | if (IS_IRONLAKE(dev)) | ||
| 880 | return; | ||
| 881 | |||
| 882 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); | 885 | spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags); |
| 883 | i915_disable_pipestat(dev_priv, pipe, | 886 | if (IS_IRONLAKE(dev)) |
| 884 | PIPE_VBLANK_INTERRUPT_ENABLE | | 887 | ironlake_disable_display_irq(dev_priv, (pipe == 0) ? |
| 885 | PIPE_START_VBLANK_INTERRUPT_ENABLE); | 888 | DE_PIPEA_VBLANK: DE_PIPEB_VBLANK); |
| 889 | else | ||
| 890 | i915_disable_pipestat(dev_priv, pipe, | ||
| 891 | PIPE_VBLANK_INTERRUPT_ENABLE | | ||
| 892 | PIPE_START_VBLANK_INTERRUPT_ENABLE); | ||
| 886 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); | 893 | spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags); |
| 887 | } | 894 | } |
| 888 | 895 | ||
| @@ -1025,13 +1032,14 @@ static int ironlake_irq_postinstall(struct drm_device *dev) | |||
| 1025 | { | 1032 | { |
| 1026 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; | 1033 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 1027 | /* enable kind of interrupts always enabled */ | 1034 | /* enable kind of interrupts always enabled */ |
| 1028 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT; | 1035 | u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT | |
| 1036 | DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE; | ||
| 1029 | u32 render_mask = GT_USER_INTERRUPT; | 1037 | u32 render_mask = GT_USER_INTERRUPT; |
| 1030 | u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG | | 1038 | u32 hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG | |
| 1031 | SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG; | 1039 | SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG; |
| 1032 | 1040 | ||
| 1033 | dev_priv->irq_mask_reg = ~display_mask; | 1041 | dev_priv->irq_mask_reg = ~display_mask; |
| 1034 | dev_priv->de_irq_enable_reg = display_mask; | 1042 | dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK; |
| 1035 | 1043 | ||
| 1036 | /* should always can generate irq */ | 1044 | /* should always can generate irq */ |
| 1037 | I915_WRITE(DEIIR, I915_READ(DEIIR)); | 1045 | I915_WRITE(DEIIR, I915_READ(DEIIR)); |
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index 149d360d64a3..847006c5218e 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h | |||
| @@ -1815,7 +1815,7 @@ | |||
| 1815 | #define DSPFW_PLANEB_SHIFT 8 | 1815 | #define DSPFW_PLANEB_SHIFT 8 |
| 1816 | #define DSPFW2 0x70038 | 1816 | #define DSPFW2 0x70038 |
| 1817 | #define DSPFW_CURSORA_MASK 0x00003f00 | 1817 | #define DSPFW_CURSORA_MASK 0x00003f00 |
| 1818 | #define DSPFW_CURSORA_SHIFT 16 | 1818 | #define DSPFW_CURSORA_SHIFT 8 |
| 1819 | #define DSPFW3 0x7003c | 1819 | #define DSPFW3 0x7003c |
| 1820 | #define DSPFW_HPLL_SR_EN (1<<31) | 1820 | #define DSPFW_HPLL_SR_EN (1<<31) |
| 1821 | #define DSPFW_CURSOR_SR_SHIFT 24 | 1821 | #define DSPFW_CURSOR_SR_SHIFT 24 |
diff --git a/drivers/gpu/drm/i915/intel_bios.c b/drivers/gpu/drm/i915/intel_bios.c index f27567747580..15fbc1b5a83e 100644 --- a/drivers/gpu/drm/i915/intel_bios.c +++ b/drivers/gpu/drm/i915/intel_bios.c | |||
| @@ -33,6 +33,8 @@ | |||
| 33 | #define SLAVE_ADDR1 0x70 | 33 | #define SLAVE_ADDR1 0x70 |
| 34 | #define SLAVE_ADDR2 0x72 | 34 | #define SLAVE_ADDR2 0x72 |
| 35 | 35 | ||
| 36 | static int panel_type; | ||
| 37 | |||
| 36 | static void * | 38 | static void * |
| 37 | find_section(struct bdb_header *bdb, int section_id) | 39 | find_section(struct bdb_header *bdb, int section_id) |
| 38 | { | 40 | { |
| @@ -128,6 +130,7 @@ parse_lfp_panel_data(struct drm_i915_private *dev_priv, | |||
| 128 | dev_priv->lvds_dither = lvds_options->pixel_dither; | 130 | dev_priv->lvds_dither = lvds_options->pixel_dither; |
| 129 | if (lvds_options->panel_type == 0xff) | 131 | if (lvds_options->panel_type == 0xff) |
| 130 | return; | 132 | return; |
| 133 | panel_type = lvds_options->panel_type; | ||
| 131 | 134 | ||
| 132 | lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA); | 135 | lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA); |
| 133 | if (!lvds_lfp_data) | 136 | if (!lvds_lfp_data) |
| @@ -197,7 +200,8 @@ parse_lfp_panel_data(struct drm_i915_private *dev_priv, | |||
| 197 | memset(temp_mode, 0, sizeof(*temp_mode)); | 200 | memset(temp_mode, 0, sizeof(*temp_mode)); |
| 198 | } | 201 | } |
| 199 | kfree(temp_mode); | 202 | kfree(temp_mode); |
| 200 | if (temp_downclock < panel_fixed_mode->clock) { | 203 | if (temp_downclock < panel_fixed_mode->clock && |
| 204 | i915_lvds_downclock) { | ||
| 201 | dev_priv->lvds_downclock_avail = 1; | 205 | dev_priv->lvds_downclock_avail = 1; |
| 202 | dev_priv->lvds_downclock = temp_downclock; | 206 | dev_priv->lvds_downclock = temp_downclock; |
| 203 | DRM_DEBUG_KMS("LVDS downclock is found in VBT. ", | 207 | DRM_DEBUG_KMS("LVDS downclock is found in VBT. ", |
| @@ -405,6 +409,34 @@ parse_driver_features(struct drm_i915_private *dev_priv, | |||
| 405 | } | 409 | } |
| 406 | 410 | ||
| 407 | static void | 411 | static void |
| 412 | parse_edp(struct drm_i915_private *dev_priv, struct bdb_header *bdb) | ||
| 413 | { | ||
| 414 | struct bdb_edp *edp; | ||
| 415 | |||
| 416 | edp = find_section(bdb, BDB_EDP); | ||
| 417 | if (!edp) { | ||
| 418 | if (SUPPORTS_EDP(dev_priv->dev) && dev_priv->edp_support) { | ||
| 419 | DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported,\ | ||
| 420 | assume 18bpp panel color depth.\n"); | ||
| 421 | dev_priv->edp_bpp = 18; | ||
| 422 | } | ||
| 423 | return; | ||
| 424 | } | ||
| 425 | |||
| 426 | switch ((edp->color_depth >> (panel_type * 2)) & 3) { | ||
| 427 | case EDP_18BPP: | ||
| 428 | dev_priv->edp_bpp = 18; | ||
| 429 | break; | ||
| 430 | case EDP_24BPP: | ||
| 431 | dev_priv->edp_bpp = 24; | ||
| 432 | break; | ||
| 433 | case EDP_30BPP: | ||
| 434 | dev_priv->edp_bpp = 30; | ||
| 435 | break; | ||
| 436 | } | ||
| 437 | } | ||
| 438 | |||
| 439 | static void | ||
| 408 | parse_device_mapping(struct drm_i915_private *dev_priv, | 440 | parse_device_mapping(struct drm_i915_private *dev_priv, |
| 409 | struct bdb_header *bdb) | 441 | struct bdb_header *bdb) |
| 410 | { | 442 | { |
| @@ -521,6 +553,7 @@ intel_init_bios(struct drm_device *dev) | |||
| 521 | parse_sdvo_device_mapping(dev_priv, bdb); | 553 | parse_sdvo_device_mapping(dev_priv, bdb); |
| 522 | parse_device_mapping(dev_priv, bdb); | 554 | parse_device_mapping(dev_priv, bdb); |
| 523 | parse_driver_features(dev_priv, bdb); | 555 | parse_driver_features(dev_priv, bdb); |
| 556 | parse_edp(dev_priv, bdb); | ||
| 524 | 557 | ||
| 525 | pci_unmap_rom(pdev, bios); | 558 | pci_unmap_rom(pdev, bios); |
| 526 | 559 | ||
diff --git a/drivers/gpu/drm/i915/intel_bios.h b/drivers/gpu/drm/i915/intel_bios.h index 425ac9d7f724..4c18514f6f80 100644 --- a/drivers/gpu/drm/i915/intel_bios.h +++ b/drivers/gpu/drm/i915/intel_bios.h | |||
| @@ -98,6 +98,7 @@ struct vbios_data { | |||
| 98 | #define BDB_SDVO_LVDS_PNP_IDS 24 | 98 | #define BDB_SDVO_LVDS_PNP_IDS 24 |
| 99 | #define BDB_SDVO_LVDS_POWER_SEQ 25 | 99 | #define BDB_SDVO_LVDS_POWER_SEQ 25 |
| 100 | #define BDB_TV_OPTIONS 26 | 100 | #define BDB_TV_OPTIONS 26 |
| 101 | #define BDB_EDP 27 | ||
| 101 | #define BDB_LVDS_OPTIONS 40 | 102 | #define BDB_LVDS_OPTIONS 40 |
| 102 | #define BDB_LVDS_LFP_DATA_PTRS 41 | 103 | #define BDB_LVDS_LFP_DATA_PTRS 41 |
| 103 | #define BDB_LVDS_LFP_DATA 42 | 104 | #define BDB_LVDS_LFP_DATA 42 |
| @@ -426,6 +427,45 @@ struct bdb_driver_features { | |||
| 426 | u8 custom_vbt_version; | 427 | u8 custom_vbt_version; |
| 427 | } __attribute__((packed)); | 428 | } __attribute__((packed)); |
| 428 | 429 | ||
| 430 | #define EDP_18BPP 0 | ||
| 431 | #define EDP_24BPP 1 | ||
| 432 | #define EDP_30BPP 2 | ||
| 433 | #define EDP_RATE_1_62 0 | ||
| 434 | #define EDP_RATE_2_7 1 | ||
| 435 | #define EDP_LANE_1 0 | ||
| 436 | #define EDP_LANE_2 1 | ||
| 437 | #define EDP_LANE_4 3 | ||
| 438 | #define EDP_PREEMPHASIS_NONE 0 | ||
| 439 | #define EDP_PREEMPHASIS_3_5dB 1 | ||
| 440 | #define EDP_PREEMPHASIS_6dB 2 | ||
| 441 | #define EDP_PREEMPHASIS_9_5dB 3 | ||
| 442 | #define EDP_VSWING_0_4V 0 | ||
| 443 | #define EDP_VSWING_0_6V 1 | ||
| 444 | #define EDP_VSWING_0_8V 2 | ||
| 445 | #define EDP_VSWING_1_2V 3 | ||
| 446 | |||
| 447 | struct edp_power_seq { | ||
| 448 | u16 t3; | ||
| 449 | u16 t7; | ||
| 450 | u16 t9; | ||
| 451 | u16 t10; | ||
| 452 | u16 t12; | ||
| 453 | } __attribute__ ((packed)); | ||
| 454 | |||
| 455 | struct edp_link_params { | ||
| 456 | u8 rate:4; | ||
| 457 | u8 lanes:4; | ||
| 458 | u8 preemphasis:4; | ||
| 459 | u8 vswing:4; | ||
| 460 | } __attribute__ ((packed)); | ||
| 461 | |||
| 462 | struct bdb_edp { | ||
| 463 | struct edp_power_seq power_seqs[16]; | ||
| 464 | u32 color_depth; | ||
| 465 | u32 sdrrs_msa_timing_delay; | ||
| 466 | struct edp_link_params link_params[16]; | ||
| 467 | } __attribute__ ((packed)); | ||
| 468 | |||
| 429 | bool intel_init_bios(struct drm_device *dev); | 469 | bool intel_init_bios(struct drm_device *dev); |
| 430 | 470 | ||
| 431 | /* | 471 | /* |
diff --git a/drivers/gpu/drm/i915/intel_crt.c b/drivers/gpu/drm/i915/intel_crt.c index ddefc871edfe..79dd4026586f 100644 --- a/drivers/gpu/drm/i915/intel_crt.c +++ b/drivers/gpu/drm/i915/intel_crt.c | |||
| @@ -157,6 +157,9 @@ static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector) | |||
| 157 | adpa = I915_READ(PCH_ADPA); | 157 | adpa = I915_READ(PCH_ADPA); |
| 158 | 158 | ||
| 159 | adpa &= ~ADPA_CRT_HOTPLUG_MASK; | 159 | adpa &= ~ADPA_CRT_HOTPLUG_MASK; |
| 160 | /* disable HPD first */ | ||
| 161 | I915_WRITE(PCH_ADPA, adpa); | ||
| 162 | (void)I915_READ(PCH_ADPA); | ||
| 160 | 163 | ||
| 161 | adpa |= (ADPA_CRT_HOTPLUG_PERIOD_128 | | 164 | adpa |= (ADPA_CRT_HOTPLUG_PERIOD_128 | |
| 162 | ADPA_CRT_HOTPLUG_WARMUP_10MS | | 165 | ADPA_CRT_HOTPLUG_WARMUP_10MS | |
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 002612fae717..12775df1bbfd 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
| @@ -70,8 +70,6 @@ struct intel_limit { | |||
| 70 | intel_p2_t p2; | 70 | intel_p2_t p2; |
| 71 | bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, | 71 | bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, |
| 72 | int, int, intel_clock_t *); | 72 | int, int, intel_clock_t *); |
| 73 | bool (* find_reduced_pll)(const intel_limit_t *, struct drm_crtc *, | ||
| 74 | int, int, intel_clock_t *); | ||
| 75 | }; | 73 | }; |
| 76 | 74 | ||
| 77 | #define I8XX_DOT_MIN 25000 | 75 | #define I8XX_DOT_MIN 25000 |
| @@ -243,11 +241,11 @@ struct intel_limit { | |||
| 243 | #define IRONLAKE_VCO_MIN 1760000 | 241 | #define IRONLAKE_VCO_MIN 1760000 |
| 244 | #define IRONLAKE_VCO_MAX 3510000 | 242 | #define IRONLAKE_VCO_MAX 3510000 |
| 245 | #define IRONLAKE_N_MIN 1 | 243 | #define IRONLAKE_N_MIN 1 |
| 246 | #define IRONLAKE_N_MAX 5 | 244 | #define IRONLAKE_N_MAX 6 |
| 247 | #define IRONLAKE_M_MIN 79 | 245 | #define IRONLAKE_M_MIN 79 |
| 248 | #define IRONLAKE_M_MAX 118 | 246 | #define IRONLAKE_M_MAX 127 |
| 249 | #define IRONLAKE_M1_MIN 12 | 247 | #define IRONLAKE_M1_MIN 12 |
| 250 | #define IRONLAKE_M1_MAX 23 | 248 | #define IRONLAKE_M1_MAX 22 |
| 251 | #define IRONLAKE_M2_MIN 5 | 249 | #define IRONLAKE_M2_MIN 5 |
| 252 | #define IRONLAKE_M2_MAX 9 | 250 | #define IRONLAKE_M2_MAX 9 |
| 253 | #define IRONLAKE_P_SDVO_DAC_MIN 5 | 251 | #define IRONLAKE_P_SDVO_DAC_MIN 5 |
| @@ -274,9 +272,6 @@ static bool | |||
| 274 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | 272 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 275 | int target, int refclk, intel_clock_t *best_clock); | 273 | int target, int refclk, intel_clock_t *best_clock); |
| 276 | static bool | 274 | static bool |
| 277 | intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | ||
| 278 | int target, int refclk, intel_clock_t *best_clock); | ||
| 279 | static bool | ||
| 280 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | 275 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 281 | int target, int refclk, intel_clock_t *best_clock); | 276 | int target, int refclk, intel_clock_t *best_clock); |
| 282 | 277 | ||
| @@ -299,7 +294,6 @@ static const intel_limit_t intel_limits_i8xx_dvo = { | |||
| 299 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, | 294 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, |
| 300 | .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST }, | 295 | .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST }, |
| 301 | .find_pll = intel_find_best_PLL, | 296 | .find_pll = intel_find_best_PLL, |
| 302 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 303 | }; | 297 | }; |
| 304 | 298 | ||
| 305 | static const intel_limit_t intel_limits_i8xx_lvds = { | 299 | static const intel_limit_t intel_limits_i8xx_lvds = { |
| @@ -314,7 +308,6 @@ static const intel_limit_t intel_limits_i8xx_lvds = { | |||
| 314 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, | 308 | .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, |
| 315 | .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST }, | 309 | .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST }, |
| 316 | .find_pll = intel_find_best_PLL, | 310 | .find_pll = intel_find_best_PLL, |
| 317 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 318 | }; | 311 | }; |
| 319 | 312 | ||
| 320 | static const intel_limit_t intel_limits_i9xx_sdvo = { | 313 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
| @@ -329,7 +322,6 @@ static const intel_limit_t intel_limits_i9xx_sdvo = { | |||
| 329 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, | 322 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, |
| 330 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, | 323 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, |
| 331 | .find_pll = intel_find_best_PLL, | 324 | .find_pll = intel_find_best_PLL, |
| 332 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 333 | }; | 325 | }; |
| 334 | 326 | ||
| 335 | static const intel_limit_t intel_limits_i9xx_lvds = { | 327 | static const intel_limit_t intel_limits_i9xx_lvds = { |
| @@ -347,7 +339,6 @@ static const intel_limit_t intel_limits_i9xx_lvds = { | |||
| 347 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, | 339 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, |
| 348 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST }, | 340 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST }, |
| 349 | .find_pll = intel_find_best_PLL, | 341 | .find_pll = intel_find_best_PLL, |
| 350 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 351 | }; | 342 | }; |
| 352 | 343 | ||
| 353 | /* below parameter and function is for G4X Chipset Family*/ | 344 | /* below parameter and function is for G4X Chipset Family*/ |
| @@ -365,7 +356,6 @@ static const intel_limit_t intel_limits_g4x_sdvo = { | |||
| 365 | .p2_fast = G4X_P2_SDVO_FAST | 356 | .p2_fast = G4X_P2_SDVO_FAST |
| 366 | }, | 357 | }, |
| 367 | .find_pll = intel_g4x_find_best_PLL, | 358 | .find_pll = intel_g4x_find_best_PLL, |
| 368 | .find_reduced_pll = intel_g4x_find_best_PLL, | ||
| 369 | }; | 359 | }; |
| 370 | 360 | ||
| 371 | static const intel_limit_t intel_limits_g4x_hdmi = { | 361 | static const intel_limit_t intel_limits_g4x_hdmi = { |
| @@ -382,7 +372,6 @@ static const intel_limit_t intel_limits_g4x_hdmi = { | |||
| 382 | .p2_fast = G4X_P2_HDMI_DAC_FAST | 372 | .p2_fast = G4X_P2_HDMI_DAC_FAST |
| 383 | }, | 373 | }, |
| 384 | .find_pll = intel_g4x_find_best_PLL, | 374 | .find_pll = intel_g4x_find_best_PLL, |
| 385 | .find_reduced_pll = intel_g4x_find_best_PLL, | ||
| 386 | }; | 375 | }; |
| 387 | 376 | ||
| 388 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { | 377 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { |
| @@ -407,7 +396,6 @@ static const intel_limit_t intel_limits_g4x_single_channel_lvds = { | |||
| 407 | .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST | 396 | .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST |
| 408 | }, | 397 | }, |
| 409 | .find_pll = intel_g4x_find_best_PLL, | 398 | .find_pll = intel_g4x_find_best_PLL, |
| 410 | .find_reduced_pll = intel_g4x_find_best_PLL, | ||
| 411 | }; | 399 | }; |
| 412 | 400 | ||
| 413 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { | 401 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { |
| @@ -432,7 +420,6 @@ static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { | |||
| 432 | .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST | 420 | .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST |
| 433 | }, | 421 | }, |
| 434 | .find_pll = intel_g4x_find_best_PLL, | 422 | .find_pll = intel_g4x_find_best_PLL, |
| 435 | .find_reduced_pll = intel_g4x_find_best_PLL, | ||
| 436 | }; | 423 | }; |
| 437 | 424 | ||
| 438 | static const intel_limit_t intel_limits_g4x_display_port = { | 425 | static const intel_limit_t intel_limits_g4x_display_port = { |
| @@ -470,7 +457,6 @@ static const intel_limit_t intel_limits_pineview_sdvo = { | |||
| 470 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, | 457 | .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, |
| 471 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, | 458 | .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, |
| 472 | .find_pll = intel_find_best_PLL, | 459 | .find_pll = intel_find_best_PLL, |
| 473 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 474 | }; | 460 | }; |
| 475 | 461 | ||
| 476 | static const intel_limit_t intel_limits_pineview_lvds = { | 462 | static const intel_limit_t intel_limits_pineview_lvds = { |
| @@ -486,7 +472,6 @@ static const intel_limit_t intel_limits_pineview_lvds = { | |||
| 486 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, | 472 | .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, |
| 487 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW }, | 473 | .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW }, |
| 488 | .find_pll = intel_find_best_PLL, | 474 | .find_pll = intel_find_best_PLL, |
| 489 | .find_reduced_pll = intel_find_best_reduced_PLL, | ||
| 490 | }; | 475 | }; |
| 491 | 476 | ||
| 492 | static const intel_limit_t intel_limits_ironlake_sdvo = { | 477 | static const intel_limit_t intel_limits_ironlake_sdvo = { |
| @@ -768,46 +753,6 @@ intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |||
| 768 | return (err != target); | 753 | return (err != target); |
| 769 | } | 754 | } |
| 770 | 755 | ||
| 771 | |||
| 772 | static bool | ||
| 773 | intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | ||
| 774 | int target, int refclk, intel_clock_t *best_clock) | ||
| 775 | |||
| 776 | { | ||
| 777 | struct drm_device *dev = crtc->dev; | ||
| 778 | intel_clock_t clock; | ||
| 779 | int err = target; | ||
| 780 | bool found = false; | ||
| 781 | |||
| 782 | memcpy(&clock, best_clock, sizeof(intel_clock_t)); | ||
| 783 | |||
| 784 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) { | ||
| 785 | for (clock.m2 = limit->m2.min; clock.m2 <= limit->m2.max; clock.m2++) { | ||
| 786 | /* m1 is always 0 in Pineview */ | ||
| 787 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) | ||
| 788 | break; | ||
| 789 | for (clock.n = limit->n.min; clock.n <= limit->n.max; | ||
| 790 | clock.n++) { | ||
| 791 | int this_err; | ||
| 792 | |||
| 793 | intel_clock(dev, refclk, &clock); | ||
| 794 | |||
| 795 | if (!intel_PLL_is_valid(crtc, &clock)) | ||
| 796 | continue; | ||
| 797 | |||
| 798 | this_err = abs(clock.dot - target); | ||
| 799 | if (this_err < err) { | ||
| 800 | *best_clock = clock; | ||
| 801 | err = this_err; | ||
| 802 | found = true; | ||
| 803 | } | ||
| 804 | } | ||
| 805 | } | ||
| 806 | } | ||
| 807 | |||
| 808 | return found; | ||
| 809 | } | ||
| 810 | |||
| 811 | static bool | 756 | static bool |
| 812 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | 757 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, |
| 813 | int target, int refclk, intel_clock_t *best_clock) | 758 | int target, int refclk, intel_clock_t *best_clock) |
| @@ -1262,7 +1207,7 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 1262 | return ret; | 1207 | return ret; |
| 1263 | } | 1208 | } |
| 1264 | 1209 | ||
| 1265 | ret = i915_gem_object_set_to_gtt_domain(obj, 1); | 1210 | ret = i915_gem_object_set_to_display_plane(obj); |
| 1266 | if (ret != 0) { | 1211 | if (ret != 0) { |
| 1267 | i915_gem_object_unpin(obj); | 1212 | i915_gem_object_unpin(obj); |
| 1268 | mutex_unlock(&dev->struct_mutex); | 1213 | mutex_unlock(&dev->struct_mutex); |
| @@ -1693,6 +1638,7 @@ static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 1693 | case DRM_MODE_DPMS_OFF: | 1638 | case DRM_MODE_DPMS_OFF: |
| 1694 | DRM_DEBUG_KMS("crtc %d dpms off\n", pipe); | 1639 | DRM_DEBUG_KMS("crtc %d dpms off\n", pipe); |
| 1695 | 1640 | ||
| 1641 | drm_vblank_off(dev, pipe); | ||
| 1696 | /* Disable display plane */ | 1642 | /* Disable display plane */ |
| 1697 | temp = I915_READ(dspcntr_reg); | 1643 | temp = I915_READ(dspcntr_reg); |
| 1698 | if ((temp & DISPLAY_PLANE_ENABLE) != 0) { | 1644 | if ((temp & DISPLAY_PLANE_ENABLE) != 0) { |
| @@ -2574,6 +2520,10 @@ static void g4x_update_wm(struct drm_device *dev, int planea_clock, | |||
| 2574 | sr_entries = roundup(sr_entries / cacheline_size, 1); | 2520 | sr_entries = roundup(sr_entries / cacheline_size, 1); |
| 2575 | DRM_DEBUG("self-refresh entries: %d\n", sr_entries); | 2521 | DRM_DEBUG("self-refresh entries: %d\n", sr_entries); |
| 2576 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); | 2522 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); |
| 2523 | } else { | ||
| 2524 | /* Turn off self refresh if both pipes are enabled */ | ||
| 2525 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) | ||
| 2526 | & ~FW_BLC_SELF_EN); | ||
| 2577 | } | 2527 | } |
| 2578 | 2528 | ||
| 2579 | DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n", | 2529 | DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n", |
| @@ -2617,6 +2567,10 @@ static void i965_update_wm(struct drm_device *dev, int planea_clock, | |||
| 2617 | srwm = 1; | 2567 | srwm = 1; |
| 2618 | srwm &= 0x3f; | 2568 | srwm &= 0x3f; |
| 2619 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); | 2569 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); |
| 2570 | } else { | ||
| 2571 | /* Turn off self refresh if both pipes are enabled */ | ||
| 2572 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) | ||
| 2573 | & ~FW_BLC_SELF_EN); | ||
| 2620 | } | 2574 | } |
| 2621 | 2575 | ||
| 2622 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", | 2576 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| @@ -2685,6 +2639,10 @@ static void i9xx_update_wm(struct drm_device *dev, int planea_clock, | |||
| 2685 | if (srwm < 0) | 2639 | if (srwm < 0) |
| 2686 | srwm = 1; | 2640 | srwm = 1; |
| 2687 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN | (srwm & 0x3f)); | 2641 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN | (srwm & 0x3f)); |
| 2642 | } else { | ||
| 2643 | /* Turn off self refresh if both pipes are enabled */ | ||
| 2644 | I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF) | ||
| 2645 | & ~FW_BLC_SELF_EN); | ||
| 2688 | } | 2646 | } |
| 2689 | 2647 | ||
| 2690 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", | 2648 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
| @@ -2910,10 +2868,8 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
| 2910 | return -EINVAL; | 2868 | return -EINVAL; |
| 2911 | } | 2869 | } |
| 2912 | 2870 | ||
| 2913 | if (is_lvds && limit->find_reduced_pll && | 2871 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
| 2914 | dev_priv->lvds_downclock_avail) { | 2872 | has_reduced_clock = limit->find_pll(limit, crtc, |
| 2915 | memcpy(&reduced_clock, &clock, sizeof(intel_clock_t)); | ||
| 2916 | has_reduced_clock = limit->find_reduced_pll(limit, crtc, | ||
| 2917 | dev_priv->lvds_downclock, | 2873 | dev_priv->lvds_downclock, |
| 2918 | refclk, | 2874 | refclk, |
| 2919 | &reduced_clock); | 2875 | &reduced_clock); |
| @@ -2981,6 +2937,21 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
| 2981 | temp |= PIPE_8BPC; | 2937 | temp |= PIPE_8BPC; |
| 2982 | else | 2938 | else |
| 2983 | temp |= PIPE_6BPC; | 2939 | temp |= PIPE_6BPC; |
| 2940 | } else if (is_edp) { | ||
| 2941 | switch (dev_priv->edp_bpp/3) { | ||
| 2942 | case 8: | ||
| 2943 | temp |= PIPE_8BPC; | ||
| 2944 | break; | ||
| 2945 | case 10: | ||
| 2946 | temp |= PIPE_10BPC; | ||
| 2947 | break; | ||
| 2948 | case 6: | ||
| 2949 | temp |= PIPE_6BPC; | ||
| 2950 | break; | ||
| 2951 | case 12: | ||
| 2952 | temp |= PIPE_12BPC; | ||
| 2953 | break; | ||
| 2954 | } | ||
| 2984 | } else | 2955 | } else |
| 2985 | temp |= PIPE_8BPC; | 2956 | temp |= PIPE_8BPC; |
| 2986 | I915_WRITE(pipeconf_reg, temp); | 2957 | I915_WRITE(pipeconf_reg, temp); |
| @@ -4026,6 +3997,12 @@ void intel_finish_page_flip(struct drm_device *dev, int pipe) | |||
| 4026 | spin_lock_irqsave(&dev->event_lock, flags); | 3997 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4027 | work = intel_crtc->unpin_work; | 3998 | work = intel_crtc->unpin_work; |
| 4028 | if (work == NULL || !work->pending) { | 3999 | if (work == NULL || !work->pending) { |
| 4000 | if (work && !work->pending) { | ||
| 4001 | obj_priv = work->obj->driver_private; | ||
| 4002 | DRM_DEBUG_DRIVER("flip finish: %p (%d) not pending?\n", | ||
| 4003 | obj_priv, | ||
| 4004 | atomic_read(&obj_priv->pending_flip)); | ||
| 4005 | } | ||
| 4029 | spin_unlock_irqrestore(&dev->event_lock, flags); | 4006 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4030 | return; | 4007 | return; |
| 4031 | } | 4008 | } |
| @@ -4047,7 +4024,10 @@ void intel_finish_page_flip(struct drm_device *dev, int pipe) | |||
| 4047 | spin_unlock_irqrestore(&dev->event_lock, flags); | 4024 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4048 | 4025 | ||
| 4049 | obj_priv = work->obj->driver_private; | 4026 | obj_priv = work->obj->driver_private; |
| 4050 | if (atomic_dec_and_test(&obj_priv->pending_flip)) | 4027 | |
| 4028 | /* Initial scanout buffer will have a 0 pending flip count */ | ||
| 4029 | if ((atomic_read(&obj_priv->pending_flip) == 0) || | ||
| 4030 | atomic_dec_and_test(&obj_priv->pending_flip)) | ||
| 4051 | DRM_WAKEUP(&dev_priv->pending_flip_queue); | 4031 | DRM_WAKEUP(&dev_priv->pending_flip_queue); |
| 4052 | schedule_work(&work->work); | 4032 | schedule_work(&work->work); |
| 4053 | } | 4033 | } |
| @@ -4060,8 +4040,11 @@ void intel_prepare_page_flip(struct drm_device *dev, int plane) | |||
| 4060 | unsigned long flags; | 4040 | unsigned long flags; |
| 4061 | 4041 | ||
| 4062 | spin_lock_irqsave(&dev->event_lock, flags); | 4042 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4063 | if (intel_crtc->unpin_work) | 4043 | if (intel_crtc->unpin_work) { |
| 4064 | intel_crtc->unpin_work->pending = 1; | 4044 | intel_crtc->unpin_work->pending = 1; |
| 4045 | } else { | ||
| 4046 | DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n"); | ||
| 4047 | } | ||
| 4065 | spin_unlock_irqrestore(&dev->event_lock, flags); | 4048 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4066 | } | 4049 | } |
| 4067 | 4050 | ||
| @@ -4095,6 +4078,7 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc, | |||
| 4095 | /* We borrow the event spin lock for protecting unpin_work */ | 4078 | /* We borrow the event spin lock for protecting unpin_work */ |
| 4096 | spin_lock_irqsave(&dev->event_lock, flags); | 4079 | spin_lock_irqsave(&dev->event_lock, flags); |
| 4097 | if (intel_crtc->unpin_work) { | 4080 | if (intel_crtc->unpin_work) { |
| 4081 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); | ||
| 4098 | spin_unlock_irqrestore(&dev->event_lock, flags); | 4082 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 4099 | kfree(work); | 4083 | kfree(work); |
| 4100 | mutex_unlock(&dev->struct_mutex); | 4084 | mutex_unlock(&dev->struct_mutex); |
| @@ -4108,7 +4092,10 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc, | |||
| 4108 | 4092 | ||
| 4109 | ret = intel_pin_and_fence_fb_obj(dev, obj); | 4093 | ret = intel_pin_and_fence_fb_obj(dev, obj); |
| 4110 | if (ret != 0) { | 4094 | if (ret != 0) { |
| 4095 | DRM_DEBUG_DRIVER("flip queue: %p pin & fence failed\n", | ||
| 4096 | obj->driver_private); | ||
| 4111 | kfree(work); | 4097 | kfree(work); |
| 4098 | intel_crtc->unpin_work = NULL; | ||
| 4112 | mutex_unlock(&dev->struct_mutex); | 4099 | mutex_unlock(&dev->struct_mutex); |
| 4113 | return ret; | 4100 | return ret; |
| 4114 | } | 4101 | } |
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index 1349d9fd01c4..439506cefc14 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c | |||
| @@ -125,9 +125,15 @@ intel_dp_link_clock(uint8_t link_bw) | |||
| 125 | 125 | ||
| 126 | /* I think this is a fiction */ | 126 | /* I think this is a fiction */ |
| 127 | static int | 127 | static int |
| 128 | intel_dp_link_required(int pixel_clock) | 128 | intel_dp_link_required(struct drm_device *dev, |
| 129 | struct intel_output *intel_output, int pixel_clock) | ||
| 129 | { | 130 | { |
| 130 | return pixel_clock * 3; | 131 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 132 | |||
| 133 | if (IS_eDP(intel_output)) | ||
| 134 | return (pixel_clock * dev_priv->edp_bpp) / 8; | ||
| 135 | else | ||
| 136 | return pixel_clock * 3; | ||
| 131 | } | 137 | } |
| 132 | 138 | ||
| 133 | static int | 139 | static int |
| @@ -138,7 +144,8 @@ intel_dp_mode_valid(struct drm_connector *connector, | |||
| 138 | int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_output)); | 144 | int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_output)); |
| 139 | int max_lanes = intel_dp_max_lane_count(intel_output); | 145 | int max_lanes = intel_dp_max_lane_count(intel_output); |
| 140 | 146 | ||
| 141 | if (intel_dp_link_required(mode->clock) > max_link_clock * max_lanes) | 147 | if (intel_dp_link_required(connector->dev, intel_output, mode->clock) |
| 148 | > max_link_clock * max_lanes) | ||
| 142 | return MODE_CLOCK_HIGH; | 149 | return MODE_CLOCK_HIGH; |
| 143 | 150 | ||
| 144 | if (mode->clock < 10000) | 151 | if (mode->clock < 10000) |
| @@ -492,7 +499,8 @@ intel_dp_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode, | |||
| 492 | for (clock = 0; clock <= max_clock; clock++) { | 499 | for (clock = 0; clock <= max_clock; clock++) { |
| 493 | int link_avail = intel_dp_link_clock(bws[clock]) * lane_count; | 500 | int link_avail = intel_dp_link_clock(bws[clock]) * lane_count; |
| 494 | 501 | ||
| 495 | if (intel_dp_link_required(mode->clock) <= link_avail) { | 502 | if (intel_dp_link_required(encoder->dev, intel_output, mode->clock) |
| 503 | <= link_avail) { | ||
| 496 | dp_priv->link_bw = bws[clock]; | 504 | dp_priv->link_bw = bws[clock]; |
| 497 | dp_priv->lane_count = lane_count; | 505 | dp_priv->lane_count = lane_count; |
| 498 | adjusted_mode->clock = intel_dp_link_clock(dp_priv->link_bw); | 506 | adjusted_mode->clock = intel_dp_link_clock(dp_priv->link_bw); |
| @@ -1289,53 +1297,7 @@ intel_dp_hot_plug(struct intel_output *intel_output) | |||
| 1289 | if (dp_priv->dpms_mode == DRM_MODE_DPMS_ON) | 1297 | if (dp_priv->dpms_mode == DRM_MODE_DPMS_ON) |
| 1290 | intel_dp_check_link_status(intel_output); | 1298 | intel_dp_check_link_status(intel_output); |
| 1291 | } | 1299 | } |
| 1292 | /* | 1300 | |
| 1293 | * Enumerate the child dev array parsed from VBT to check whether | ||
| 1294 | * the given DP is present. | ||
| 1295 | * If it is present, return 1. | ||
| 1296 | * If it is not present, return false. | ||
| 1297 | * If no child dev is parsed from VBT, it is assumed that the given | ||
| 1298 | * DP is present. | ||
| 1299 | */ | ||
| 1300 | static int dp_is_present_in_vbt(struct drm_device *dev, int dp_reg) | ||
| 1301 | { | ||
| 1302 | struct drm_i915_private *dev_priv = dev->dev_private; | ||
| 1303 | struct child_device_config *p_child; | ||
| 1304 | int i, dp_port, ret; | ||
| 1305 | |||
| 1306 | if (!dev_priv->child_dev_num) | ||
| 1307 | return 1; | ||
| 1308 | |||
| 1309 | dp_port = 0; | ||
| 1310 | if (dp_reg == DP_B || dp_reg == PCH_DP_B) | ||
| 1311 | dp_port = PORT_IDPB; | ||
| 1312 | else if (dp_reg == DP_C || dp_reg == PCH_DP_C) | ||
| 1313 | dp_port = PORT_IDPC; | ||
| 1314 | else if (dp_reg == DP_D || dp_reg == PCH_DP_D) | ||
| 1315 | dp_port = PORT_IDPD; | ||
| 1316 | |||
| 1317 | ret = 0; | ||
| 1318 | for (i = 0; i < dev_priv->child_dev_num; i++) { | ||
| 1319 | p_child = dev_priv->child_dev + i; | ||
| 1320 | /* | ||
| 1321 | * If the device type is not DP, continue. | ||
| 1322 | */ | ||
| 1323 | if (p_child->device_type != DEVICE_TYPE_DP && | ||
| 1324 | p_child->device_type != DEVICE_TYPE_eDP) | ||
| 1325 | continue; | ||
| 1326 | /* Find the eDP port */ | ||
| 1327 | if (dp_reg == DP_A && p_child->device_type == DEVICE_TYPE_eDP) { | ||
| 1328 | ret = 1; | ||
| 1329 | break; | ||
| 1330 | } | ||
| 1331 | /* Find the DP port */ | ||
| 1332 | if (p_child->dvo_port == dp_port) { | ||
| 1333 | ret = 1; | ||
| 1334 | break; | ||
| 1335 | } | ||
| 1336 | } | ||
| 1337 | return ret; | ||
| 1338 | } | ||
| 1339 | void | 1301 | void |
| 1340 | intel_dp_init(struct drm_device *dev, int output_reg) | 1302 | intel_dp_init(struct drm_device *dev, int output_reg) |
| 1341 | { | 1303 | { |
| @@ -1345,10 +1307,6 @@ intel_dp_init(struct drm_device *dev, int output_reg) | |||
| 1345 | struct intel_dp_priv *dp_priv; | 1307 | struct intel_dp_priv *dp_priv; |
| 1346 | const char *name = NULL; | 1308 | const char *name = NULL; |
| 1347 | 1309 | ||
| 1348 | if (!dp_is_present_in_vbt(dev, output_reg)) { | ||
| 1349 | DRM_DEBUG_KMS("DP is not present. Ignore it\n"); | ||
| 1350 | return; | ||
| 1351 | } | ||
| 1352 | intel_output = kcalloc(sizeof(struct intel_output) + | 1310 | intel_output = kcalloc(sizeof(struct intel_output) + |
| 1353 | sizeof(struct intel_dp_priv), 1, GFP_KERNEL); | 1311 | sizeof(struct intel_dp_priv), 1, GFP_KERNEL); |
| 1354 | if (!intel_output) | 1312 | if (!intel_output) |
| @@ -1373,11 +1331,10 @@ intel_dp_init(struct drm_device *dev, int output_reg) | |||
| 1373 | else if (output_reg == DP_D || output_reg == PCH_DP_D) | 1331 | else if (output_reg == DP_D || output_reg == PCH_DP_D) |
| 1374 | intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT); | 1332 | intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT); |
| 1375 | 1333 | ||
| 1376 | if (IS_eDP(intel_output)) { | 1334 | if (IS_eDP(intel_output)) |
| 1377 | intel_output->crtc_mask = (1 << 1); | ||
| 1378 | intel_output->clone_mask = (1 << INTEL_EDP_CLONE_BIT); | 1335 | intel_output->clone_mask = (1 << INTEL_EDP_CLONE_BIT); |
| 1379 | } else | 1336 | |
| 1380 | intel_output->crtc_mask = (1 << 0) | (1 << 1); | 1337 | intel_output->crtc_mask = (1 << 0) | (1 << 1); |
| 1381 | connector->interlace_allowed = true; | 1338 | connector->interlace_allowed = true; |
| 1382 | connector->doublescan_allowed = 0; | 1339 | connector->doublescan_allowed = 0; |
| 1383 | 1340 | ||
diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c index 06431941b233..0e268deed761 100644 --- a/drivers/gpu/drm/i915/intel_hdmi.c +++ b/drivers/gpu/drm/i915/intel_hdmi.c | |||
| @@ -225,52 +225,6 @@ static const struct drm_encoder_funcs intel_hdmi_enc_funcs = { | |||
| 225 | .destroy = intel_hdmi_enc_destroy, | 225 | .destroy = intel_hdmi_enc_destroy, |
| 226 | }; | 226 | }; |
| 227 | 227 | ||
| 228 | /* | ||
| 229 | * Enumerate the child dev array parsed from VBT to check whether | ||
| 230 | * the given HDMI is present. | ||
| 231 | * If it is present, return 1. | ||
| 232 | * If it is not present, return false. | ||
| 233 | * If no child dev is parsed from VBT, it assumes that the given | ||
| 234 | * HDMI is present. | ||
| 235 | */ | ||
| 236 | static int hdmi_is_present_in_vbt(struct drm_device *dev, int hdmi_reg) | ||
| 237 | { | ||
| 238 | struct drm_i915_private *dev_priv = dev->dev_private; | ||
| 239 | struct child_device_config *p_child; | ||
| 240 | int i, hdmi_port, ret; | ||
| 241 | |||
| 242 | if (!dev_priv->child_dev_num) | ||
| 243 | return 1; | ||
| 244 | |||
| 245 | if (hdmi_reg == SDVOB) | ||
| 246 | hdmi_port = DVO_B; | ||
| 247 | else if (hdmi_reg == SDVOC) | ||
| 248 | hdmi_port = DVO_C; | ||
| 249 | else if (hdmi_reg == HDMIB) | ||
| 250 | hdmi_port = DVO_B; | ||
| 251 | else if (hdmi_reg == HDMIC) | ||
| 252 | hdmi_port = DVO_C; | ||
| 253 | else if (hdmi_reg == HDMID) | ||
| 254 | hdmi_port = DVO_D; | ||
| 255 | else | ||
| 256 | return 0; | ||
| 257 | |||
| 258 | ret = 0; | ||
| 259 | for (i = 0; i < dev_priv->child_dev_num; i++) { | ||
| 260 | p_child = dev_priv->child_dev + i; | ||
| 261 | /* | ||
| 262 | * If the device type is not HDMI, continue. | ||
| 263 | */ | ||
| 264 | if (p_child->device_type != DEVICE_TYPE_HDMI) | ||
| 265 | continue; | ||
| 266 | /* Find the HDMI port */ | ||
| 267 | if (p_child->dvo_port == hdmi_port) { | ||
| 268 | ret = 1; | ||
| 269 | break; | ||
| 270 | } | ||
| 271 | } | ||
| 272 | return ret; | ||
| 273 | } | ||
| 274 | void intel_hdmi_init(struct drm_device *dev, int sdvox_reg) | 228 | void intel_hdmi_init(struct drm_device *dev, int sdvox_reg) |
| 275 | { | 229 | { |
| 276 | struct drm_i915_private *dev_priv = dev->dev_private; | 230 | struct drm_i915_private *dev_priv = dev->dev_private; |
| @@ -278,10 +232,6 @@ void intel_hdmi_init(struct drm_device *dev, int sdvox_reg) | |||
| 278 | struct intel_output *intel_output; | 232 | struct intel_output *intel_output; |
| 279 | struct intel_hdmi_priv *hdmi_priv; | 233 | struct intel_hdmi_priv *hdmi_priv; |
| 280 | 234 | ||
| 281 | if (!hdmi_is_present_in_vbt(dev, sdvox_reg)) { | ||
| 282 | DRM_DEBUG_KMS("HDMI is not present. Ignored it \n"); | ||
| 283 | return; | ||
| 284 | } | ||
| 285 | intel_output = kcalloc(sizeof(struct intel_output) + | 235 | intel_output = kcalloc(sizeof(struct intel_output) + |
| 286 | sizeof(struct intel_hdmi_priv), 1, GFP_KERNEL); | 236 | sizeof(struct intel_hdmi_priv), 1, GFP_KERNEL); |
| 287 | if (!intel_output) | 237 | if (!intel_output) |
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index f4b4aa242df1..b1d0acbae4e4 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c | |||
| @@ -602,6 +602,20 @@ static void intel_lvds_mode_set(struct drm_encoder *encoder, | |||
| 602 | /* Some lid devices report incorrect lid status, assume they're connected */ | 602 | /* Some lid devices report incorrect lid status, assume they're connected */ |
| 603 | static const struct dmi_system_id bad_lid_status[] = { | 603 | static const struct dmi_system_id bad_lid_status[] = { |
| 604 | { | 604 | { |
| 605 | .ident = "Compaq nx9020", | ||
| 606 | .matches = { | ||
| 607 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 608 | DMI_MATCH(DMI_BOARD_NAME, "3084"), | ||
| 609 | }, | ||
| 610 | }, | ||
| 611 | { | ||
| 612 | .ident = "Samsung SX20S", | ||
| 613 | .matches = { | ||
| 614 | DMI_MATCH(DMI_SYS_VENDOR, "Samsung Electronics"), | ||
| 615 | DMI_MATCH(DMI_BOARD_NAME, "SX20S"), | ||
| 616 | }, | ||
| 617 | }, | ||
| 618 | { | ||
| 605 | .ident = "Aspire One", | 619 | .ident = "Aspire One", |
| 606 | .matches = { | 620 | .matches = { |
| 607 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | 621 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| @@ -609,6 +623,13 @@ static const struct dmi_system_id bad_lid_status[] = { | |||
| 609 | }, | 623 | }, |
| 610 | }, | 624 | }, |
| 611 | { | 625 | { |
| 626 | .ident = "Aspire 1810T", | ||
| 627 | .matches = { | ||
| 628 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | ||
| 629 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1810T"), | ||
| 630 | }, | ||
| 631 | }, | ||
| 632 | { | ||
| 612 | .ident = "PC-81005", | 633 | .ident = "PC-81005", |
| 613 | .matches = { | 634 | .matches = { |
| 614 | DMI_MATCH(DMI_SYS_VENDOR, "MALATA"), | 635 | DMI_MATCH(DMI_SYS_VENDOR, "MALATA"), |
| @@ -629,7 +650,7 @@ static enum drm_connector_status intel_lvds_detect(struct drm_connector *connect | |||
| 629 | { | 650 | { |
| 630 | enum drm_connector_status status = connector_status_connected; | 651 | enum drm_connector_status status = connector_status_connected; |
| 631 | 652 | ||
| 632 | if (!acpi_lid_open() && !dmi_check_system(bad_lid_status)) | 653 | if (!dmi_check_system(bad_lid_status) && !acpi_lid_open()) |
| 633 | status = connector_status_disconnected; | 654 | status = connector_status_disconnected; |
| 634 | 655 | ||
| 635 | return status; | 656 | return status; |
| @@ -912,7 +933,8 @@ static void intel_find_lvds_downclock(struct drm_device *dev, | |||
| 912 | } | 933 | } |
| 913 | } | 934 | } |
| 914 | mutex_unlock(&dev->mode_config.mutex); | 935 | mutex_unlock(&dev->mode_config.mutex); |
| 915 | if (temp_downclock < panel_fixed_mode->clock) { | 936 | if (temp_downclock < panel_fixed_mode->clock && |
| 937 | i915_lvds_downclock) { | ||
| 916 | /* We found the downclock for LVDS. */ | 938 | /* We found the downclock for LVDS. */ |
| 917 | dev_priv->lvds_downclock_avail = 1; | 939 | dev_priv->lvds_downclock_avail = 1; |
| 918 | dev_priv->lvds_downclock = temp_downclock; | 940 | dev_priv->lvds_downclock = temp_downclock; |
diff --git a/drivers/gpu/drm/i915/intel_sdvo.c b/drivers/gpu/drm/i915/intel_sdvo.c index de5144c8c153..82678d30ab06 100644 --- a/drivers/gpu/drm/i915/intel_sdvo.c +++ b/drivers/gpu/drm/i915/intel_sdvo.c | |||
| @@ -462,14 +462,63 @@ static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode) | |||
| 462 | } | 462 | } |
| 463 | 463 | ||
| 464 | /** | 464 | /** |
| 465 | * Don't check status code from this as it switches the bus back to the | 465 | * Try to read the response after issuie the DDC switch command. But it |
| 466 | * SDVO chips which defeats the purpose of doing a bus switch in the first | 466 | * is noted that we must do the action of reading response and issuing DDC |
| 467 | * place. | 467 | * switch command in one I2C transaction. Otherwise when we try to start |
| 468 | * another I2C transaction after issuing the DDC bus switch, it will be | ||
| 469 | * switched to the internal SDVO register. | ||
| 468 | */ | 470 | */ |
| 469 | static void intel_sdvo_set_control_bus_switch(struct intel_output *intel_output, | 471 | static void intel_sdvo_set_control_bus_switch(struct intel_output *intel_output, |
| 470 | u8 target) | 472 | u8 target) |
| 471 | { | 473 | { |
| 472 | intel_sdvo_write_cmd(intel_output, SDVO_CMD_SET_CONTROL_BUS_SWITCH, &target, 1); | 474 | struct intel_sdvo_priv *sdvo_priv = intel_output->dev_priv; |
| 475 | u8 out_buf[2], cmd_buf[2], ret_value[2], ret; | ||
| 476 | struct i2c_msg msgs[] = { | ||
| 477 | { | ||
| 478 | .addr = sdvo_priv->slave_addr >> 1, | ||
| 479 | .flags = 0, | ||
| 480 | .len = 2, | ||
| 481 | .buf = out_buf, | ||
| 482 | }, | ||
| 483 | /* the following two are to read the response */ | ||
| 484 | { | ||
| 485 | .addr = sdvo_priv->slave_addr >> 1, | ||
| 486 | .flags = 0, | ||
| 487 | .len = 1, | ||
| 488 | .buf = cmd_buf, | ||
| 489 | }, | ||
| 490 | { | ||
| 491 | .addr = sdvo_priv->slave_addr >> 1, | ||
| 492 | .flags = I2C_M_RD, | ||
| 493 | .len = 1, | ||
| 494 | .buf = ret_value, | ||
| 495 | }, | ||
| 496 | }; | ||
| 497 | |||
| 498 | intel_sdvo_debug_write(intel_output, SDVO_CMD_SET_CONTROL_BUS_SWITCH, | ||
| 499 | &target, 1); | ||
| 500 | /* write the DDC switch command argument */ | ||
| 501 | intel_sdvo_write_byte(intel_output, SDVO_I2C_ARG_0, target); | ||
| 502 | |||
| 503 | out_buf[0] = SDVO_I2C_OPCODE; | ||
| 504 | out_buf[1] = SDVO_CMD_SET_CONTROL_BUS_SWITCH; | ||
| 505 | cmd_buf[0] = SDVO_I2C_CMD_STATUS; | ||
| 506 | cmd_buf[1] = 0; | ||
| 507 | ret_value[0] = 0; | ||
| 508 | ret_value[1] = 0; | ||
| 509 | |||
| 510 | ret = i2c_transfer(intel_output->i2c_bus, msgs, 3); | ||
| 511 | if (ret != 3) { | ||
| 512 | /* failure in I2C transfer */ | ||
| 513 | DRM_DEBUG_KMS("I2c transfer returned %d\n", ret); | ||
| 514 | return; | ||
| 515 | } | ||
| 516 | if (ret_value[0] != SDVO_CMD_STATUS_SUCCESS) { | ||
| 517 | DRM_DEBUG_KMS("DDC switch command returns response %d\n", | ||
| 518 | ret_value[0]); | ||
| 519 | return; | ||
| 520 | } | ||
| 521 | return; | ||
| 473 | } | 522 | } |
| 474 | 523 | ||
| 475 | static bool intel_sdvo_set_target_input(struct intel_output *intel_output, bool target_0, bool target_1) | 524 | static bool intel_sdvo_set_target_input(struct intel_output *intel_output, bool target_0, bool target_1) |
| @@ -1579,6 +1628,32 @@ intel_sdvo_hdmi_sink_detect(struct drm_connector *connector, u16 response) | |||
| 1579 | edid = drm_get_edid(&intel_output->base, | 1628 | edid = drm_get_edid(&intel_output->base, |
| 1580 | intel_output->ddc_bus); | 1629 | intel_output->ddc_bus); |
| 1581 | 1630 | ||
| 1631 | /* This is only applied to SDVO cards with multiple outputs */ | ||
| 1632 | if (edid == NULL && intel_sdvo_multifunc_encoder(intel_output)) { | ||
| 1633 | uint8_t saved_ddc, temp_ddc; | ||
| 1634 | saved_ddc = sdvo_priv->ddc_bus; | ||
| 1635 | temp_ddc = sdvo_priv->ddc_bus >> 1; | ||
| 1636 | /* | ||
| 1637 | * Don't use the 1 as the argument of DDC bus switch to get | ||
| 1638 | * the EDID. It is used for SDVO SPD ROM. | ||
| 1639 | */ | ||
| 1640 | while(temp_ddc > 1) { | ||
| 1641 | sdvo_priv->ddc_bus = temp_ddc; | ||
| 1642 | edid = drm_get_edid(&intel_output->base, | ||
| 1643 | intel_output->ddc_bus); | ||
| 1644 | if (edid) { | ||
| 1645 | /* | ||
| 1646 | * When we can get the EDID, maybe it is the | ||
| 1647 | * correct DDC bus. Update it. | ||
| 1648 | */ | ||
| 1649 | sdvo_priv->ddc_bus = temp_ddc; | ||
| 1650 | break; | ||
| 1651 | } | ||
| 1652 | temp_ddc >>= 1; | ||
| 1653 | } | ||
| 1654 | if (edid == NULL) | ||
| 1655 | sdvo_priv->ddc_bus = saved_ddc; | ||
| 1656 | } | ||
| 1582 | /* when there is no edid and no monitor is connected with VGA | 1657 | /* when there is no edid and no monitor is connected with VGA |
| 1583 | * port, try to use the CRT ddc to read the EDID for DVI-connector | 1658 | * port, try to use the CRT ddc to read the EDID for DVI-connector |
| 1584 | */ | 1659 | */ |
| @@ -2270,6 +2345,14 @@ intel_sdvo_output_setup(struct intel_output *intel_output, uint16_t flags) | |||
| 2270 | connector->connector_type = DRM_MODE_CONNECTOR_VGA; | 2345 | connector->connector_type = DRM_MODE_CONNECTOR_VGA; |
| 2271 | intel_output->clone_mask = (1 << INTEL_SDVO_NON_TV_CLONE_BIT) | | 2346 | intel_output->clone_mask = (1 << INTEL_SDVO_NON_TV_CLONE_BIT) | |
| 2272 | (1 << INTEL_ANALOG_CLONE_BIT); | 2347 | (1 << INTEL_ANALOG_CLONE_BIT); |
| 2348 | } else if (flags & SDVO_OUTPUT_CVBS0) { | ||
| 2349 | |||
| 2350 | sdvo_priv->controlled_output = SDVO_OUTPUT_CVBS0; | ||
| 2351 | encoder->encoder_type = DRM_MODE_ENCODER_TVDAC; | ||
| 2352 | connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO; | ||
| 2353 | sdvo_priv->is_tv = true; | ||
| 2354 | intel_output->needs_tv_clock = true; | ||
| 2355 | intel_output->clone_mask = 1 << INTEL_SDVO_TV_CLONE_BIT; | ||
| 2273 | } else if (flags & SDVO_OUTPUT_LVDS0) { | 2356 | } else if (flags & SDVO_OUTPUT_LVDS0) { |
| 2274 | 2357 | ||
| 2275 | sdvo_priv->controlled_output = SDVO_OUTPUT_LVDS0; | 2358 | sdvo_priv->controlled_output = SDVO_OUTPUT_LVDS0; |
diff --git a/drivers/gpu/drm/i915/intel_tv.c b/drivers/gpu/drm/i915/intel_tv.c index 1d5b9b7b033f..552ec110b741 100644 --- a/drivers/gpu/drm/i915/intel_tv.c +++ b/drivers/gpu/drm/i915/intel_tv.c | |||
| @@ -1840,8 +1840,6 @@ intel_tv_init(struct drm_device *dev) | |||
| 1840 | drm_connector_attach_property(connector, | 1840 | drm_connector_attach_property(connector, |
| 1841 | dev->mode_config.tv_bottom_margin_property, | 1841 | dev->mode_config.tv_bottom_margin_property, |
| 1842 | tv_priv->margin[TV_MARGIN_BOTTOM]); | 1842 | tv_priv->margin[TV_MARGIN_BOTTOM]); |
| 1843 | |||
| 1844 | dev_priv->hotplug_supported_mask |= TV_HOTPLUG_INT_STATUS; | ||
| 1845 | out: | 1843 | out: |
| 1846 | drm_sysfs_connector_add(connector); | 1844 | drm_sysfs_connector_add(connector); |
| 1847 | } | 1845 | } |
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index ba143972769f..d7f8d8b4a4b8 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c | |||
| @@ -310,63 +310,22 @@ valid_reg(struct nvbios *bios, uint32_t reg) | |||
| 310 | struct drm_device *dev = bios->dev; | 310 | struct drm_device *dev = bios->dev; |
| 311 | 311 | ||
| 312 | /* C51 has misaligned regs on purpose. Marvellous */ | 312 | /* C51 has misaligned regs on purpose. Marvellous */ |
| 313 | if (reg & 0x2 || (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) { | 313 | if (reg & 0x2 || |
| 314 | NV_ERROR(dev, "========== misaligned reg 0x%08X ==========\n", | 314 | (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) |
| 315 | reg); | 315 | NV_ERROR(dev, "======= misaligned reg 0x%08X =======\n", reg); |
| 316 | return 0; | 316 | |
| 317 | } | 317 | /* warn on C51 regs that haven't been verified accessible in tracing */ |
| 318 | /* | ||
| 319 | * Warn on C51 regs that have not been verified accessible in | ||
| 320 | * mmiotracing | ||
| 321 | */ | ||
| 322 | if (reg & 0x1 && dev_priv->VBIOS.pub.chip_version == 0x51 && | 318 | if (reg & 0x1 && dev_priv->VBIOS.pub.chip_version == 0x51 && |
| 323 | reg != 0x130d && reg != 0x1311 && reg != 0x60081d) | 319 | reg != 0x130d && reg != 0x1311 && reg != 0x60081d) |
| 324 | NV_WARN(dev, "=== C51 misaligned reg 0x%08X not verified ===\n", | 320 | NV_WARN(dev, "=== C51 misaligned reg 0x%08X not verified ===\n", |
| 325 | reg); | 321 | reg); |
| 326 | 322 | ||
| 327 | /* Trust the init scripts on G80 */ | 323 | if (reg >= (8*1024*1024)) { |
| 328 | if (dev_priv->card_type >= NV_50) | 324 | NV_ERROR(dev, "=== reg 0x%08x out of mapped bounds ===\n", reg); |
| 329 | return 1; | 325 | return 0; |
| 330 | |||
| 331 | #define WITHIN(x, y, z) ((x >= y) && (x < y + z)) | ||
| 332 | if (WITHIN(reg, NV_PMC_OFFSET, NV_PMC_SIZE)) | ||
| 333 | return 1; | ||
| 334 | if (WITHIN(reg, NV_PBUS_OFFSET, NV_PBUS_SIZE)) | ||
| 335 | return 1; | ||
| 336 | if (WITHIN(reg, NV_PFIFO_OFFSET, NV_PFIFO_SIZE)) | ||
| 337 | return 1; | ||
| 338 | if (dev_priv->VBIOS.pub.chip_version >= 0x30 && | ||
| 339 | (WITHIN(reg, 0x4000, 0x600) || reg == 0x00004600)) | ||
| 340 | return 1; | ||
| 341 | if (dev_priv->VBIOS.pub.chip_version >= 0x40 && | ||
| 342 | WITHIN(reg, 0xc000, 0x48)) | ||
| 343 | return 1; | ||
| 344 | if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0000d204) | ||
| 345 | return 1; | ||
| 346 | if (dev_priv->VBIOS.pub.chip_version >= 0x40) { | ||
| 347 | if (reg == 0x00011014 || reg == 0x00020328) | ||
| 348 | return 1; | ||
| 349 | if (WITHIN(reg, 0x88000, NV_PBUS_SIZE)) /* new PBUS */ | ||
| 350 | return 1; | ||
| 351 | } | 326 | } |
| 352 | if (WITHIN(reg, NV_PFB_OFFSET, NV_PFB_SIZE)) | ||
| 353 | return 1; | ||
| 354 | if (WITHIN(reg, NV_PEXTDEV_OFFSET, NV_PEXTDEV_SIZE)) | ||
| 355 | return 1; | ||
| 356 | if (WITHIN(reg, NV_PCRTC0_OFFSET, NV_PCRTC0_SIZE * 2)) | ||
| 357 | return 1; | ||
| 358 | if (WITHIN(reg, NV_PRAMDAC0_OFFSET, NV_PRAMDAC0_SIZE * 2)) | ||
| 359 | return 1; | ||
| 360 | if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0070fff0) | ||
| 361 | return 1; | ||
| 362 | if (dev_priv->VBIOS.pub.chip_version == 0x51 && | ||
| 363 | WITHIN(reg, NV_PRAMIN_OFFSET, NV_PRAMIN_SIZE)) | ||
| 364 | return 1; | ||
| 365 | #undef WITHIN | ||
| 366 | 327 | ||
| 367 | NV_ERROR(dev, "========== unknown reg 0x%08X ==========\n", reg); | 328 | return 1; |
| 368 | |||
| 369 | return 0; | ||
| 370 | } | 329 | } |
| 371 | 330 | ||
| 372 | static bool | 331 | static bool |
| @@ -3196,16 +3155,25 @@ static int call_lvds_manufacturer_script(struct drm_device *dev, struct dcb_entr | |||
| 3196 | } | 3155 | } |
| 3197 | #ifdef __powerpc__ | 3156 | #ifdef __powerpc__ |
| 3198 | /* Powerbook specific quirks */ | 3157 | /* Powerbook specific quirks */ |
| 3199 | if (script == LVDS_RESET && ((dev->pci_device & 0xffff) == 0x0179 || (dev->pci_device & 0xffff) == 0x0329)) | 3158 | if ((dev->pci_device & 0xffff) == 0x0179 || |
| 3200 | nv_write_tmds(dev, dcbent->or, 0, 0x02, 0x72); | 3159 | (dev->pci_device & 0xffff) == 0x0189 || |
| 3201 | if ((dev->pci_device & 0xffff) == 0x0179 || (dev->pci_device & 0xffff) == 0x0189 || (dev->pci_device & 0xffff) == 0x0329) { | 3160 | (dev->pci_device & 0xffff) == 0x0329) { |
| 3202 | if (script == LVDS_PANEL_ON) { | 3161 | if (script == LVDS_RESET) { |
| 3203 | bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL, bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL) | (1 << 31)); | 3162 | nv_write_tmds(dev, dcbent->or, 0, 0x02, 0x72); |
| 3204 | bios_wr32(bios, NV_PCRTC_GPIO_EXT, bios_rd32(bios, NV_PCRTC_GPIO_EXT) | 1); | 3163 | |
| 3205 | } | 3164 | } else if (script == LVDS_PANEL_ON) { |
| 3206 | if (script == LVDS_PANEL_OFF) { | 3165 | bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL, |
| 3207 | bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL, bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL) & ~(1 << 31)); | 3166 | bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL) |
| 3208 | bios_wr32(bios, NV_PCRTC_GPIO_EXT, bios_rd32(bios, NV_PCRTC_GPIO_EXT) & ~3); | 3167 | | (1 << 31)); |
| 3168 | bios_wr32(bios, NV_PCRTC_GPIO_EXT, | ||
| 3169 | bios_rd32(bios, NV_PCRTC_GPIO_EXT) | 1); | ||
| 3170 | |||
| 3171 | } else if (script == LVDS_PANEL_OFF) { | ||
| 3172 | bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL, | ||
| 3173 | bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL) | ||
| 3174 | & ~(1 << 31)); | ||
| 3175 | bios_wr32(bios, NV_PCRTC_GPIO_EXT, | ||
| 3176 | bios_rd32(bios, NV_PCRTC_GPIO_EXT) & ~3); | ||
| 3209 | } | 3177 | } |
| 3210 | } | 3178 | } |
| 3211 | #endif | 3179 | #endif |
| @@ -5434,52 +5402,49 @@ static bool | |||
| 5434 | parse_dcb15_entry(struct drm_device *dev, struct parsed_dcb *dcb, | 5402 | parse_dcb15_entry(struct drm_device *dev, struct parsed_dcb *dcb, |
| 5435 | uint32_t conn, uint32_t conf, struct dcb_entry *entry) | 5403 | uint32_t conn, uint32_t conf, struct dcb_entry *entry) |
| 5436 | { | 5404 | { |
| 5437 | if (conn != 0xf0003f00 && conn != 0xf2247f10 && conn != 0xf2204001 && | 5405 | switch (conn & 0x0000000f) { |
| 5438 | conn != 0xf2204301 && conn != 0xf2204311 && conn != 0xf2208001 && | 5406 | case 0: |
| 5439 | conn != 0xf2244001 && conn != 0xf2244301 && conn != 0xf2244311 && | 5407 | entry->type = OUTPUT_ANALOG; |
| 5440 | conn != 0xf4204011 && conn != 0xf4208011 && conn != 0xf4248011 && | 5408 | break; |
| 5441 | conn != 0xf2045ff2 && conn != 0xf2045f14 && conn != 0xf207df14 && | 5409 | case 1: |
| 5442 | conn != 0xf2205004 && conn != 0xf2209004) { | 5410 | entry->type = OUTPUT_TV; |
| 5443 | NV_ERROR(dev, "Unknown DCB 1.5 entry, please report\n"); | 5411 | break; |
| 5444 | 5412 | case 2: | |
| 5445 | /* cause output setting to fail for !TV, so message is seen */ | 5413 | case 3: |
| 5446 | if ((conn & 0xf) != 0x1) | ||
| 5447 | dcb->entries = 0; | ||
| 5448 | |||
| 5449 | return false; | ||
| 5450 | } | ||
| 5451 | /* most of the below is a "best guess" atm */ | ||
| 5452 | entry->type = conn & 0xf; | ||
| 5453 | if (entry->type == 2) | ||
| 5454 | /* another way of specifying straps based lvds... */ | ||
| 5455 | entry->type = OUTPUT_LVDS; | 5414 | entry->type = OUTPUT_LVDS; |
| 5456 | if (entry->type == 4) { /* digital */ | 5415 | break; |
| 5457 | if (conn & 0x10) | 5416 | case 4: |
| 5458 | entry->type = OUTPUT_LVDS; | 5417 | switch ((conn & 0x000000f0) >> 4) { |
| 5459 | else | 5418 | case 0: |
| 5460 | entry->type = OUTPUT_TMDS; | 5419 | entry->type = OUTPUT_TMDS; |
| 5420 | break; | ||
| 5421 | case 1: | ||
| 5422 | entry->type = OUTPUT_LVDS; | ||
| 5423 | break; | ||
| 5424 | default: | ||
| 5425 | NV_ERROR(dev, "Unknown DCB subtype 4/%d\n", | ||
| 5426 | (conn & 0x000000f0) >> 4); | ||
| 5427 | return false; | ||
| 5428 | } | ||
| 5429 | break; | ||
| 5430 | default: | ||
| 5431 | NV_ERROR(dev, "Unknown DCB type %d\n", conn & 0x0000000f); | ||
| 5432 | return false; | ||
| 5461 | } | 5433 | } |
| 5462 | /* what's in bits 5-13? could be some encoder maker thing, in tv case */ | 5434 | |
| 5463 | entry->i2c_index = (conn >> 14) & 0xf; | 5435 | entry->i2c_index = (conn & 0x0003c000) >> 14; |
| 5464 | /* raw heads field is in range 0-1, so move to 1-2 */ | 5436 | entry->heads = ((conn & 0x001c0000) >> 18) + 1; |
| 5465 | entry->heads = ((conn >> 18) & 0x7) + 1; | 5437 | entry->or = entry->heads; /* same as heads, hopefully safe enough */ |
| 5466 | entry->location = (conn >> 21) & 0xf; | 5438 | entry->location = (conn & 0x01e00000) >> 21; |
| 5467 | /* unused: entry->bus = (conn >> 25) & 0x7; */ | 5439 | entry->bus = (conn & 0x0e000000) >> 25; |
| 5468 | /* set or to be same as heads -- hopefully safe enough */ | ||
| 5469 | entry->or = entry->heads; | ||
| 5470 | entry->duallink_possible = false; | 5440 | entry->duallink_possible = false; |
| 5471 | 5441 | ||
| 5472 | switch (entry->type) { | 5442 | switch (entry->type) { |
| 5473 | case OUTPUT_ANALOG: | 5443 | case OUTPUT_ANALOG: |
| 5474 | entry->crtconf.maxfreq = (conf & 0xffff) * 10; | 5444 | entry->crtconf.maxfreq = (conf & 0xffff) * 10; |
| 5475 | break; | 5445 | break; |
| 5476 | case OUTPUT_LVDS: | 5446 | case OUTPUT_TV: |
| 5477 | /* | 5447 | entry->tvconf.has_component_output = false; |
| 5478 | * This is probably buried in conn's unknown bits. | ||
| 5479 | * This will upset EDID-ful models, if they exist | ||
| 5480 | */ | ||
| 5481 | entry->lvdsconf.use_straps_for_mode = true; | ||
| 5482 | entry->lvdsconf.use_power_scripts = true; | ||
| 5483 | break; | 5448 | break; |
| 5484 | case OUTPUT_TMDS: | 5449 | case OUTPUT_TMDS: |
| 5485 | /* | 5450 | /* |
| @@ -5488,8 +5453,12 @@ parse_dcb15_entry(struct drm_device *dev, struct parsed_dcb *dcb, | |||
| 5488 | */ | 5453 | */ |
| 5489 | fabricate_vga_output(dcb, entry->i2c_index, entry->heads); | 5454 | fabricate_vga_output(dcb, entry->i2c_index, entry->heads); |
| 5490 | break; | 5455 | break; |
| 5491 | case OUTPUT_TV: | 5456 | case OUTPUT_LVDS: |
| 5492 | entry->tvconf.has_component_output = false; | 5457 | if ((conn & 0x00003f00) != 0x10) |
| 5458 | entry->lvdsconf.use_straps_for_mode = true; | ||
| 5459 | entry->lvdsconf.use_power_scripts = true; | ||
| 5460 | break; | ||
| 5461 | default: | ||
| 5493 | break; | 5462 | break; |
| 5494 | } | 5463 | } |
| 5495 | 5464 | ||
| @@ -5564,11 +5533,13 @@ void merge_like_dcb_entries(struct drm_device *dev, struct parsed_dcb *dcb) | |||
| 5564 | dcb->entries = newentries; | 5533 | dcb->entries = newentries; |
| 5565 | } | 5534 | } |
| 5566 | 5535 | ||
| 5567 | static int parse_dcb_table(struct drm_device *dev, struct nvbios *bios, bool twoHeads) | 5536 | static int |
| 5537 | parse_dcb_table(struct drm_device *dev, struct nvbios *bios, bool twoHeads) | ||
| 5568 | { | 5538 | { |
| 5539 | struct drm_nouveau_private *dev_priv = dev->dev_private; | ||
| 5569 | struct bios_parsed_dcb *bdcb = &bios->bdcb; | 5540 | struct bios_parsed_dcb *bdcb = &bios->bdcb; |
| 5570 | struct parsed_dcb *dcb; | 5541 | struct parsed_dcb *dcb; |
| 5571 | uint16_t dcbptr, i2ctabptr = 0; | 5542 | uint16_t dcbptr = 0, i2ctabptr = 0; |
| 5572 | uint8_t *dcbtable; | 5543 | uint8_t *dcbtable; |
| 5573 | uint8_t headerlen = 0x4, entries = DCB_MAX_NUM_ENTRIES; | 5544 | uint8_t headerlen = 0x4, entries = DCB_MAX_NUM_ENTRIES; |
| 5574 | bool configblock = true; | 5545 | bool configblock = true; |
| @@ -5579,16 +5550,18 @@ static int parse_dcb_table(struct drm_device *dev, struct nvbios *bios, bool two | |||
| 5579 | dcb->entries = 0; | 5550 | dcb->entries = 0; |
| 5580 | 5551 | ||
| 5581 | /* get the offset from 0x36 */ | 5552 | /* get the offset from 0x36 */ |
| 5582 | dcbptr = ROM16(bios->data[0x36]); | 5553 | if (dev_priv->card_type > NV_04) { |
| 5554 | dcbptr = ROM16(bios->data[0x36]); | ||
| 5555 | if (dcbptr == 0x0000) | ||
| 5556 | NV_WARN(dev, "No output data (DCB) found in BIOS\n"); | ||
| 5557 | } | ||
| 5583 | 5558 | ||
| 5559 | /* this situation likely means a really old card, pre DCB */ | ||
| 5584 | if (dcbptr == 0x0) { | 5560 | if (dcbptr == 0x0) { |
| 5585 | NV_WARN(dev, "No output data (DCB) found in BIOS, " | 5561 | NV_INFO(dev, "Assuming a CRT output exists\n"); |
| 5586 | "assuming a CRT output exists\n"); | ||
| 5587 | /* this situation likely means a really old card, pre DCB */ | ||
| 5588 | fabricate_vga_output(dcb, LEGACY_I2C_CRT, 1); | 5562 | fabricate_vga_output(dcb, LEGACY_I2C_CRT, 1); |
| 5589 | 5563 | ||
| 5590 | if (nv04_tv_identify(dev, | 5564 | if (nv04_tv_identify(dev, bios->legacy.i2c_indices.tv) >= 0) |
| 5591 | bios->legacy.i2c_indices.tv) >= 0) | ||
| 5592 | fabricate_tv_output(dcb, twoHeads); | 5565 | fabricate_tv_output(dcb, twoHeads); |
| 5593 | 5566 | ||
| 5594 | return 0; | 5567 | return 0; |
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index e342a418d434..db0ed4c13f98 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c | |||
| @@ -469,6 +469,8 @@ nouveau_bo_move_accel_cleanup(struct nouveau_channel *chan, | |||
| 469 | 469 | ||
| 470 | ret = ttm_bo_move_accel_cleanup(&nvbo->bo, fence, NULL, | 470 | ret = ttm_bo_move_accel_cleanup(&nvbo->bo, fence, NULL, |
| 471 | evict, no_wait, new_mem); | 471 | evict, no_wait, new_mem); |
| 472 | if (nvbo->channel && nvbo->channel != chan) | ||
| 473 | ret = nouveau_fence_wait(fence, NULL, false, false); | ||
| 472 | nouveau_fence_unref((void *)&fence); | 474 | nouveau_fence_unref((void *)&fence); |
| 473 | return ret; | 475 | return ret; |
| 474 | } | 476 | } |
diff --git a/drivers/gpu/drm/nouveau/nouveau_connector.c b/drivers/gpu/drm/nouveau/nouveau_connector.c index 5a10deb8bdbd..7e6d673f3a23 100644 --- a/drivers/gpu/drm/nouveau/nouveau_connector.c +++ b/drivers/gpu/drm/nouveau/nouveau_connector.c | |||
| @@ -24,9 +24,12 @@ | |||
| 24 | * | 24 | * |
| 25 | */ | 25 | */ |
| 26 | 26 | ||
| 27 | #include <acpi/button.h> | ||
| 28 | |||
| 27 | #include "drmP.h" | 29 | #include "drmP.h" |
| 28 | #include "drm_edid.h" | 30 | #include "drm_edid.h" |
| 29 | #include "drm_crtc_helper.h" | 31 | #include "drm_crtc_helper.h" |
| 32 | |||
| 30 | #include "nouveau_reg.h" | 33 | #include "nouveau_reg.h" |
| 31 | #include "nouveau_drv.h" | 34 | #include "nouveau_drv.h" |
| 32 | #include "nouveau_encoder.h" | 35 | #include "nouveau_encoder.h" |
| @@ -83,14 +86,16 @@ nouveau_encoder_connector_get(struct nouveau_encoder *encoder) | |||
| 83 | static void | 86 | static void |
| 84 | nouveau_connector_destroy(struct drm_connector *drm_connector) | 87 | nouveau_connector_destroy(struct drm_connector *drm_connector) |
| 85 | { | 88 | { |
| 86 | struct nouveau_connector *connector = nouveau_connector(drm_connector); | 89 | struct nouveau_connector *nv_connector = |
| 87 | struct drm_device *dev = connector->base.dev; | 90 | nouveau_connector(drm_connector); |
| 91 | struct drm_device *dev = nv_connector->base.dev; | ||
| 88 | 92 | ||
| 89 | NV_DEBUG_KMS(dev, "\n"); | 93 | NV_DEBUG_KMS(dev, "\n"); |
| 90 | 94 | ||
| 91 | if (!connector) | 95 | if (!nv_connector) |
| 92 | return; | 96 | return; |
| 93 | 97 | ||
| 98 | kfree(nv_connector->edid); | ||
| 94 | drm_sysfs_connector_remove(drm_connector); | 99 | drm_sysfs_connector_remove(drm_connector); |
| 95 | drm_connector_cleanup(drm_connector); | 100 | drm_connector_cleanup(drm_connector); |
| 96 | kfree(drm_connector); | 101 | kfree(drm_connector); |
| @@ -233,10 +238,21 @@ nouveau_connector_detect(struct drm_connector *connector) | |||
| 233 | if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS) | 238 | if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS) |
| 234 | nv_encoder = find_encoder_by_type(connector, OUTPUT_LVDS); | 239 | nv_encoder = find_encoder_by_type(connector, OUTPUT_LVDS); |
| 235 | if (nv_encoder && nv_connector->native_mode) { | 240 | if (nv_encoder && nv_connector->native_mode) { |
| 241 | #ifdef CONFIG_ACPI | ||
| 242 | if (!nouveau_ignorelid && !acpi_lid_open()) | ||
| 243 | return connector_status_disconnected; | ||
| 244 | #endif | ||
| 236 | nouveau_connector_set_encoder(connector, nv_encoder); | 245 | nouveau_connector_set_encoder(connector, nv_encoder); |
| 237 | return connector_status_connected; | 246 | return connector_status_connected; |
| 238 | } | 247 | } |
| 239 | 248 | ||
| 249 | /* Cleanup the previous EDID block. */ | ||
| 250 | if (nv_connector->edid) { | ||
| 251 | drm_mode_connector_update_edid_property(connector, NULL); | ||
| 252 | kfree(nv_connector->edid); | ||
| 253 | nv_connector->edid = NULL; | ||
| 254 | } | ||
| 255 | |||
| 240 | i2c = nouveau_connector_ddc_detect(connector, &nv_encoder); | 256 | i2c = nouveau_connector_ddc_detect(connector, &nv_encoder); |
| 241 | if (i2c) { | 257 | if (i2c) { |
| 242 | nouveau_connector_ddc_prepare(connector, &flags); | 258 | nouveau_connector_ddc_prepare(connector, &flags); |
| @@ -247,7 +263,7 @@ nouveau_connector_detect(struct drm_connector *connector) | |||
| 247 | if (!nv_connector->edid) { | 263 | if (!nv_connector->edid) { |
| 248 | NV_ERROR(dev, "DDC responded, but no EDID for %s\n", | 264 | NV_ERROR(dev, "DDC responded, but no EDID for %s\n", |
| 249 | drm_get_connector_name(connector)); | 265 | drm_get_connector_name(connector)); |
| 250 | return connector_status_disconnected; | 266 | goto detect_analog; |
| 251 | } | 267 | } |
| 252 | 268 | ||
| 253 | if (nv_encoder->dcb->type == OUTPUT_DP && | 269 | if (nv_encoder->dcb->type == OUTPUT_DP && |
| @@ -281,6 +297,7 @@ nouveau_connector_detect(struct drm_connector *connector) | |||
| 281 | return connector_status_connected; | 297 | return connector_status_connected; |
| 282 | } | 298 | } |
| 283 | 299 | ||
| 300 | detect_analog: | ||
| 284 | nv_encoder = find_encoder_by_type(connector, OUTPUT_ANALOG); | 301 | nv_encoder = find_encoder_by_type(connector, OUTPUT_ANALOG); |
| 285 | if (!nv_encoder) | 302 | if (!nv_encoder) |
| 286 | nv_encoder = find_encoder_by_type(connector, OUTPUT_TV); | 303 | nv_encoder = find_encoder_by_type(connector, OUTPUT_TV); |
| @@ -687,8 +704,12 @@ nouveau_connector_create_lvds(struct drm_device *dev, | |||
| 687 | */ | 704 | */ |
| 688 | if (!nv_connector->edid && !nv_connector->native_mode && | 705 | if (!nv_connector->edid && !nv_connector->native_mode && |
| 689 | !dev_priv->VBIOS.pub.fp_no_ddc) { | 706 | !dev_priv->VBIOS.pub.fp_no_ddc) { |
| 690 | nv_connector->edid = | 707 | struct edid *edid = |
| 691 | (struct edid *)nouveau_bios_embedded_edid(dev); | 708 | (struct edid *)nouveau_bios_embedded_edid(dev); |
| 709 | if (edid) { | ||
| 710 | nv_connector->edid = kmalloc(EDID_LENGTH, GFP_KERNEL); | ||
| 711 | *(nv_connector->edid) = *edid; | ||
| 712 | } | ||
| 692 | } | 713 | } |
| 693 | 714 | ||
| 694 | if (!nv_connector->edid) | 715 | if (!nv_connector->edid) |
diff --git a/drivers/gpu/drm/nouveau/nouveau_dma.c b/drivers/gpu/drm/nouveau/nouveau_dma.c index 7afbe8b40d51..50d9e67745af 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dma.c +++ b/drivers/gpu/drm/nouveau/nouveau_dma.c | |||
| @@ -126,47 +126,52 @@ OUT_RINGp(struct nouveau_channel *chan, const void *data, unsigned nr_dwords) | |||
| 126 | chan->dma.cur += nr_dwords; | 126 | chan->dma.cur += nr_dwords; |
| 127 | } | 127 | } |
| 128 | 128 | ||
| 129 | static inline bool | 129 | /* Fetch and adjust GPU GET pointer |
| 130 | READ_GET(struct nouveau_channel *chan, uint32_t *get) | 130 | * |
| 131 | * Returns: | ||
| 132 | * value >= 0, the adjusted GET pointer | ||
| 133 | * -EINVAL if GET pointer currently outside main push buffer | ||
| 134 | * -EBUSY if timeout exceeded | ||
| 135 | */ | ||
| 136 | static inline int | ||
| 137 | READ_GET(struct nouveau_channel *chan, uint32_t *prev_get, uint32_t *timeout) | ||
| 131 | { | 138 | { |
| 132 | uint32_t val; | 139 | uint32_t val; |
| 133 | 140 | ||
| 134 | val = nvchan_rd32(chan, chan->user_get); | 141 | val = nvchan_rd32(chan, chan->user_get); |
| 135 | if (val < chan->pushbuf_base || | 142 | |
| 136 | val > chan->pushbuf_base + (chan->dma.max << 2)) { | 143 | /* reset counter as long as GET is still advancing, this is |
| 137 | /* meaningless to dma_wait() except to know whether the | 144 | * to avoid misdetecting a GPU lockup if the GPU happens to |
| 138 | * GPU has stalled or not | 145 | * just be processing an operation that takes a long time |
| 139 | */ | 146 | */ |
| 140 | *get = val; | 147 | if (val != *prev_get) { |
| 141 | return false; | 148 | *prev_get = val; |
| 149 | *timeout = 0; | ||
| 150 | } | ||
| 151 | |||
| 152 | if ((++*timeout & 0xff) == 0) { | ||
| 153 | DRM_UDELAY(1); | ||
| 154 | if (*timeout > 100000) | ||
| 155 | return -EBUSY; | ||
| 142 | } | 156 | } |
| 143 | 157 | ||
| 144 | *get = (val - chan->pushbuf_base) >> 2; | 158 | if (val < chan->pushbuf_base || |
| 145 | return true; | 159 | val > chan->pushbuf_base + (chan->dma.max << 2)) |
| 160 | return -EINVAL; | ||
| 161 | |||
| 162 | return (val - chan->pushbuf_base) >> 2; | ||
| 146 | } | 163 | } |
| 147 | 164 | ||
| 148 | int | 165 | int |
| 149 | nouveau_dma_wait(struct nouveau_channel *chan, int size) | 166 | nouveau_dma_wait(struct nouveau_channel *chan, int size) |
| 150 | { | 167 | { |
| 151 | uint32_t get, prev_get = 0, cnt = 0; | 168 | uint32_t prev_get = 0, cnt = 0; |
| 152 | bool get_valid; | 169 | int get; |
| 153 | 170 | ||
| 154 | while (chan->dma.free < size) { | 171 | while (chan->dma.free < size) { |
| 155 | /* reset counter as long as GET is still advancing, this is | 172 | get = READ_GET(chan, &prev_get, &cnt); |
| 156 | * to avoid misdetecting a GPU lockup if the GPU happens to | 173 | if (unlikely(get == -EBUSY)) |
| 157 | * just be processing an operation that takes a long time | 174 | return -EBUSY; |
| 158 | */ | ||
| 159 | get_valid = READ_GET(chan, &get); | ||
| 160 | if (get != prev_get) { | ||
| 161 | prev_get = get; | ||
| 162 | cnt = 0; | ||
| 163 | } | ||
| 164 | |||
| 165 | if ((++cnt & 0xff) == 0) { | ||
| 166 | DRM_UDELAY(1); | ||
| 167 | if (cnt > 100000) | ||
| 168 | return -EBUSY; | ||
| 169 | } | ||
| 170 | 175 | ||
| 171 | /* loop until we have a usable GET pointer. the value | 176 | /* loop until we have a usable GET pointer. the value |
| 172 | * we read from the GPU may be outside the main ring if | 177 | * we read from the GPU may be outside the main ring if |
| @@ -177,7 +182,7 @@ nouveau_dma_wait(struct nouveau_channel *chan, int size) | |||
| 177 | * from the SKIPS area, so the code below doesn't have to deal | 182 | * from the SKIPS area, so the code below doesn't have to deal |
| 178 | * with some fun corner cases. | 183 | * with some fun corner cases. |
| 179 | */ | 184 | */ |
| 180 | if (!get_valid || get < NOUVEAU_DMA_SKIPS) | 185 | if (unlikely(get == -EINVAL) || get < NOUVEAU_DMA_SKIPS) |
| 181 | continue; | 186 | continue; |
| 182 | 187 | ||
| 183 | if (get <= chan->dma.cur) { | 188 | if (get <= chan->dma.cur) { |
| @@ -203,6 +208,19 @@ nouveau_dma_wait(struct nouveau_channel *chan, int size) | |||
| 203 | * after processing the currently pending commands. | 208 | * after processing the currently pending commands. |
| 204 | */ | 209 | */ |
| 205 | OUT_RING(chan, chan->pushbuf_base | 0x20000000); | 210 | OUT_RING(chan, chan->pushbuf_base | 0x20000000); |
| 211 | |||
| 212 | /* wait for GET to depart from the skips area. | ||
| 213 | * prevents writing GET==PUT and causing a race | ||
| 214 | * condition that causes us to think the GPU is | ||
| 215 | * idle when it's not. | ||
| 216 | */ | ||
| 217 | do { | ||
| 218 | get = READ_GET(chan, &prev_get, &cnt); | ||
| 219 | if (unlikely(get == -EBUSY)) | ||
| 220 | return -EBUSY; | ||
| 221 | if (unlikely(get == -EINVAL)) | ||
| 222 | continue; | ||
| 223 | } while (get <= NOUVEAU_DMA_SKIPS); | ||
| 206 | WRITE_PUT(NOUVEAU_DMA_SKIPS); | 224 | WRITE_PUT(NOUVEAU_DMA_SKIPS); |
| 207 | 225 | ||
| 208 | /* we're now submitting commands at the start of | 226 | /* we're now submitting commands at the start of |
diff --git a/drivers/gpu/drm/nouveau/nouveau_dp.c b/drivers/gpu/drm/nouveau/nouveau_dp.c index 9e2926c48579..dd4937224220 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dp.c +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c | |||
| @@ -490,7 +490,8 @@ nouveau_dp_auxch(struct nouveau_i2c_chan *auxch, int cmd, int addr, | |||
| 490 | if (!nv_wait(NV50_AUXCH_CTRL(index), 0x00010000, 0x00000000)) { | 490 | if (!nv_wait(NV50_AUXCH_CTRL(index), 0x00010000, 0x00000000)) { |
| 491 | NV_ERROR(dev, "expected bit 16 == 0, got 0x%08x\n", | 491 | NV_ERROR(dev, "expected bit 16 == 0, got 0x%08x\n", |
| 492 | nv_rd32(dev, NV50_AUXCH_CTRL(index))); | 492 | nv_rd32(dev, NV50_AUXCH_CTRL(index))); |
| 493 | return -EBUSY; | 493 | ret = -EBUSY; |
| 494 | goto out; | ||
| 494 | } | 495 | } |
| 495 | 496 | ||
| 496 | udelay(400); | 497 | udelay(400); |
| @@ -501,6 +502,11 @@ nouveau_dp_auxch(struct nouveau_i2c_chan *auxch, int cmd, int addr, | |||
| 501 | break; | 502 | break; |
| 502 | } | 503 | } |
| 503 | 504 | ||
| 505 | if ((stat & NV50_AUXCH_STAT_COUNT) != data_nr) { | ||
| 506 | ret = -EREMOTEIO; | ||
| 507 | goto out; | ||
| 508 | } | ||
| 509 | |||
| 504 | if (cmd & 1) { | 510 | if (cmd & 1) { |
| 505 | for (i = 0; i < 4; i++) { | 511 | for (i = 0; i < 4; i++) { |
| 506 | data32[i] = nv_rd32(dev, NV50_AUXCH_DATA_IN(index, i)); | 512 | data32[i] = nv_rd32(dev, NV50_AUXCH_DATA_IN(index, i)); |
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c index 06eb993e0883..343ab7f17ccc 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.c +++ b/drivers/gpu/drm/nouveau/nouveau_drv.c | |||
| @@ -71,6 +71,10 @@ MODULE_PARM_DESC(uscript_tmds, "TMDS output script table ID (>=GeForce 8)"); | |||
| 71 | int nouveau_uscript_tmds = -1; | 71 | int nouveau_uscript_tmds = -1; |
| 72 | module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400); | 72 | module_param_named(uscript_tmds, nouveau_uscript_tmds, int, 0400); |
| 73 | 73 | ||
| 74 | MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status"); | ||
| 75 | int nouveau_ignorelid = 0; | ||
| 76 | module_param_named(ignorelid, nouveau_ignorelid, int, 0400); | ||
| 77 | |||
| 74 | MODULE_PARM_DESC(tv_norm, "Default TV norm.\n" | 78 | MODULE_PARM_DESC(tv_norm, "Default TV norm.\n" |
| 75 | "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n" | 79 | "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n" |
| 76 | "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n" | 80 | "\t\t\thd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.\n" |
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 026419fe8791..6b9690418bc7 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h | |||
| @@ -509,6 +509,8 @@ struct drm_nouveau_private { | |||
| 509 | void __iomem *ramin; | 509 | void __iomem *ramin; |
| 510 | uint32_t ramin_size; | 510 | uint32_t ramin_size; |
| 511 | 511 | ||
| 512 | struct nouveau_bo *vga_ram; | ||
| 513 | |||
| 512 | struct workqueue_struct *wq; | 514 | struct workqueue_struct *wq; |
| 513 | struct work_struct irq_work; | 515 | struct work_struct irq_work; |
| 514 | 516 | ||
| @@ -675,6 +677,7 @@ extern char *nouveau_tv_norm; | |||
| 675 | extern int nouveau_reg_debug; | 677 | extern int nouveau_reg_debug; |
| 676 | extern char *nouveau_vbios; | 678 | extern char *nouveau_vbios; |
| 677 | extern int nouveau_ctxfw; | 679 | extern int nouveau_ctxfw; |
| 680 | extern int nouveau_ignorelid; | ||
| 678 | 681 | ||
| 679 | /* nouveau_state.c */ | 682 | /* nouveau_state.c */ |
| 680 | extern void nouveau_preclose(struct drm_device *dev, struct drm_file *); | 683 | extern void nouveau_preclose(struct drm_device *dev, struct drm_file *); |
diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c index 2009db2426c3..6ac804b0c9f9 100644 --- a/drivers/gpu/drm/nouveau/nouveau_gem.c +++ b/drivers/gpu/drm/nouveau/nouveau_gem.c | |||
| @@ -321,6 +321,7 @@ retry: | |||
| 321 | else { | 321 | else { |
| 322 | NV_ERROR(dev, "invalid valid domains: 0x%08x\n", | 322 | NV_ERROR(dev, "invalid valid domains: 0x%08x\n", |
| 323 | b->valid_domains); | 323 | b->valid_domains); |
| 324 | list_add_tail(&nvbo->entry, &op->both_list); | ||
| 324 | validate_fini(op, NULL); | 325 | validate_fini(op, NULL); |
| 325 | return -EINVAL; | 326 | return -EINVAL; |
| 326 | } | 327 | } |
| @@ -466,13 +467,14 @@ u_memcpya(uint64_t user, unsigned nmemb, unsigned size) | |||
| 466 | static int | 467 | static int |
| 467 | nouveau_gem_pushbuf_reloc_apply(struct nouveau_channel *chan, int nr_bo, | 468 | nouveau_gem_pushbuf_reloc_apply(struct nouveau_channel *chan, int nr_bo, |
| 468 | struct drm_nouveau_gem_pushbuf_bo *bo, | 469 | struct drm_nouveau_gem_pushbuf_bo *bo, |
| 469 | int nr_relocs, uint64_t ptr_relocs, | 470 | unsigned nr_relocs, uint64_t ptr_relocs, |
| 470 | int nr_dwords, int first_dword, | 471 | unsigned nr_dwords, unsigned first_dword, |
| 471 | uint32_t *pushbuf, bool is_iomem) | 472 | uint32_t *pushbuf, bool is_iomem) |
| 472 | { | 473 | { |
| 473 | struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL; | 474 | struct drm_nouveau_gem_pushbuf_reloc *reloc = NULL; |
| 474 | struct drm_device *dev = chan->dev; | 475 | struct drm_device *dev = chan->dev; |
| 475 | int ret = 0, i; | 476 | int ret = 0; |
| 477 | unsigned i; | ||
| 476 | 478 | ||
| 477 | reloc = u_memcpya(ptr_relocs, nr_relocs, sizeof(*reloc)); | 479 | reloc = u_memcpya(ptr_relocs, nr_relocs, sizeof(*reloc)); |
| 478 | if (IS_ERR(reloc)) | 480 | if (IS_ERR(reloc)) |
| @@ -667,6 +669,18 @@ nouveau_gem_ioctl_pushbuf_call(struct drm_device *dev, void *data, | |||
| 667 | } | 669 | } |
| 668 | pbbo = nouveau_gem_object(gem); | 670 | pbbo = nouveau_gem_object(gem); |
| 669 | 671 | ||
| 672 | if ((req->offset & 3) || req->nr_dwords < 2 || | ||
| 673 | (unsigned long)req->offset > (unsigned long)pbbo->bo.mem.size || | ||
| 674 | (unsigned long)req->nr_dwords > | ||
| 675 | ((unsigned long)(pbbo->bo.mem.size - req->offset ) >> 2)) { | ||
| 676 | NV_ERROR(dev, "pb call misaligned or out of bounds: " | ||
| 677 | "%d + %d * 4 > %ld\n", | ||
| 678 | req->offset, req->nr_dwords, pbbo->bo.mem.size); | ||
| 679 | ret = -EINVAL; | ||
| 680 | drm_gem_object_unreference(gem); | ||
| 681 | goto out; | ||
| 682 | } | ||
| 683 | |||
| 670 | ret = ttm_bo_reserve(&pbbo->bo, false, false, true, | 684 | ret = ttm_bo_reserve(&pbbo->bo, false, false, true, |
| 671 | chan->fence.sequence); | 685 | chan->fence.sequence); |
| 672 | if (ret) { | 686 | if (ret) { |
diff --git a/drivers/gpu/drm/nouveau/nouveau_irq.c b/drivers/gpu/drm/nouveau/nouveau_irq.c index 919a619ca7fa..3b9bad66162a 100644 --- a/drivers/gpu/drm/nouveau/nouveau_irq.c +++ b/drivers/gpu/drm/nouveau/nouveau_irq.c | |||
| @@ -483,6 +483,13 @@ nouveau_pgraph_intr_error(struct drm_device *dev, uint32_t nsource) | |||
| 483 | if (nsource & NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD) { | 483 | if (nsource & NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD) { |
| 484 | if (nouveau_pgraph_intr_swmthd(dev, &trap)) | 484 | if (nouveau_pgraph_intr_swmthd(dev, &trap)) |
| 485 | unhandled = 1; | 485 | unhandled = 1; |
| 486 | } else if (nsource & NV03_PGRAPH_NSOURCE_DMA_VTX_PROTECTION) { | ||
| 487 | uint32_t v = nv_rd32(dev, 0x402000); | ||
| 488 | nv_wr32(dev, 0x402000, v); | ||
| 489 | |||
| 490 | /* dump the error anyway for now: it's useful for | ||
| 491 | Gallium development */ | ||
| 492 | unhandled = 1; | ||
| 486 | } else { | 493 | } else { |
| 487 | unhandled = 1; | 494 | unhandled = 1; |
| 488 | } | 495 | } |
diff --git a/drivers/gpu/drm/nouveau/nouveau_mem.c b/drivers/gpu/drm/nouveau/nouveau_mem.c index fb9bdd6edf1f..8f3a12f614ed 100644 --- a/drivers/gpu/drm/nouveau/nouveau_mem.c +++ b/drivers/gpu/drm/nouveau/nouveau_mem.c | |||
| @@ -383,9 +383,8 @@ void nouveau_mem_close(struct drm_device *dev) | |||
| 383 | { | 383 | { |
| 384 | struct drm_nouveau_private *dev_priv = dev->dev_private; | 384 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 385 | 385 | ||
| 386 | if (dev_priv->ttm.bdev.man[TTM_PL_PRIV0].has_type) | 386 | nouveau_bo_unpin(dev_priv->vga_ram); |
| 387 | ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_PRIV0); | 387 | nouveau_bo_ref(NULL, &dev_priv->vga_ram); |
| 388 | ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM); | ||
| 389 | 388 | ||
| 390 | ttm_bo_device_release(&dev_priv->ttm.bdev); | 389 | ttm_bo_device_release(&dev_priv->ttm.bdev); |
| 391 | 390 | ||
| @@ -622,6 +621,15 @@ nouveau_mem_init(struct drm_device *dev) | |||
| 622 | return ret; | 621 | return ret; |
| 623 | } | 622 | } |
| 624 | 623 | ||
| 624 | ret = nouveau_bo_new(dev, NULL, 256*1024, 0, TTM_PL_FLAG_VRAM, | ||
| 625 | 0, 0, true, true, &dev_priv->vga_ram); | ||
| 626 | if (ret == 0) | ||
| 627 | ret = nouveau_bo_pin(dev_priv->vga_ram, TTM_PL_FLAG_VRAM); | ||
| 628 | if (ret) { | ||
| 629 | NV_WARN(dev, "failed to reserve VGA memory\n"); | ||
| 630 | nouveau_bo_ref(NULL, &dev_priv->vga_ram); | ||
| 631 | } | ||
| 632 | |||
| 625 | /* GART */ | 633 | /* GART */ |
| 626 | #if !defined(__powerpc__) && !defined(__ia64__) | 634 | #if !defined(__powerpc__) && !defined(__ia64__) |
| 627 | if (drm_device_is_agp(dev) && dev->agp) { | 635 | if (drm_device_is_agp(dev) && dev->agp) { |
| @@ -653,6 +661,7 @@ nouveau_mem_init(struct drm_device *dev) | |||
| 653 | dev_priv->fb_mtrr = drm_mtrr_add(drm_get_resource_start(dev, 1), | 661 | dev_priv->fb_mtrr = drm_mtrr_add(drm_get_resource_start(dev, 1), |
| 654 | drm_get_resource_len(dev, 1), | 662 | drm_get_resource_len(dev, 1), |
| 655 | DRM_MTRR_WC); | 663 | DRM_MTRR_WC); |
| 664 | |||
| 656 | return 0; | 665 | return 0; |
| 657 | } | 666 | } |
| 658 | 667 | ||
diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c index 09b9a46dfc0e..f2d0187ba152 100644 --- a/drivers/gpu/drm/nouveau/nouveau_state.c +++ b/drivers/gpu/drm/nouveau/nouveau_state.c | |||
| @@ -525,6 +525,7 @@ static void nouveau_card_takedown(struct drm_device *dev) | |||
| 525 | engine->mc.takedown(dev); | 525 | engine->mc.takedown(dev); |
| 526 | 526 | ||
| 527 | mutex_lock(&dev->struct_mutex); | 527 | mutex_lock(&dev->struct_mutex); |
| 528 | ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM); | ||
| 528 | ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_TT); | 529 | ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_TT); |
| 529 | mutex_unlock(&dev->struct_mutex); | 530 | mutex_unlock(&dev->struct_mutex); |
| 530 | nouveau_sgdma_takedown(dev); | 531 | nouveau_sgdma_takedown(dev); |
diff --git a/drivers/gpu/drm/nouveau/nv04_instmem.c b/drivers/gpu/drm/nouveau/nv04_instmem.c index a20c206625a2..a3b9563a6f60 100644 --- a/drivers/gpu/drm/nouveau/nv04_instmem.c +++ b/drivers/gpu/drm/nouveau/nv04_instmem.c | |||
| @@ -30,7 +30,7 @@ nv04_instmem_determine_amount(struct drm_device *dev) | |||
| 30 | * of vram. For now, only reserve a small piece until we know | 30 | * of vram. For now, only reserve a small piece until we know |
| 31 | * more about what each chipset requires. | 31 | * more about what each chipset requires. |
| 32 | */ | 32 | */ |
| 33 | switch (dev_priv->chipset & 0xf0) { | 33 | switch (dev_priv->chipset) { |
| 34 | case 0x40: | 34 | case 0x40: |
| 35 | case 0x47: | 35 | case 0x47: |
| 36 | case 0x49: | 36 | case 0x49: |
diff --git a/drivers/gpu/drm/nouveau/nv50_crtc.c b/drivers/gpu/drm/nouveau/nv50_crtc.c index 118d3285fd8c..40b7360841f8 100644 --- a/drivers/gpu/drm/nouveau/nv50_crtc.c +++ b/drivers/gpu/drm/nouveau/nv50_crtc.c | |||
| @@ -432,6 +432,7 @@ nv50_crtc_prepare(struct drm_crtc *crtc) | |||
| 432 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); | 432 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 433 | struct drm_device *dev = crtc->dev; | 433 | struct drm_device *dev = crtc->dev; |
| 434 | struct drm_encoder *encoder; | 434 | struct drm_encoder *encoder; |
| 435 | uint32_t dac = 0, sor = 0; | ||
| 435 | 436 | ||
| 436 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); | 437 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
| 437 | 438 | ||
| @@ -439,9 +440,28 @@ nv50_crtc_prepare(struct drm_crtc *crtc) | |||
| 439 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | 440 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 440 | struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); | 441 | struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); |
| 441 | 442 | ||
| 442 | if (drm_helper_encoder_in_use(encoder)) | 443 | if (!drm_helper_encoder_in_use(encoder)) |
| 443 | continue; | 444 | continue; |
| 444 | 445 | ||
| 446 | if (nv_encoder->dcb->type == OUTPUT_ANALOG || | ||
| 447 | nv_encoder->dcb->type == OUTPUT_TV) | ||
| 448 | dac |= (1 << nv_encoder->or); | ||
| 449 | else | ||
| 450 | sor |= (1 << nv_encoder->or); | ||
| 451 | } | ||
| 452 | |||
| 453 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | ||
| 454 | struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); | ||
| 455 | |||
| 456 | if (nv_encoder->dcb->type == OUTPUT_ANALOG || | ||
| 457 | nv_encoder->dcb->type == OUTPUT_TV) { | ||
| 458 | if (dac & (1 << nv_encoder->or)) | ||
| 459 | continue; | ||
| 460 | } else { | ||
| 461 | if (sor & (1 << nv_encoder->or)) | ||
| 462 | continue; | ||
| 463 | } | ||
| 464 | |||
| 445 | nv_encoder->disconnect(nv_encoder); | 465 | nv_encoder->disconnect(nv_encoder); |
| 446 | } | 466 | } |
| 447 | 467 | ||
diff --git a/drivers/gpu/drm/nouveau/nv50_fifo.c b/drivers/gpu/drm/nouveau/nv50_fifo.c index 39caf167587d..32b244bcb482 100644 --- a/drivers/gpu/drm/nouveau/nv50_fifo.c +++ b/drivers/gpu/drm/nouveau/nv50_fifo.c | |||
| @@ -272,7 +272,7 @@ nv50_fifo_create_context(struct nouveau_channel *chan) | |||
| 272 | return ret; | 272 | return ret; |
| 273 | ramfc = chan->ramfc->gpuobj; | 273 | ramfc = chan->ramfc->gpuobj; |
| 274 | 274 | ||
| 275 | ret = nouveau_gpuobj_new_ref(dev, chan, NULL, 0, 4096, 256, | 275 | ret = nouveau_gpuobj_new_ref(dev, chan, NULL, 0, 4096, 1024, |
| 276 | 0, &chan->cache); | 276 | 0, &chan->cache); |
| 277 | if (ret) | 277 | if (ret) |
| 278 | return ret; | 278 | return ret; |
diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c index ca79f32be44c..20319e59d368 100644 --- a/drivers/gpu/drm/nouveau/nv50_graph.c +++ b/drivers/gpu/drm/nouveau/nv50_graph.c | |||
| @@ -84,7 +84,7 @@ nv50_graph_init_regs__nv(struct drm_device *dev) | |||
| 84 | nv_wr32(dev, 0x400804, 0xc0000000); | 84 | nv_wr32(dev, 0x400804, 0xc0000000); |
| 85 | nv_wr32(dev, 0x406800, 0xc0000000); | 85 | nv_wr32(dev, 0x406800, 0xc0000000); |
| 86 | nv_wr32(dev, 0x400c04, 0xc0000000); | 86 | nv_wr32(dev, 0x400c04, 0xc0000000); |
| 87 | nv_wr32(dev, 0x401804, 0xc0000000); | 87 | nv_wr32(dev, 0x401800, 0xc0000000); |
| 88 | nv_wr32(dev, 0x405018, 0xc0000000); | 88 | nv_wr32(dev, 0x405018, 0xc0000000); |
| 89 | nv_wr32(dev, 0x402000, 0xc0000000); | 89 | nv_wr32(dev, 0x402000, 0xc0000000); |
| 90 | 90 | ||
| @@ -282,6 +282,7 @@ nv50_graph_unload_context(struct drm_device *dev) | |||
| 282 | return 0; | 282 | return 0; |
| 283 | inst &= NV50_PGRAPH_CTXCTL_CUR_INSTANCE; | 283 | inst &= NV50_PGRAPH_CTXCTL_CUR_INSTANCE; |
| 284 | 284 | ||
| 285 | nouveau_wait_for_idle(dev); | ||
| 285 | nv_wr32(dev, 0x400500, fifo & ~1); | 286 | nv_wr32(dev, 0x400500, fifo & ~1); |
| 286 | nv_wr32(dev, 0x400784, inst); | 287 | nv_wr32(dev, 0x400784, inst); |
| 287 | nv_wr32(dev, 0x400824, nv_rd32(dev, 0x400824) | 0x20); | 288 | nv_wr32(dev, 0x400824, nv_rd32(dev, 0x400824) | 0x20); |
diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c index e395c16d30f5..ecf1936b8224 100644 --- a/drivers/gpu/drm/nouveau/nv50_sor.c +++ b/drivers/gpu/drm/nouveau/nv50_sor.c | |||
| @@ -90,11 +90,24 @@ nv50_sor_dpms(struct drm_encoder *encoder, int mode) | |||
| 90 | { | 90 | { |
| 91 | struct drm_device *dev = encoder->dev; | 91 | struct drm_device *dev = encoder->dev; |
| 92 | struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); | 92 | struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); |
| 93 | struct drm_encoder *enc; | ||
| 93 | uint32_t val; | 94 | uint32_t val; |
| 94 | int or = nv_encoder->or; | 95 | int or = nv_encoder->or; |
| 95 | 96 | ||
| 96 | NV_DEBUG_KMS(dev, "or %d mode %d\n", or, mode); | 97 | NV_DEBUG_KMS(dev, "or %d mode %d\n", or, mode); |
| 97 | 98 | ||
| 99 | nv_encoder->last_dpms = mode; | ||
| 100 | list_for_each_entry(enc, &dev->mode_config.encoder_list, head) { | ||
| 101 | struct nouveau_encoder *nvenc = nouveau_encoder(enc); | ||
| 102 | |||
| 103 | if (nvenc == nv_encoder || | ||
| 104 | nvenc->dcb->or != nv_encoder->dcb->or) | ||
| 105 | continue; | ||
| 106 | |||
| 107 | if (nvenc->last_dpms == DRM_MODE_DPMS_ON) | ||
| 108 | return; | ||
| 109 | } | ||
| 110 | |||
| 98 | /* wait for it to be done */ | 111 | /* wait for it to be done */ |
| 99 | if (!nv_wait(NV50_PDISPLAY_SOR_DPMS_CTRL(or), | 112 | if (!nv_wait(NV50_PDISPLAY_SOR_DPMS_CTRL(or), |
| 100 | NV50_PDISPLAY_SOR_DPMS_CTRL_PENDING, 0)) { | 113 | NV50_PDISPLAY_SOR_DPMS_CTRL_PENDING, 0)) { |
diff --git a/drivers/gpu/drm/radeon/atom.c b/drivers/gpu/drm/radeon/atom.c index 388140a7e651..e3b44562d265 100644 --- a/drivers/gpu/drm/radeon/atom.c +++ b/drivers/gpu/drm/radeon/atom.c | |||
| @@ -246,6 +246,9 @@ static uint32_t atom_get_src_int(atom_exec_context *ctx, uint8_t attr, | |||
| 246 | case ATOM_WS_ATTRIBUTES: | 246 | case ATOM_WS_ATTRIBUTES: |
| 247 | val = gctx->io_attr; | 247 | val = gctx->io_attr; |
| 248 | break; | 248 | break; |
| 249 | case ATOM_WS_REGPTR: | ||
| 250 | val = gctx->reg_block; | ||
| 251 | break; | ||
| 249 | default: | 252 | default: |
| 250 | val = ctx->ws[idx]; | 253 | val = ctx->ws[idx]; |
| 251 | } | 254 | } |
| @@ -385,6 +388,32 @@ static uint32_t atom_get_src(atom_exec_context *ctx, uint8_t attr, int *ptr) | |||
| 385 | return atom_get_src_int(ctx, attr, ptr, NULL, 1); | 388 | return atom_get_src_int(ctx, attr, ptr, NULL, 1); |
| 386 | } | 389 | } |
| 387 | 390 | ||
| 391 | static uint32_t atom_get_src_direct(atom_exec_context *ctx, uint8_t align, int *ptr) | ||
| 392 | { | ||
| 393 | uint32_t val = 0xCDCDCDCD; | ||
| 394 | |||
| 395 | switch (align) { | ||
| 396 | case ATOM_SRC_DWORD: | ||
| 397 | val = U32(*ptr); | ||
| 398 | (*ptr) += 4; | ||
| 399 | break; | ||
| 400 | case ATOM_SRC_WORD0: | ||
| 401 | case ATOM_SRC_WORD8: | ||
| 402 | case ATOM_SRC_WORD16: | ||
| 403 | val = U16(*ptr); | ||
| 404 | (*ptr) += 2; | ||
| 405 | break; | ||
| 406 | case ATOM_SRC_BYTE0: | ||
| 407 | case ATOM_SRC_BYTE8: | ||
| 408 | case ATOM_SRC_BYTE16: | ||
| 409 | case ATOM_SRC_BYTE24: | ||
| 410 | val = U8(*ptr); | ||
| 411 | (*ptr)++; | ||
| 412 | break; | ||
| 413 | } | ||
| 414 | return val; | ||
| 415 | } | ||
| 416 | |||
| 388 | static uint32_t atom_get_dst(atom_exec_context *ctx, int arg, uint8_t attr, | 417 | static uint32_t atom_get_dst(atom_exec_context *ctx, int arg, uint8_t attr, |
| 389 | int *ptr, uint32_t *saved, int print) | 418 | int *ptr, uint32_t *saved, int print) |
| 390 | { | 419 | { |
| @@ -482,6 +511,9 @@ static void atom_put_dst(atom_exec_context *ctx, int arg, uint8_t attr, | |||
| 482 | case ATOM_WS_ATTRIBUTES: | 511 | case ATOM_WS_ATTRIBUTES: |
| 483 | gctx->io_attr = val; | 512 | gctx->io_attr = val; |
| 484 | break; | 513 | break; |
| 514 | case ATOM_WS_REGPTR: | ||
| 515 | gctx->reg_block = val; | ||
| 516 | break; | ||
| 485 | default: | 517 | default: |
| 486 | ctx->ws[idx] = val; | 518 | ctx->ws[idx] = val; |
| 487 | } | 519 | } |
| @@ -677,7 +709,7 @@ static void atom_op_mask(atom_exec_context *ctx, int *ptr, int arg) | |||
| 677 | SDEBUG(" dst: "); | 709 | SDEBUG(" dst: "); |
| 678 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); | 710 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); |
| 679 | SDEBUG(" src1: "); | 711 | SDEBUG(" src1: "); |
| 680 | src1 = atom_get_src(ctx, attr, ptr); | 712 | src1 = atom_get_src_direct(ctx, ((attr >> 3) & 7), ptr); |
| 681 | SDEBUG(" src2: "); | 713 | SDEBUG(" src2: "); |
| 682 | src2 = atom_get_src(ctx, attr, ptr); | 714 | src2 = atom_get_src(ctx, attr, ptr); |
| 683 | dst &= src1; | 715 | dst &= src1; |
| @@ -809,6 +841,38 @@ static void atom_op_setregblock(atom_exec_context *ctx, int *ptr, int arg) | |||
| 809 | SDEBUG(" base: 0x%04X\n", ctx->ctx->reg_block); | 841 | SDEBUG(" base: 0x%04X\n", ctx->ctx->reg_block); |
| 810 | } | 842 | } |
| 811 | 843 | ||
| 844 | static void atom_op_shift_left(atom_exec_context *ctx, int *ptr, int arg) | ||
| 845 | { | ||
| 846 | uint8_t attr = U8((*ptr)++), shift; | ||
| 847 | uint32_t saved, dst; | ||
| 848 | int dptr = *ptr; | ||
| 849 | attr &= 0x38; | ||
| 850 | attr |= atom_def_dst[attr >> 3] << 6; | ||
| 851 | SDEBUG(" dst: "); | ||
| 852 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); | ||
| 853 | shift = atom_get_src_direct(ctx, ATOM_SRC_BYTE0, ptr); | ||
| 854 | SDEBUG(" shift: %d\n", shift); | ||
| 855 | dst <<= shift; | ||
| 856 | SDEBUG(" dst: "); | ||
| 857 | atom_put_dst(ctx, arg, attr, &dptr, dst, saved); | ||
| 858 | } | ||
| 859 | |||
| 860 | static void atom_op_shift_right(atom_exec_context *ctx, int *ptr, int arg) | ||
| 861 | { | ||
| 862 | uint8_t attr = U8((*ptr)++), shift; | ||
| 863 | uint32_t saved, dst; | ||
| 864 | int dptr = *ptr; | ||
| 865 | attr &= 0x38; | ||
| 866 | attr |= atom_def_dst[attr >> 3] << 6; | ||
| 867 | SDEBUG(" dst: "); | ||
| 868 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); | ||
| 869 | shift = atom_get_src_direct(ctx, ATOM_SRC_BYTE0, ptr); | ||
| 870 | SDEBUG(" shift: %d\n", shift); | ||
| 871 | dst >>= shift; | ||
| 872 | SDEBUG(" dst: "); | ||
| 873 | atom_put_dst(ctx, arg, attr, &dptr, dst, saved); | ||
| 874 | } | ||
| 875 | |||
| 812 | static void atom_op_shl(atom_exec_context *ctx, int *ptr, int arg) | 876 | static void atom_op_shl(atom_exec_context *ctx, int *ptr, int arg) |
| 813 | { | 877 | { |
| 814 | uint8_t attr = U8((*ptr)++), shift; | 878 | uint8_t attr = U8((*ptr)++), shift; |
| @@ -818,7 +882,7 @@ static void atom_op_shl(atom_exec_context *ctx, int *ptr, int arg) | |||
| 818 | attr |= atom_def_dst[attr >> 3] << 6; | 882 | attr |= atom_def_dst[attr >> 3] << 6; |
| 819 | SDEBUG(" dst: "); | 883 | SDEBUG(" dst: "); |
| 820 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); | 884 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); |
| 821 | shift = U8((*ptr)++); | 885 | shift = atom_get_src(ctx, attr, ptr); |
| 822 | SDEBUG(" shift: %d\n", shift); | 886 | SDEBUG(" shift: %d\n", shift); |
| 823 | dst <<= shift; | 887 | dst <<= shift; |
| 824 | SDEBUG(" dst: "); | 888 | SDEBUG(" dst: "); |
| @@ -834,7 +898,7 @@ static void atom_op_shr(atom_exec_context *ctx, int *ptr, int arg) | |||
| 834 | attr |= atom_def_dst[attr >> 3] << 6; | 898 | attr |= atom_def_dst[attr >> 3] << 6; |
| 835 | SDEBUG(" dst: "); | 899 | SDEBUG(" dst: "); |
| 836 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); | 900 | dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1); |
| 837 | shift = U8((*ptr)++); | 901 | shift = atom_get_src(ctx, attr, ptr); |
| 838 | SDEBUG(" shift: %d\n", shift); | 902 | SDEBUG(" shift: %d\n", shift); |
| 839 | dst >>= shift; | 903 | dst >>= shift; |
| 840 | SDEBUG(" dst: "); | 904 | SDEBUG(" dst: "); |
| @@ -937,18 +1001,18 @@ static struct { | |||
| 937 | atom_op_or, ATOM_ARG_FB}, { | 1001 | atom_op_or, ATOM_ARG_FB}, { |
| 938 | atom_op_or, ATOM_ARG_PLL}, { | 1002 | atom_op_or, ATOM_ARG_PLL}, { |
| 939 | atom_op_or, ATOM_ARG_MC}, { | 1003 | atom_op_or, ATOM_ARG_MC}, { |
| 940 | atom_op_shl, ATOM_ARG_REG}, { | 1004 | atom_op_shift_left, ATOM_ARG_REG}, { |
| 941 | atom_op_shl, ATOM_ARG_PS}, { | 1005 | atom_op_shift_left, ATOM_ARG_PS}, { |
| 942 | atom_op_shl, ATOM_ARG_WS}, { | 1006 | atom_op_shift_left, ATOM_ARG_WS}, { |
| 943 | atom_op_shl, ATOM_ARG_FB}, { | 1007 | atom_op_shift_left, ATOM_ARG_FB}, { |
| 944 | atom_op_shl, ATOM_ARG_PLL}, { | 1008 | atom_op_shift_left, ATOM_ARG_PLL}, { |
| 945 | atom_op_shl, ATOM_ARG_MC}, { | 1009 | atom_op_shift_left, ATOM_ARG_MC}, { |
| 946 | atom_op_shr, ATOM_ARG_REG}, { | 1010 | atom_op_shift_right, ATOM_ARG_REG}, { |
| 947 | atom_op_shr, ATOM_ARG_PS}, { | 1011 | atom_op_shift_right, ATOM_ARG_PS}, { |
| 948 | atom_op_shr, ATOM_ARG_WS}, { | 1012 | atom_op_shift_right, ATOM_ARG_WS}, { |
| 949 | atom_op_shr, ATOM_ARG_FB}, { | 1013 | atom_op_shift_right, ATOM_ARG_FB}, { |
| 950 | atom_op_shr, ATOM_ARG_PLL}, { | 1014 | atom_op_shift_right, ATOM_ARG_PLL}, { |
| 951 | atom_op_shr, ATOM_ARG_MC}, { | 1015 | atom_op_shift_right, ATOM_ARG_MC}, { |
| 952 | atom_op_mul, ATOM_ARG_REG}, { | 1016 | atom_op_mul, ATOM_ARG_REG}, { |
| 953 | atom_op_mul, ATOM_ARG_PS}, { | 1017 | atom_op_mul, ATOM_ARG_PS}, { |
| 954 | atom_op_mul, ATOM_ARG_WS}, { | 1018 | atom_op_mul, ATOM_ARG_WS}, { |
| @@ -1058,8 +1122,6 @@ static void atom_execute_table_locked(struct atom_context *ctx, int index, uint3 | |||
| 1058 | 1122 | ||
| 1059 | SDEBUG(">> execute %04X (len %d, WS %d, PS %d)\n", base, len, ws, ps); | 1123 | SDEBUG(">> execute %04X (len %d, WS %d, PS %d)\n", base, len, ws, ps); |
| 1060 | 1124 | ||
| 1061 | /* reset reg block */ | ||
| 1062 | ctx->reg_block = 0; | ||
| 1063 | ectx.ctx = ctx; | 1125 | ectx.ctx = ctx; |
| 1064 | ectx.ps_shift = ps / 4; | 1126 | ectx.ps_shift = ps / 4; |
| 1065 | ectx.start = base; | 1127 | ectx.start = base; |
| @@ -1096,6 +1158,12 @@ static void atom_execute_table_locked(struct atom_context *ctx, int index, uint3 | |||
| 1096 | void atom_execute_table(struct atom_context *ctx, int index, uint32_t * params) | 1158 | void atom_execute_table(struct atom_context *ctx, int index, uint32_t * params) |
| 1097 | { | 1159 | { |
| 1098 | mutex_lock(&ctx->mutex); | 1160 | mutex_lock(&ctx->mutex); |
| 1161 | /* reset reg block */ | ||
| 1162 | ctx->reg_block = 0; | ||
| 1163 | /* reset fb window */ | ||
| 1164 | ctx->fb_base = 0; | ||
| 1165 | /* reset io mode */ | ||
| 1166 | ctx->io_mode = ATOM_IO_MM; | ||
| 1099 | atom_execute_table_locked(ctx, index, params); | 1167 | atom_execute_table_locked(ctx, index, params); |
| 1100 | mutex_unlock(&ctx->mutex); | 1168 | mutex_unlock(&ctx->mutex); |
| 1101 | } | 1169 | } |
diff --git a/drivers/gpu/drm/radeon/atom.h b/drivers/gpu/drm/radeon/atom.h index 47fd943f6d14..bc73781423a1 100644 --- a/drivers/gpu/drm/radeon/atom.h +++ b/drivers/gpu/drm/radeon/atom.h | |||
| @@ -91,6 +91,7 @@ | |||
| 91 | #define ATOM_WS_AND_MASK 0x45 | 91 | #define ATOM_WS_AND_MASK 0x45 |
| 92 | #define ATOM_WS_FB_WINDOW 0x46 | 92 | #define ATOM_WS_FB_WINDOW 0x46 |
| 93 | #define ATOM_WS_ATTRIBUTES 0x47 | 93 | #define ATOM_WS_ATTRIBUTES 0x47 |
| 94 | #define ATOM_WS_REGPTR 0x48 | ||
| 94 | 95 | ||
| 95 | #define ATOM_IIO_NOP 0 | 96 | #define ATOM_IIO_NOP 0 |
| 96 | #define ATOM_IIO_START 1 | 97 | #define ATOM_IIO_START 1 |
diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c index 260fcf59f00c..af464e351fbd 100644 --- a/drivers/gpu/drm/radeon/atombios_crtc.c +++ b/drivers/gpu/drm/radeon/atombios_crtc.c | |||
| @@ -307,7 +307,6 @@ atombios_set_crtc_dtd_timing(struct drm_crtc *crtc, | |||
| 307 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); | 307 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 308 | args.ucCRTC = radeon_crtc->crtc_id; | 308 | args.ucCRTC = radeon_crtc->crtc_id; |
| 309 | 309 | ||
| 310 | printk("executing set crtc dtd timing\n"); | ||
| 311 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | 310 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 312 | } | 311 | } |
| 313 | 312 | ||
| @@ -347,7 +346,6 @@ static void atombios_crtc_set_timing(struct drm_crtc *crtc, | |||
| 347 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); | 346 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); |
| 348 | args.ucCRTC = radeon_crtc->crtc_id; | 347 | args.ucCRTC = radeon_crtc->crtc_id; |
| 349 | 348 | ||
| 350 | printk("executing set crtc timing\n"); | ||
| 351 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | 349 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 352 | } | 350 | } |
| 353 | 351 | ||
| @@ -409,59 +407,57 @@ static void atombios_set_ss(struct drm_crtc *crtc, int enable) | |||
| 409 | } | 407 | } |
| 410 | } | 408 | } |
| 411 | 409 | ||
| 412 | void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | 410 | union adjust_pixel_clock { |
| 411 | ADJUST_DISPLAY_PLL_PS_ALLOCATION v1; | ||
| 412 | }; | ||
| 413 | |||
| 414 | static u32 atombios_adjust_pll(struct drm_crtc *crtc, | ||
| 415 | struct drm_display_mode *mode, | ||
| 416 | struct radeon_pll *pll) | ||
| 413 | { | 417 | { |
| 414 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 415 | struct drm_device *dev = crtc->dev; | 418 | struct drm_device *dev = crtc->dev; |
| 416 | struct radeon_device *rdev = dev->dev_private; | 419 | struct radeon_device *rdev = dev->dev_private; |
| 417 | struct drm_encoder *encoder = NULL; | 420 | struct drm_encoder *encoder = NULL; |
| 418 | struct radeon_encoder *radeon_encoder = NULL; | 421 | struct radeon_encoder *radeon_encoder = NULL; |
| 419 | uint8_t frev, crev; | 422 | u32 adjusted_clock = mode->clock; |
| 420 | int index; | ||
| 421 | SET_PIXEL_CLOCK_PS_ALLOCATION args; | ||
| 422 | PIXEL_CLOCK_PARAMETERS *spc1_ptr; | ||
| 423 | PIXEL_CLOCK_PARAMETERS_V2 *spc2_ptr; | ||
| 424 | PIXEL_CLOCK_PARAMETERS_V3 *spc3_ptr; | ||
| 425 | uint32_t pll_clock = mode->clock; | ||
| 426 | uint32_t adjusted_clock; | ||
| 427 | uint32_t ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; | ||
| 428 | struct radeon_pll *pll; | ||
| 429 | int pll_flags = 0; | ||
| 430 | 423 | ||
| 431 | memset(&args, 0, sizeof(args)); | 424 | /* reset the pll flags */ |
| 425 | pll->flags = 0; | ||
| 432 | 426 | ||
| 433 | if (ASIC_IS_AVIVO(rdev)) { | 427 | if (ASIC_IS_AVIVO(rdev)) { |
| 434 | if ((rdev->family == CHIP_RS600) || | 428 | if ((rdev->family == CHIP_RS600) || |
| 435 | (rdev->family == CHIP_RS690) || | 429 | (rdev->family == CHIP_RS690) || |
| 436 | (rdev->family == CHIP_RS740)) | 430 | (rdev->family == CHIP_RS740)) |
| 437 | pll_flags |= (RADEON_PLL_USE_FRAC_FB_DIV | | 431 | pll->flags |= (RADEON_PLL_USE_FRAC_FB_DIV | |
| 438 | RADEON_PLL_PREFER_CLOSEST_LOWER); | 432 | RADEON_PLL_PREFER_CLOSEST_LOWER); |
| 439 | 433 | ||
| 440 | if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */ | 434 | if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */ |
| 441 | pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; | 435 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 442 | else | 436 | else |
| 443 | pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; | 437 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
| 444 | } else { | 438 | } else { |
| 445 | pll_flags |= RADEON_PLL_LEGACY; | 439 | pll->flags |= RADEON_PLL_LEGACY; |
| 446 | 440 | ||
| 447 | if (mode->clock > 200000) /* range limits??? */ | 441 | if (mode->clock > 200000) /* range limits??? */ |
| 448 | pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; | 442 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 449 | else | 443 | else |
| 450 | pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; | 444 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
| 451 | 445 | ||
| 452 | } | 446 | } |
| 453 | 447 | ||
| 454 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | 448 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 455 | if (encoder->crtc == crtc) { | 449 | if (encoder->crtc == crtc) { |
| 456 | if (!ASIC_IS_AVIVO(rdev)) { | ||
| 457 | if (encoder->encoder_type != | ||
| 458 | DRM_MODE_ENCODER_DAC) | ||
| 459 | pll_flags |= RADEON_PLL_NO_ODD_POST_DIV; | ||
| 460 | if (encoder->encoder_type == | ||
| 461 | DRM_MODE_ENCODER_LVDS) | ||
| 462 | pll_flags |= RADEON_PLL_USE_REF_DIV; | ||
| 463 | } | ||
| 464 | radeon_encoder = to_radeon_encoder(encoder); | 450 | radeon_encoder = to_radeon_encoder(encoder); |
| 451 | if (ASIC_IS_AVIVO(rdev)) { | ||
| 452 | /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */ | ||
| 453 | if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1) | ||
| 454 | adjusted_clock = mode->clock * 2; | ||
| 455 | } else { | ||
| 456 | if (encoder->encoder_type != DRM_MODE_ENCODER_DAC) | ||
| 457 | pll->flags |= RADEON_PLL_NO_ODD_POST_DIV; | ||
| 458 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) | ||
| 459 | pll->flags |= RADEON_PLL_USE_REF_DIV; | ||
| 460 | } | ||
| 465 | break; | 461 | break; |
| 466 | } | 462 | } |
| 467 | } | 463 | } |
| @@ -471,46 +467,101 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 471 | * special hw requirements. | 467 | * special hw requirements. |
| 472 | */ | 468 | */ |
| 473 | if (ASIC_IS_DCE3(rdev)) { | 469 | if (ASIC_IS_DCE3(rdev)) { |
| 474 | ADJUST_DISPLAY_PLL_PS_ALLOCATION adjust_pll_args; | 470 | union adjust_pixel_clock args; |
| 471 | struct radeon_encoder_atom_dig *dig; | ||
| 472 | u8 frev, crev; | ||
| 473 | int index; | ||
| 475 | 474 | ||
| 476 | if (!encoder) | 475 | if (!radeon_encoder->enc_priv) |
| 477 | return; | 476 | return adjusted_clock; |
| 478 | 477 | dig = radeon_encoder->enc_priv; | |
| 479 | memset(&adjust_pll_args, 0, sizeof(adjust_pll_args)); | ||
| 480 | adjust_pll_args.usPixelClock = cpu_to_le16(mode->clock / 10); | ||
| 481 | adjust_pll_args.ucTransmitterID = radeon_encoder->encoder_id; | ||
| 482 | adjust_pll_args.ucEncodeMode = atombios_get_encoder_mode(encoder); | ||
| 483 | 478 | ||
| 484 | index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll); | 479 | index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll); |
| 485 | atom_execute_table(rdev->mode_info.atom_context, | 480 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 486 | index, (uint32_t *)&adjust_pll_args); | 481 | &crev); |
| 487 | adjusted_clock = le16_to_cpu(adjust_pll_args.usPixelClock) * 10; | 482 | |
| 488 | } else { | 483 | memset(&args, 0, sizeof(args)); |
| 489 | /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */ | 484 | |
| 490 | if (ASIC_IS_AVIVO(rdev) && | 485 | switch (frev) { |
| 491 | (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)) | 486 | case 1: |
| 492 | adjusted_clock = mode->clock * 2; | 487 | switch (crev) { |
| 493 | else | 488 | case 1: |
| 494 | adjusted_clock = mode->clock; | 489 | case 2: |
| 490 | args.v1.usPixelClock = cpu_to_le16(mode->clock / 10); | ||
| 491 | args.v1.ucTransmitterID = radeon_encoder->encoder_id; | ||
| 492 | args.v1.ucEncodeMode = atombios_get_encoder_mode(encoder); | ||
| 493 | |||
| 494 | atom_execute_table(rdev->mode_info.atom_context, | ||
| 495 | index, (uint32_t *)&args); | ||
| 496 | adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10; | ||
| 497 | break; | ||
| 498 | default: | ||
| 499 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); | ||
| 500 | return adjusted_clock; | ||
| 501 | } | ||
| 502 | break; | ||
| 503 | default: | ||
| 504 | DRM_ERROR("Unknown table version %d %d\n", frev, crev); | ||
| 505 | return adjusted_clock; | ||
| 506 | } | ||
| 495 | } | 507 | } |
| 508 | return adjusted_clock; | ||
| 509 | } | ||
| 510 | |||
| 511 | union set_pixel_clock { | ||
| 512 | SET_PIXEL_CLOCK_PS_ALLOCATION base; | ||
| 513 | PIXEL_CLOCK_PARAMETERS v1; | ||
| 514 | PIXEL_CLOCK_PARAMETERS_V2 v2; | ||
| 515 | PIXEL_CLOCK_PARAMETERS_V3 v3; | ||
| 516 | }; | ||
| 517 | |||
| 518 | void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | ||
| 519 | { | ||
| 520 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 521 | struct drm_device *dev = crtc->dev; | ||
| 522 | struct radeon_device *rdev = dev->dev_private; | ||
| 523 | struct drm_encoder *encoder = NULL; | ||
| 524 | struct radeon_encoder *radeon_encoder = NULL; | ||
| 525 | u8 frev, crev; | ||
| 526 | int index; | ||
| 527 | union set_pixel_clock args; | ||
| 528 | u32 pll_clock = mode->clock; | ||
| 529 | u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; | ||
| 530 | struct radeon_pll *pll; | ||
| 531 | u32 adjusted_clock; | ||
| 532 | |||
| 533 | memset(&args, 0, sizeof(args)); | ||
| 534 | |||
| 535 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | ||
| 536 | if (encoder->crtc == crtc) { | ||
| 537 | radeon_encoder = to_radeon_encoder(encoder); | ||
| 538 | break; | ||
| 539 | } | ||
| 540 | } | ||
| 541 | |||
| 542 | if (!radeon_encoder) | ||
| 543 | return; | ||
| 496 | 544 | ||
| 497 | if (radeon_crtc->crtc_id == 0) | 545 | if (radeon_crtc->crtc_id == 0) |
| 498 | pll = &rdev->clock.p1pll; | 546 | pll = &rdev->clock.p1pll; |
| 499 | else | 547 | else |
| 500 | pll = &rdev->clock.p2pll; | 548 | pll = &rdev->clock.p2pll; |
| 501 | 549 | ||
| 550 | /* adjust pixel clock as needed */ | ||
| 551 | adjusted_clock = atombios_adjust_pll(crtc, mode, pll); | ||
| 552 | |||
| 502 | if (ASIC_IS_AVIVO(rdev)) { | 553 | if (ASIC_IS_AVIVO(rdev)) { |
| 503 | if (radeon_new_pll) | 554 | if (radeon_new_pll) |
| 504 | radeon_compute_pll_avivo(pll, adjusted_clock, &pll_clock, | 555 | radeon_compute_pll_avivo(pll, adjusted_clock, &pll_clock, |
| 505 | &fb_div, &frac_fb_div, | 556 | &fb_div, &frac_fb_div, |
| 506 | &ref_div, &post_div, pll_flags); | 557 | &ref_div, &post_div); |
| 507 | else | 558 | else |
| 508 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, | 559 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, |
| 509 | &fb_div, &frac_fb_div, | 560 | &fb_div, &frac_fb_div, |
| 510 | &ref_div, &post_div, pll_flags); | 561 | &ref_div, &post_div); |
| 511 | } else | 562 | } else |
| 512 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, | 563 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 513 | &ref_div, &post_div, pll_flags); | 564 | &ref_div, &post_div); |
| 514 | 565 | ||
| 515 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); | 566 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); |
| 516 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, | 567 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| @@ -520,45 +571,38 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 520 | case 1: | 571 | case 1: |
| 521 | switch (crev) { | 572 | switch (crev) { |
| 522 | case 1: | 573 | case 1: |
| 523 | spc1_ptr = (PIXEL_CLOCK_PARAMETERS *) & args.sPCLKInput; | 574 | args.v1.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 524 | spc1_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); | 575 | args.v1.usRefDiv = cpu_to_le16(ref_div); |
| 525 | spc1_ptr->usRefDiv = cpu_to_le16(ref_div); | 576 | args.v1.usFbDiv = cpu_to_le16(fb_div); |
| 526 | spc1_ptr->usFbDiv = cpu_to_le16(fb_div); | 577 | args.v1.ucFracFbDiv = frac_fb_div; |
| 527 | spc1_ptr->ucFracFbDiv = frac_fb_div; | 578 | args.v1.ucPostDiv = post_div; |
| 528 | spc1_ptr->ucPostDiv = post_div; | 579 | args.v1.ucPpll = |
| 529 | spc1_ptr->ucPpll = | ||
| 530 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; | 580 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; |
| 531 | spc1_ptr->ucCRTC = radeon_crtc->crtc_id; | 581 | args.v1.ucCRTC = radeon_crtc->crtc_id; |
| 532 | spc1_ptr->ucRefDivSrc = 1; | 582 | args.v1.ucRefDivSrc = 1; |
| 533 | break; | 583 | break; |
| 534 | case 2: | 584 | case 2: |
| 535 | spc2_ptr = | 585 | args.v2.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 536 | (PIXEL_CLOCK_PARAMETERS_V2 *) & args.sPCLKInput; | 586 | args.v2.usRefDiv = cpu_to_le16(ref_div); |
| 537 | spc2_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); | 587 | args.v2.usFbDiv = cpu_to_le16(fb_div); |
| 538 | spc2_ptr->usRefDiv = cpu_to_le16(ref_div); | 588 | args.v2.ucFracFbDiv = frac_fb_div; |
| 539 | spc2_ptr->usFbDiv = cpu_to_le16(fb_div); | 589 | args.v2.ucPostDiv = post_div; |
| 540 | spc2_ptr->ucFracFbDiv = frac_fb_div; | 590 | args.v2.ucPpll = |
| 541 | spc2_ptr->ucPostDiv = post_div; | ||
| 542 | spc2_ptr->ucPpll = | ||
| 543 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; | 591 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; |
| 544 | spc2_ptr->ucCRTC = radeon_crtc->crtc_id; | 592 | args.v2.ucCRTC = radeon_crtc->crtc_id; |
| 545 | spc2_ptr->ucRefDivSrc = 1; | 593 | args.v2.ucRefDivSrc = 1; |
| 546 | break; | 594 | break; |
| 547 | case 3: | 595 | case 3: |
| 548 | if (!encoder) | 596 | args.v3.usPixelClock = cpu_to_le16(mode->clock / 10); |
| 549 | return; | 597 | args.v3.usRefDiv = cpu_to_le16(ref_div); |
| 550 | spc3_ptr = | 598 | args.v3.usFbDiv = cpu_to_le16(fb_div); |
| 551 | (PIXEL_CLOCK_PARAMETERS_V3 *) & args.sPCLKInput; | 599 | args.v3.ucFracFbDiv = frac_fb_div; |
| 552 | spc3_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); | 600 | args.v3.ucPostDiv = post_div; |
| 553 | spc3_ptr->usRefDiv = cpu_to_le16(ref_div); | 601 | args.v3.ucPpll = |
| 554 | spc3_ptr->usFbDiv = cpu_to_le16(fb_div); | ||
| 555 | spc3_ptr->ucFracFbDiv = frac_fb_div; | ||
| 556 | spc3_ptr->ucPostDiv = post_div; | ||
| 557 | spc3_ptr->ucPpll = | ||
| 558 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; | 602 | radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; |
| 559 | spc3_ptr->ucMiscInfo = (radeon_crtc->crtc_id << 2); | 603 | args.v3.ucMiscInfo = (radeon_crtc->crtc_id << 2); |
| 560 | spc3_ptr->ucTransmitterId = radeon_encoder->encoder_id; | 604 | args.v3.ucTransmitterId = radeon_encoder->encoder_id; |
| 561 | spc3_ptr->ucEncoderMode = | 605 | args.v3.ucEncoderMode = |
| 562 | atombios_get_encoder_mode(encoder); | 606 | atombios_get_encoder_mode(encoder); |
| 563 | break; | 607 | break; |
| 564 | default: | 608 | default: |
| @@ -571,12 +615,11 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 571 | return; | 615 | return; |
| 572 | } | 616 | } |
| 573 | 617 | ||
| 574 | printk("executing set pll\n"); | ||
| 575 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | 618 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 576 | } | 619 | } |
| 577 | 620 | ||
| 578 | int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, | 621 | static int avivo_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 579 | struct drm_framebuffer *old_fb) | 622 | struct drm_framebuffer *old_fb) |
| 580 | { | 623 | { |
| 581 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | 624 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 582 | struct drm_device *dev = crtc->dev; | 625 | struct drm_device *dev = crtc->dev; |
| @@ -706,6 +749,42 @@ int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 706 | return 0; | 749 | return 0; |
| 707 | } | 750 | } |
| 708 | 751 | ||
| 752 | int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, | ||
| 753 | struct drm_framebuffer *old_fb) | ||
| 754 | { | ||
| 755 | struct drm_device *dev = crtc->dev; | ||
| 756 | struct radeon_device *rdev = dev->dev_private; | ||
| 757 | |||
| 758 | if (ASIC_IS_AVIVO(rdev)) | ||
| 759 | return avivo_crtc_set_base(crtc, x, y, old_fb); | ||
| 760 | else | ||
| 761 | return radeon_crtc_set_base(crtc, x, y, old_fb); | ||
| 762 | } | ||
| 763 | |||
| 764 | /* properly set additional regs when using atombios */ | ||
| 765 | static void radeon_legacy_atom_fixup(struct drm_crtc *crtc) | ||
| 766 | { | ||
| 767 | struct drm_device *dev = crtc->dev; | ||
| 768 | struct radeon_device *rdev = dev->dev_private; | ||
| 769 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 770 | u32 disp_merge_cntl; | ||
| 771 | |||
| 772 | switch (radeon_crtc->crtc_id) { | ||
| 773 | case 0: | ||
| 774 | disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL); | ||
| 775 | disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN; | ||
| 776 | WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl); | ||
| 777 | break; | ||
| 778 | case 1: | ||
| 779 | disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL); | ||
| 780 | disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN; | ||
| 781 | WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl); | ||
| 782 | WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID)); | ||
| 783 | WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID)); | ||
| 784 | break; | ||
| 785 | } | ||
| 786 | } | ||
| 787 | |||
| 709 | int atombios_crtc_mode_set(struct drm_crtc *crtc, | 788 | int atombios_crtc_mode_set(struct drm_crtc *crtc, |
| 710 | struct drm_display_mode *mode, | 789 | struct drm_display_mode *mode, |
| 711 | struct drm_display_mode *adjusted_mode, | 790 | struct drm_display_mode *adjusted_mode, |
| @@ -727,8 +806,8 @@ int atombios_crtc_mode_set(struct drm_crtc *crtc, | |||
| 727 | else { | 806 | else { |
| 728 | if (radeon_crtc->crtc_id == 0) | 807 | if (radeon_crtc->crtc_id == 0) |
| 729 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); | 808 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
| 730 | radeon_crtc_set_base(crtc, x, y, old_fb); | 809 | atombios_crtc_set_base(crtc, x, y, old_fb); |
| 731 | radeon_legacy_atom_set_surface(crtc); | 810 | radeon_legacy_atom_fixup(crtc); |
| 732 | } | 811 | } |
| 733 | atombios_overscan_setup(crtc, mode, adjusted_mode); | 812 | atombios_overscan_setup(crtc, mode, adjusted_mode); |
| 734 | atombios_scaler_setup(crtc); | 813 | atombios_scaler_setup(crtc); |
| @@ -746,8 +825,8 @@ static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc, | |||
| 746 | 825 | ||
| 747 | static void atombios_crtc_prepare(struct drm_crtc *crtc) | 826 | static void atombios_crtc_prepare(struct drm_crtc *crtc) |
| 748 | { | 827 | { |
| 749 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); | ||
| 750 | atombios_lock_crtc(crtc, 1); | 828 | atombios_lock_crtc(crtc, 1); |
| 829 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); | ||
| 751 | } | 830 | } |
| 752 | 831 | ||
| 753 | static void atombios_crtc_commit(struct drm_crtc *crtc) | 832 | static void atombios_crtc_commit(struct drm_crtc *crtc) |
diff --git a/drivers/gpu/drm/radeon/atombios_dp.c b/drivers/gpu/drm/radeon/atombios_dp.c index 3eb0ca5b3d73..71060114d5de 100644 --- a/drivers/gpu/drm/radeon/atombios_dp.c +++ b/drivers/gpu/drm/radeon/atombios_dp.c | |||
| @@ -468,7 +468,7 @@ void radeon_dp_set_link_config(struct drm_connector *connector, | |||
| 468 | struct radeon_connector *radeon_connector; | 468 | struct radeon_connector *radeon_connector; |
| 469 | struct radeon_connector_atom_dig *dig_connector; | 469 | struct radeon_connector_atom_dig *dig_connector; |
| 470 | 470 | ||
| 471 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) || | 471 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) && |
| 472 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) | 472 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) |
| 473 | return; | 473 | return; |
| 474 | 474 | ||
| @@ -583,7 +583,7 @@ void dp_link_train(struct drm_encoder *encoder, | |||
| 583 | u8 train_set[4]; | 583 | u8 train_set[4]; |
| 584 | int i; | 584 | int i; |
| 585 | 585 | ||
| 586 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) || | 586 | if ((connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) && |
| 587 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) | 587 | (connector->connector_type != DRM_MODE_CONNECTOR_eDP)) |
| 588 | return; | 588 | return; |
| 589 | 589 | ||
| @@ -596,21 +596,14 @@ void dp_link_train(struct drm_encoder *encoder, | |||
| 596 | return; | 596 | return; |
| 597 | dig_connector = radeon_connector->con_priv; | 597 | dig_connector = radeon_connector->con_priv; |
| 598 | 598 | ||
| 599 | if (ASIC_IS_DCE32(rdev)) { | 599 | if (dig->dig_encoder) |
| 600 | if (dig->dig_block) | 600 | enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER; |
| 601 | enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER; | 601 | else |
| 602 | else | 602 | enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER; |
| 603 | enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER; | 603 | if (dig_connector->linkb) |
| 604 | if (dig_connector->linkb) | 604 | enc_id |= ATOM_DP_CONFIG_LINK_B; |
| 605 | enc_id |= ATOM_DP_CONFIG_LINK_B; | 605 | else |
| 606 | else | 606 | enc_id |= ATOM_DP_CONFIG_LINK_A; |
| 607 | enc_id |= ATOM_DP_CONFIG_LINK_A; | ||
| 608 | } else { | ||
| 609 | if (dig_connector->linkb) | ||
| 610 | enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER | ATOM_DP_CONFIG_LINK_B; | ||
| 611 | else | ||
| 612 | enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER | ATOM_DP_CONFIG_LINK_A; | ||
| 613 | } | ||
| 614 | 607 | ||
| 615 | memset(link_configuration, 0, DP_LINK_CONFIGURATION_SIZE); | 608 | memset(link_configuration, 0, DP_LINK_CONFIGURATION_SIZE); |
| 616 | if (dig_connector->dp_clock == 270000) | 609 | if (dig_connector->dp_clock == 270000) |
diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index 8760d66e058a..c0d4650cdb79 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c | |||
| @@ -354,11 +354,17 @@ u32 r100_get_vblank_counter(struct radeon_device *rdev, int crtc) | |||
| 354 | return RREG32(RADEON_CRTC2_CRNT_FRAME); | 354 | return RREG32(RADEON_CRTC2_CRNT_FRAME); |
| 355 | } | 355 | } |
| 356 | 356 | ||
| 357 | /* Who ever call radeon_fence_emit should call ring_lock and ask | ||
| 358 | * for enough space (today caller are ib schedule and buffer move) */ | ||
| 357 | void r100_fence_ring_emit(struct radeon_device *rdev, | 359 | void r100_fence_ring_emit(struct radeon_device *rdev, |
| 358 | struct radeon_fence *fence) | 360 | struct radeon_fence *fence) |
| 359 | { | 361 | { |
| 360 | /* Who ever call radeon_fence_emit should call ring_lock and ask | 362 | /* We have to make sure that caches are flushed before |
| 361 | * for enough space (today caller are ib schedule and buffer move) */ | 363 | * CPU might read something from VRAM. */ |
| 364 | radeon_ring_write(rdev, PACKET0(RADEON_RB3D_DSTCACHE_CTLSTAT, 0)); | ||
| 365 | radeon_ring_write(rdev, RADEON_RB3D_DC_FLUSH_ALL); | ||
| 366 | radeon_ring_write(rdev, PACKET0(RADEON_RB3D_ZCACHE_CTLSTAT, 0)); | ||
| 367 | radeon_ring_write(rdev, RADEON_RB3D_ZC_FLUSH_ALL); | ||
| 362 | /* Wait until IDLE & CLEAN */ | 368 | /* Wait until IDLE & CLEAN */ |
| 363 | radeon_ring_write(rdev, PACKET0(0x1720, 0)); | 369 | radeon_ring_write(rdev, PACKET0(0x1720, 0)); |
| 364 | radeon_ring_write(rdev, (1 << 16) | (1 << 17)); | 370 | radeon_ring_write(rdev, (1 << 16) | (1 << 17)); |
| @@ -1504,6 +1510,7 @@ static int r100_packet3_check(struct radeon_cs_parser *p, | |||
| 1504 | DRM_ERROR("PRIM_WALK must be 3 for IMMD draw\n"); | 1510 | DRM_ERROR("PRIM_WALK must be 3 for IMMD draw\n"); |
| 1505 | return -EINVAL; | 1511 | return -EINVAL; |
| 1506 | } | 1512 | } |
| 1513 | track->vtx_size = r100_get_vtx_size(radeon_get_ib_value(p, idx + 0)); | ||
| 1507 | track->vap_vf_cntl = radeon_get_ib_value(p, idx + 1); | 1514 | track->vap_vf_cntl = radeon_get_ib_value(p, idx + 1); |
| 1508 | track->immd_dwords = pkt->count - 1; | 1515 | track->immd_dwords = pkt->count - 1; |
| 1509 | r = r100_cs_track_check(p->rdev, track); | 1516 | r = r100_cs_track_check(p->rdev, track); |
| @@ -3368,7 +3375,6 @@ int r100_suspend(struct radeon_device *rdev) | |||
| 3368 | 3375 | ||
| 3369 | void r100_fini(struct radeon_device *rdev) | 3376 | void r100_fini(struct radeon_device *rdev) |
| 3370 | { | 3377 | { |
| 3371 | r100_suspend(rdev); | ||
| 3372 | r100_cp_fini(rdev); | 3378 | r100_cp_fini(rdev); |
| 3373 | r100_wb_fini(rdev); | 3379 | r100_wb_fini(rdev); |
| 3374 | r100_ib_fini(rdev); | 3380 | r100_ib_fini(rdev); |
| @@ -3399,9 +3405,7 @@ int r100_mc_init(struct radeon_device *rdev) | |||
| 3399 | if (rdev->flags & RADEON_IS_AGP) { | 3405 | if (rdev->flags & RADEON_IS_AGP) { |
| 3400 | r = radeon_agp_init(rdev); | 3406 | r = radeon_agp_init(rdev); |
| 3401 | if (r) { | 3407 | if (r) { |
| 3402 | printk(KERN_WARNING "[drm] Disabling AGP\n"); | 3408 | radeon_agp_disable(rdev); |
| 3403 | rdev->flags &= ~RADEON_IS_AGP; | ||
| 3404 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; | ||
| 3405 | } else { | 3409 | } else { |
| 3406 | rdev->mc.gtt_location = rdev->mc.agp_base; | 3410 | rdev->mc.gtt_location = rdev->mc.agp_base; |
| 3407 | } | 3411 | } |
| @@ -3482,13 +3486,12 @@ int r100_init(struct radeon_device *rdev) | |||
| 3482 | if (r) { | 3486 | if (r) { |
| 3483 | /* Somethings want wront with the accel init stop accel */ | 3487 | /* Somethings want wront with the accel init stop accel */ |
| 3484 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 3488 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 3485 | r100_suspend(rdev); | ||
| 3486 | r100_cp_fini(rdev); | 3489 | r100_cp_fini(rdev); |
| 3487 | r100_wb_fini(rdev); | 3490 | r100_wb_fini(rdev); |
| 3488 | r100_ib_fini(rdev); | 3491 | r100_ib_fini(rdev); |
| 3492 | radeon_irq_kms_fini(rdev); | ||
| 3489 | if (rdev->flags & RADEON_IS_PCI) | 3493 | if (rdev->flags & RADEON_IS_PCI) |
| 3490 | r100_pci_gart_fini(rdev); | 3494 | r100_pci_gart_fini(rdev); |
| 3491 | radeon_irq_kms_fini(rdev); | ||
| 3492 | rdev->accel_working = false; | 3495 | rdev->accel_working = false; |
| 3493 | } | 3496 | } |
| 3494 | return 0; | 3497 | return 0; |
diff --git a/drivers/gpu/drm/radeon/r200.c b/drivers/gpu/drm/radeon/r200.c index 20942127c46b..ff1e0cd608bf 100644 --- a/drivers/gpu/drm/radeon/r200.c +++ b/drivers/gpu/drm/radeon/r200.c | |||
| @@ -371,13 +371,16 @@ int r200_packet0_check(struct radeon_cs_parser *p, | |||
| 371 | case 5: | 371 | case 5: |
| 372 | case 6: | 372 | case 6: |
| 373 | case 7: | 373 | case 7: |
| 374 | /* 1D/2D */ | ||
| 374 | track->textures[i].tex_coord_type = 0; | 375 | track->textures[i].tex_coord_type = 0; |
| 375 | break; | 376 | break; |
| 376 | case 1: | 377 | case 1: |
| 377 | track->textures[i].tex_coord_type = 1; | 378 | /* CUBE */ |
| 379 | track->textures[i].tex_coord_type = 2; | ||
| 378 | break; | 380 | break; |
| 379 | case 2: | 381 | case 2: |
| 380 | track->textures[i].tex_coord_type = 2; | 382 | /* 3D */ |
| 383 | track->textures[i].tex_coord_type = 1; | ||
| 381 | break; | 384 | break; |
| 382 | } | 385 | } |
| 383 | break; | 386 | break; |
diff --git a/drivers/gpu/drm/radeon/r300.c b/drivers/gpu/drm/radeon/r300.c index 0051d11b907c..43b55a030b4d 100644 --- a/drivers/gpu/drm/radeon/r300.c +++ b/drivers/gpu/drm/radeon/r300.c | |||
| @@ -506,11 +506,14 @@ void r300_vram_info(struct radeon_device *rdev) | |||
| 506 | 506 | ||
| 507 | /* DDR for all card after R300 & IGP */ | 507 | /* DDR for all card after R300 & IGP */ |
| 508 | rdev->mc.vram_is_ddr = true; | 508 | rdev->mc.vram_is_ddr = true; |
| 509 | |||
| 509 | tmp = RREG32(RADEON_MEM_CNTL); | 510 | tmp = RREG32(RADEON_MEM_CNTL); |
| 510 | if (tmp & R300_MEM_NUM_CHANNELS_MASK) { | 511 | tmp &= R300_MEM_NUM_CHANNELS_MASK; |
| 511 | rdev->mc.vram_width = 128; | 512 | switch (tmp) { |
| 512 | } else { | 513 | case 0: rdev->mc.vram_width = 64; break; |
| 513 | rdev->mc.vram_width = 64; | 514 | case 1: rdev->mc.vram_width = 128; break; |
| 515 | case 2: rdev->mc.vram_width = 256; break; | ||
| 516 | default: rdev->mc.vram_width = 128; break; | ||
| 514 | } | 517 | } |
| 515 | 518 | ||
| 516 | r100_vram_init_sizes(rdev); | 519 | r100_vram_init_sizes(rdev); |
| @@ -1327,7 +1330,6 @@ int r300_suspend(struct radeon_device *rdev) | |||
| 1327 | 1330 | ||
| 1328 | void r300_fini(struct radeon_device *rdev) | 1331 | void r300_fini(struct radeon_device *rdev) |
| 1329 | { | 1332 | { |
| 1330 | r300_suspend(rdev); | ||
| 1331 | r100_cp_fini(rdev); | 1333 | r100_cp_fini(rdev); |
| 1332 | r100_wb_fini(rdev); | 1334 | r100_wb_fini(rdev); |
| 1333 | r100_ib_fini(rdev); | 1335 | r100_ib_fini(rdev); |
| @@ -1418,15 +1420,15 @@ int r300_init(struct radeon_device *rdev) | |||
| 1418 | if (r) { | 1420 | if (r) { |
| 1419 | /* Somethings want wront with the accel init stop accel */ | 1421 | /* Somethings want wront with the accel init stop accel */ |
| 1420 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 1422 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 1421 | r300_suspend(rdev); | ||
| 1422 | r100_cp_fini(rdev); | 1423 | r100_cp_fini(rdev); |
| 1423 | r100_wb_fini(rdev); | 1424 | r100_wb_fini(rdev); |
| 1424 | r100_ib_fini(rdev); | 1425 | r100_ib_fini(rdev); |
| 1426 | radeon_irq_kms_fini(rdev); | ||
| 1425 | if (rdev->flags & RADEON_IS_PCIE) | 1427 | if (rdev->flags & RADEON_IS_PCIE) |
| 1426 | rv370_pcie_gart_fini(rdev); | 1428 | rv370_pcie_gart_fini(rdev); |
| 1427 | if (rdev->flags & RADEON_IS_PCI) | 1429 | if (rdev->flags & RADEON_IS_PCI) |
| 1428 | r100_pci_gart_fini(rdev); | 1430 | r100_pci_gart_fini(rdev); |
| 1429 | radeon_irq_kms_fini(rdev); | 1431 | radeon_agp_fini(rdev); |
| 1430 | rdev->accel_working = false; | 1432 | rdev->accel_working = false; |
| 1431 | } | 1433 | } |
| 1432 | return 0; | 1434 | return 0; |
diff --git a/drivers/gpu/drm/radeon/r420.c b/drivers/gpu/drm/radeon/r420.c index 053404e71a9d..d9373246c97f 100644 --- a/drivers/gpu/drm/radeon/r420.c +++ b/drivers/gpu/drm/radeon/r420.c | |||
| @@ -50,9 +50,7 @@ int r420_mc_init(struct radeon_device *rdev) | |||
| 50 | if (rdev->flags & RADEON_IS_AGP) { | 50 | if (rdev->flags & RADEON_IS_AGP) { |
| 51 | r = radeon_agp_init(rdev); | 51 | r = radeon_agp_init(rdev); |
| 52 | if (r) { | 52 | if (r) { |
| 53 | printk(KERN_WARNING "[drm] Disabling AGP\n"); | 53 | radeon_agp_disable(rdev); |
| 54 | rdev->flags &= ~RADEON_IS_AGP; | ||
| 55 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; | ||
| 56 | } else { | 54 | } else { |
| 57 | rdev->mc.gtt_location = rdev->mc.agp_base; | 55 | rdev->mc.gtt_location = rdev->mc.agp_base; |
| 58 | } | 56 | } |
| @@ -391,16 +389,15 @@ int r420_init(struct radeon_device *rdev) | |||
| 391 | if (r) { | 389 | if (r) { |
| 392 | /* Somethings want wront with the accel init stop accel */ | 390 | /* Somethings want wront with the accel init stop accel */ |
| 393 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 391 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 394 | r420_suspend(rdev); | ||
| 395 | r100_cp_fini(rdev); | 392 | r100_cp_fini(rdev); |
| 396 | r100_wb_fini(rdev); | 393 | r100_wb_fini(rdev); |
| 397 | r100_ib_fini(rdev); | 394 | r100_ib_fini(rdev); |
| 395 | radeon_irq_kms_fini(rdev); | ||
| 398 | if (rdev->flags & RADEON_IS_PCIE) | 396 | if (rdev->flags & RADEON_IS_PCIE) |
| 399 | rv370_pcie_gart_fini(rdev); | 397 | rv370_pcie_gart_fini(rdev); |
| 400 | if (rdev->flags & RADEON_IS_PCI) | 398 | if (rdev->flags & RADEON_IS_PCI) |
| 401 | r100_pci_gart_fini(rdev); | 399 | r100_pci_gart_fini(rdev); |
| 402 | radeon_agp_fini(rdev); | 400 | radeon_agp_fini(rdev); |
| 403 | radeon_irq_kms_fini(rdev); | ||
| 404 | rdev->accel_working = false; | 401 | rdev->accel_working = false; |
| 405 | } | 402 | } |
| 406 | return 0; | 403 | return 0; |
diff --git a/drivers/gpu/drm/radeon/r520.c b/drivers/gpu/drm/radeon/r520.c index 9a189072f2b9..ddf5731eba0d 100644 --- a/drivers/gpu/drm/radeon/r520.c +++ b/drivers/gpu/drm/radeon/r520.c | |||
| @@ -294,13 +294,12 @@ int r520_init(struct radeon_device *rdev) | |||
| 294 | if (r) { | 294 | if (r) { |
| 295 | /* Somethings want wront with the accel init stop accel */ | 295 | /* Somethings want wront with the accel init stop accel */ |
| 296 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 296 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 297 | rv515_suspend(rdev); | ||
| 298 | r100_cp_fini(rdev); | 297 | r100_cp_fini(rdev); |
| 299 | r100_wb_fini(rdev); | 298 | r100_wb_fini(rdev); |
| 300 | r100_ib_fini(rdev); | 299 | r100_ib_fini(rdev); |
| 300 | radeon_irq_kms_fini(rdev); | ||
| 301 | rv370_pcie_gart_fini(rdev); | 301 | rv370_pcie_gart_fini(rdev); |
| 302 | radeon_agp_fini(rdev); | 302 | radeon_agp_fini(rdev); |
| 303 | radeon_irq_kms_fini(rdev); | ||
| 304 | rdev->accel_working = false; | 303 | rdev->accel_working = false; |
| 305 | } | 304 | } |
| 306 | return 0; | 305 | return 0; |
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index c0651991c3e4..a1198d99cdf9 100644 --- a/drivers/gpu/drm/radeon/r600.c +++ b/drivers/gpu/drm/radeon/r600.c | |||
| @@ -624,7 +624,6 @@ int r600_mc_init(struct radeon_device *rdev) | |||
| 624 | fixed20_12 a; | 624 | fixed20_12 a; |
| 625 | u32 tmp; | 625 | u32 tmp; |
| 626 | int chansize, numchan; | 626 | int chansize, numchan; |
| 627 | int r; | ||
| 628 | 627 | ||
| 629 | /* Get VRAM informations */ | 628 | /* Get VRAM informations */ |
| 630 | rdev->mc.vram_is_ddr = true; | 629 | rdev->mc.vram_is_ddr = true; |
| @@ -667,9 +666,6 @@ int r600_mc_init(struct radeon_device *rdev) | |||
| 667 | rdev->mc.real_vram_size = rdev->mc.aper_size; | 666 | rdev->mc.real_vram_size = rdev->mc.aper_size; |
| 668 | 667 | ||
| 669 | if (rdev->flags & RADEON_IS_AGP) { | 668 | if (rdev->flags & RADEON_IS_AGP) { |
| 670 | r = radeon_agp_init(rdev); | ||
| 671 | if (r) | ||
| 672 | return r; | ||
| 673 | /* gtt_size is setup by radeon_agp_init */ | 669 | /* gtt_size is setup by radeon_agp_init */ |
| 674 | rdev->mc.gtt_location = rdev->mc.agp_base; | 670 | rdev->mc.gtt_location = rdev->mc.agp_base; |
| 675 | tmp = 0xFFFFFFFFUL - rdev->mc.agp_base - rdev->mc.gtt_size; | 671 | tmp = 0xFFFFFFFFUL - rdev->mc.agp_base - rdev->mc.gtt_size; |
| @@ -1658,6 +1654,12 @@ void r600_ring_init(struct radeon_device *rdev, unsigned ring_size) | |||
| 1658 | rdev->cp.align_mask = 16 - 1; | 1654 | rdev->cp.align_mask = 16 - 1; |
| 1659 | } | 1655 | } |
| 1660 | 1656 | ||
| 1657 | void r600_cp_fini(struct radeon_device *rdev) | ||
| 1658 | { | ||
| 1659 | r600_cp_stop(rdev); | ||
| 1660 | radeon_ring_fini(rdev); | ||
| 1661 | } | ||
| 1662 | |||
| 1661 | 1663 | ||
| 1662 | /* | 1664 | /* |
| 1663 | * GPU scratch registers helpers function. | 1665 | * GPU scratch registers helpers function. |
| @@ -1792,23 +1794,24 @@ void r600_fence_ring_emit(struct radeon_device *rdev, | |||
| 1792 | radeon_ring_write(rdev, RB_INT_STAT); | 1794 | radeon_ring_write(rdev, RB_INT_STAT); |
| 1793 | } | 1795 | } |
| 1794 | 1796 | ||
| 1795 | int r600_copy_dma(struct radeon_device *rdev, | ||
| 1796 | uint64_t src_offset, | ||
| 1797 | uint64_t dst_offset, | ||
| 1798 | unsigned num_pages, | ||
| 1799 | struct radeon_fence *fence) | ||
| 1800 | { | ||
| 1801 | /* FIXME: implement */ | ||
| 1802 | return 0; | ||
| 1803 | } | ||
| 1804 | |||
| 1805 | int r600_copy_blit(struct radeon_device *rdev, | 1797 | int r600_copy_blit(struct radeon_device *rdev, |
| 1806 | uint64_t src_offset, uint64_t dst_offset, | 1798 | uint64_t src_offset, uint64_t dst_offset, |
| 1807 | unsigned num_pages, struct radeon_fence *fence) | 1799 | unsigned num_pages, struct radeon_fence *fence) |
| 1808 | { | 1800 | { |
| 1809 | r600_blit_prepare_copy(rdev, num_pages * RADEON_GPU_PAGE_SIZE); | 1801 | int r; |
| 1802 | |||
| 1803 | mutex_lock(&rdev->r600_blit.mutex); | ||
| 1804 | rdev->r600_blit.vb_ib = NULL; | ||
| 1805 | r = r600_blit_prepare_copy(rdev, num_pages * RADEON_GPU_PAGE_SIZE); | ||
| 1806 | if (r) { | ||
| 1807 | if (rdev->r600_blit.vb_ib) | ||
| 1808 | radeon_ib_free(rdev, &rdev->r600_blit.vb_ib); | ||
| 1809 | mutex_unlock(&rdev->r600_blit.mutex); | ||
| 1810 | return r; | ||
| 1811 | } | ||
| 1810 | r600_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * RADEON_GPU_PAGE_SIZE); | 1812 | r600_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * RADEON_GPU_PAGE_SIZE); |
| 1811 | r600_blit_done_copy(rdev, fence); | 1813 | r600_blit_done_copy(rdev, fence); |
| 1814 | mutex_unlock(&rdev->r600_blit.mutex); | ||
| 1812 | return 0; | 1815 | return 0; |
| 1813 | } | 1816 | } |
| 1814 | 1817 | ||
| @@ -1864,26 +1867,25 @@ int r600_startup(struct radeon_device *rdev) | |||
| 1864 | return r; | 1867 | return r; |
| 1865 | } | 1868 | } |
| 1866 | r600_gpu_init(rdev); | 1869 | r600_gpu_init(rdev); |
| 1867 | 1870 | r = r600_blit_init(rdev); | |
| 1868 | if (!rdev->r600_blit.shader_obj) { | 1871 | if (r) { |
| 1869 | r = r600_blit_init(rdev); | 1872 | r600_blit_fini(rdev); |
| 1873 | rdev->asic->copy = NULL; | ||
| 1874 | dev_warn(rdev->dev, "failed blitter (%d) falling back to memcpy\n", r); | ||
| 1875 | } | ||
| 1876 | /* pin copy shader into vram */ | ||
| 1877 | if (rdev->r600_blit.shader_obj) { | ||
| 1878 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | ||
| 1879 | if (unlikely(r != 0)) | ||
| 1880 | return r; | ||
| 1881 | r = radeon_bo_pin(rdev->r600_blit.shader_obj, RADEON_GEM_DOMAIN_VRAM, | ||
| 1882 | &rdev->r600_blit.shader_gpu_addr); | ||
| 1883 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 1870 | if (r) { | 1884 | if (r) { |
| 1871 | DRM_ERROR("radeon: failed blitter (%d).\n", r); | 1885 | dev_err(rdev->dev, "(%d) pin blit object failed\n", r); |
| 1872 | return r; | 1886 | return r; |
| 1873 | } | 1887 | } |
| 1874 | } | 1888 | } |
| 1875 | |||
| 1876 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | ||
| 1877 | if (unlikely(r != 0)) | ||
| 1878 | return r; | ||
| 1879 | r = radeon_bo_pin(rdev->r600_blit.shader_obj, RADEON_GEM_DOMAIN_VRAM, | ||
| 1880 | &rdev->r600_blit.shader_gpu_addr); | ||
| 1881 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 1882 | if (r) { | ||
| 1883 | dev_err(rdev->dev, "(%d) pin blit object failed\n", r); | ||
| 1884 | return r; | ||
| 1885 | } | ||
| 1886 | |||
| 1887 | /* Enable IRQ */ | 1889 | /* Enable IRQ */ |
| 1888 | r = r600_irq_init(rdev); | 1890 | r = r600_irq_init(rdev); |
| 1889 | if (r) { | 1891 | if (r) { |
| @@ -1958,14 +1960,17 @@ int r600_suspend(struct radeon_device *rdev) | |||
| 1958 | /* FIXME: we should wait for ring to be empty */ | 1960 | /* FIXME: we should wait for ring to be empty */ |
| 1959 | r600_cp_stop(rdev); | 1961 | r600_cp_stop(rdev); |
| 1960 | rdev->cp.ready = false; | 1962 | rdev->cp.ready = false; |
| 1963 | r600_irq_suspend(rdev); | ||
| 1961 | r600_wb_disable(rdev); | 1964 | r600_wb_disable(rdev); |
| 1962 | r600_pcie_gart_disable(rdev); | 1965 | r600_pcie_gart_disable(rdev); |
| 1963 | /* unpin shaders bo */ | 1966 | /* unpin shaders bo */ |
| 1964 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | 1967 | if (rdev->r600_blit.shader_obj) { |
| 1965 | if (unlikely(r != 0)) | 1968 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); |
| 1966 | return r; | 1969 | if (!r) { |
| 1967 | radeon_bo_unpin(rdev->r600_blit.shader_obj); | 1970 | radeon_bo_unpin(rdev->r600_blit.shader_obj); |
| 1968 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | 1971 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); |
| 1972 | } | ||
| 1973 | } | ||
| 1969 | return 0; | 1974 | return 0; |
| 1970 | } | 1975 | } |
| 1971 | 1976 | ||
| @@ -2026,6 +2031,11 @@ int r600_init(struct radeon_device *rdev) | |||
| 2026 | r = radeon_fence_driver_init(rdev); | 2031 | r = radeon_fence_driver_init(rdev); |
| 2027 | if (r) | 2032 | if (r) |
| 2028 | return r; | 2033 | return r; |
| 2034 | if (rdev->flags & RADEON_IS_AGP) { | ||
| 2035 | r = radeon_agp_init(rdev); | ||
| 2036 | if (r) | ||
| 2037 | radeon_agp_disable(rdev); | ||
| 2038 | } | ||
| 2029 | r = r600_mc_init(rdev); | 2039 | r = r600_mc_init(rdev); |
| 2030 | if (r) | 2040 | if (r) |
| 2031 | return r; | 2041 | return r; |
| @@ -2051,22 +2061,25 @@ int r600_init(struct radeon_device *rdev) | |||
| 2051 | rdev->accel_working = true; | 2061 | rdev->accel_working = true; |
| 2052 | r = r600_startup(rdev); | 2062 | r = r600_startup(rdev); |
| 2053 | if (r) { | 2063 | if (r) { |
| 2054 | r600_suspend(rdev); | 2064 | dev_err(rdev->dev, "disabling GPU acceleration\n"); |
| 2065 | r600_cp_fini(rdev); | ||
| 2055 | r600_wb_fini(rdev); | 2066 | r600_wb_fini(rdev); |
| 2056 | radeon_ring_fini(rdev); | 2067 | r600_irq_fini(rdev); |
| 2068 | radeon_irq_kms_fini(rdev); | ||
| 2057 | r600_pcie_gart_fini(rdev); | 2069 | r600_pcie_gart_fini(rdev); |
| 2058 | rdev->accel_working = false; | 2070 | rdev->accel_working = false; |
| 2059 | } | 2071 | } |
| 2060 | if (rdev->accel_working) { | 2072 | if (rdev->accel_working) { |
| 2061 | r = radeon_ib_pool_init(rdev); | 2073 | r = radeon_ib_pool_init(rdev); |
| 2062 | if (r) { | 2074 | if (r) { |
| 2063 | DRM_ERROR("radeon: failed initializing IB pool (%d).\n", r); | 2075 | dev_err(rdev->dev, "IB initialization failed (%d).\n", r); |
| 2064 | rdev->accel_working = false; | ||
| 2065 | } | ||
| 2066 | r = r600_ib_test(rdev); | ||
| 2067 | if (r) { | ||
| 2068 | DRM_ERROR("radeon: failed testing IB (%d).\n", r); | ||
| 2069 | rdev->accel_working = false; | 2076 | rdev->accel_working = false; |
| 2077 | } else { | ||
| 2078 | r = r600_ib_test(rdev); | ||
| 2079 | if (r) { | ||
| 2080 | dev_err(rdev->dev, "IB test failed (%d).\n", r); | ||
| 2081 | rdev->accel_working = false; | ||
| 2082 | } | ||
| 2070 | } | 2083 | } |
| 2071 | } | 2084 | } |
| 2072 | 2085 | ||
| @@ -2078,20 +2091,17 @@ int r600_init(struct radeon_device *rdev) | |||
| 2078 | 2091 | ||
| 2079 | void r600_fini(struct radeon_device *rdev) | 2092 | void r600_fini(struct radeon_device *rdev) |
| 2080 | { | 2093 | { |
| 2081 | /* Suspend operations */ | ||
| 2082 | r600_suspend(rdev); | ||
| 2083 | |||
| 2084 | r600_audio_fini(rdev); | 2094 | r600_audio_fini(rdev); |
| 2085 | r600_blit_fini(rdev); | 2095 | r600_blit_fini(rdev); |
| 2096 | r600_cp_fini(rdev); | ||
| 2097 | r600_wb_fini(rdev); | ||
| 2086 | r600_irq_fini(rdev); | 2098 | r600_irq_fini(rdev); |
| 2087 | radeon_irq_kms_fini(rdev); | 2099 | radeon_irq_kms_fini(rdev); |
| 2088 | radeon_ring_fini(rdev); | ||
| 2089 | r600_wb_fini(rdev); | ||
| 2090 | r600_pcie_gart_fini(rdev); | 2100 | r600_pcie_gart_fini(rdev); |
| 2101 | radeon_agp_fini(rdev); | ||
| 2091 | radeon_gem_fini(rdev); | 2102 | radeon_gem_fini(rdev); |
| 2092 | radeon_fence_driver_fini(rdev); | 2103 | radeon_fence_driver_fini(rdev); |
| 2093 | radeon_clocks_fini(rdev); | 2104 | radeon_clocks_fini(rdev); |
| 2094 | radeon_agp_fini(rdev); | ||
| 2095 | radeon_bo_fini(rdev); | 2105 | radeon_bo_fini(rdev); |
| 2096 | radeon_atombios_fini(rdev); | 2106 | radeon_atombios_fini(rdev); |
| 2097 | kfree(rdev->bios); | 2107 | kfree(rdev->bios); |
| @@ -2197,14 +2207,14 @@ void r600_ih_ring_init(struct radeon_device *rdev, unsigned ring_size) | |||
| 2197 | rb_bufsz = drm_order(ring_size / 4); | 2207 | rb_bufsz = drm_order(ring_size / 4); |
| 2198 | ring_size = (1 << rb_bufsz) * 4; | 2208 | ring_size = (1 << rb_bufsz) * 4; |
| 2199 | rdev->ih.ring_size = ring_size; | 2209 | rdev->ih.ring_size = ring_size; |
| 2200 | rdev->ih.align_mask = 4 - 1; | 2210 | rdev->ih.ptr_mask = rdev->ih.ring_size - 1; |
| 2211 | rdev->ih.rptr = 0; | ||
| 2201 | } | 2212 | } |
| 2202 | 2213 | ||
| 2203 | static int r600_ih_ring_alloc(struct radeon_device *rdev, unsigned ring_size) | 2214 | static int r600_ih_ring_alloc(struct radeon_device *rdev) |
| 2204 | { | 2215 | { |
| 2205 | int r; | 2216 | int r; |
| 2206 | 2217 | ||
| 2207 | rdev->ih.ring_size = ring_size; | ||
| 2208 | /* Allocate ring buffer */ | 2218 | /* Allocate ring buffer */ |
| 2209 | if (rdev->ih.ring_obj == NULL) { | 2219 | if (rdev->ih.ring_obj == NULL) { |
| 2210 | r = radeon_bo_create(rdev, NULL, rdev->ih.ring_size, | 2220 | r = radeon_bo_create(rdev, NULL, rdev->ih.ring_size, |
| @@ -2234,9 +2244,6 @@ static int r600_ih_ring_alloc(struct radeon_device *rdev, unsigned ring_size) | |||
| 2234 | return r; | 2244 | return r; |
| 2235 | } | 2245 | } |
| 2236 | } | 2246 | } |
| 2237 | rdev->ih.ptr_mask = (rdev->cp.ring_size / 4) - 1; | ||
| 2238 | rdev->ih.rptr = 0; | ||
| 2239 | |||
| 2240 | return 0; | 2247 | return 0; |
| 2241 | } | 2248 | } |
| 2242 | 2249 | ||
| @@ -2386,7 +2393,7 @@ int r600_irq_init(struct radeon_device *rdev) | |||
| 2386 | u32 interrupt_cntl, ih_cntl, ih_rb_cntl; | 2393 | u32 interrupt_cntl, ih_cntl, ih_rb_cntl; |
| 2387 | 2394 | ||
| 2388 | /* allocate ring */ | 2395 | /* allocate ring */ |
| 2389 | ret = r600_ih_ring_alloc(rdev, rdev->ih.ring_size); | 2396 | ret = r600_ih_ring_alloc(rdev); |
| 2390 | if (ret) | 2397 | if (ret) |
| 2391 | return ret; | 2398 | return ret; |
| 2392 | 2399 | ||
| @@ -2449,10 +2456,15 @@ int r600_irq_init(struct radeon_device *rdev) | |||
| 2449 | return ret; | 2456 | return ret; |
| 2450 | } | 2457 | } |
| 2451 | 2458 | ||
| 2452 | void r600_irq_fini(struct radeon_device *rdev) | 2459 | void r600_irq_suspend(struct radeon_device *rdev) |
| 2453 | { | 2460 | { |
| 2454 | r600_disable_interrupts(rdev); | 2461 | r600_disable_interrupts(rdev); |
| 2455 | r600_rlc_stop(rdev); | 2462 | r600_rlc_stop(rdev); |
| 2463 | } | ||
| 2464 | |||
| 2465 | void r600_irq_fini(struct radeon_device *rdev) | ||
| 2466 | { | ||
| 2467 | r600_irq_suspend(rdev); | ||
| 2456 | r600_ih_ring_fini(rdev); | 2468 | r600_ih_ring_fini(rdev); |
| 2457 | } | 2469 | } |
| 2458 | 2470 | ||
| @@ -2467,8 +2479,12 @@ int r600_irq_set(struct radeon_device *rdev) | |||
| 2467 | return -EINVAL; | 2479 | return -EINVAL; |
| 2468 | } | 2480 | } |
| 2469 | /* don't enable anything if the ih is disabled */ | 2481 | /* don't enable anything if the ih is disabled */ |
| 2470 | if (!rdev->ih.enabled) | 2482 | if (!rdev->ih.enabled) { |
| 2483 | r600_disable_interrupts(rdev); | ||
| 2484 | /* force the active interrupt state to all disabled */ | ||
| 2485 | r600_disable_interrupt_state(rdev); | ||
| 2471 | return 0; | 2486 | return 0; |
| 2487 | } | ||
| 2472 | 2488 | ||
| 2473 | if (ASIC_IS_DCE3(rdev)) { | 2489 | if (ASIC_IS_DCE3(rdev)) { |
| 2474 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; | 2490 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| @@ -2638,16 +2654,18 @@ static inline u32 r600_get_ih_wptr(struct radeon_device *rdev) | |||
| 2638 | wptr = RREG32(IH_RB_WPTR); | 2654 | wptr = RREG32(IH_RB_WPTR); |
| 2639 | 2655 | ||
| 2640 | if (wptr & RB_OVERFLOW) { | 2656 | if (wptr & RB_OVERFLOW) { |
| 2641 | WARN_ON(1); | 2657 | /* When a ring buffer overflow happen start parsing interrupt |
| 2642 | /* XXX deal with overflow */ | 2658 | * from the last not overwritten vector (wptr + 16). Hopefully |
| 2643 | DRM_ERROR("IH RB overflow\n"); | 2659 | * this should allow us to catchup. |
| 2660 | */ | ||
| 2661 | dev_warn(rdev->dev, "IH ring buffer overflow (0x%08X, %d, %d)\n", | ||
| 2662 | wptr, rdev->ih.rptr, (wptr + 16) + rdev->ih.ptr_mask); | ||
| 2663 | rdev->ih.rptr = (wptr + 16) & rdev->ih.ptr_mask; | ||
| 2644 | tmp = RREG32(IH_RB_CNTL); | 2664 | tmp = RREG32(IH_RB_CNTL); |
| 2645 | tmp |= IH_WPTR_OVERFLOW_CLEAR; | 2665 | tmp |= IH_WPTR_OVERFLOW_CLEAR; |
| 2646 | WREG32(IH_RB_CNTL, tmp); | 2666 | WREG32(IH_RB_CNTL, tmp); |
| 2647 | } | 2667 | } |
| 2648 | wptr = wptr & WPTR_OFFSET_MASK; | 2668 | return (wptr & rdev->ih.ptr_mask); |
| 2649 | |||
| 2650 | return wptr; | ||
| 2651 | } | 2669 | } |
| 2652 | 2670 | ||
| 2653 | /* r600 IV Ring | 2671 | /* r600 IV Ring |
| @@ -2683,12 +2701,13 @@ int r600_irq_process(struct radeon_device *rdev) | |||
| 2683 | u32 wptr = r600_get_ih_wptr(rdev); | 2701 | u32 wptr = r600_get_ih_wptr(rdev); |
| 2684 | u32 rptr = rdev->ih.rptr; | 2702 | u32 rptr = rdev->ih.rptr; |
| 2685 | u32 src_id, src_data; | 2703 | u32 src_id, src_data; |
| 2686 | u32 last_entry = rdev->ih.ring_size - 16; | ||
| 2687 | u32 ring_index, disp_int, disp_int_cont, disp_int_cont2; | 2704 | u32 ring_index, disp_int, disp_int_cont, disp_int_cont2; |
| 2688 | unsigned long flags; | 2705 | unsigned long flags; |
| 2689 | bool queue_hotplug = false; | 2706 | bool queue_hotplug = false; |
| 2690 | 2707 | ||
| 2691 | DRM_DEBUG("r600_irq_process start: rptr %d, wptr %d\n", rptr, wptr); | 2708 | DRM_DEBUG("r600_irq_process start: rptr %d, wptr %d\n", rptr, wptr); |
| 2709 | if (!rdev->ih.enabled) | ||
| 2710 | return IRQ_NONE; | ||
| 2692 | 2711 | ||
| 2693 | spin_lock_irqsave(&rdev->ih.lock, flags); | 2712 | spin_lock_irqsave(&rdev->ih.lock, flags); |
| 2694 | 2713 | ||
| @@ -2729,7 +2748,7 @@ restart_ih: | |||
| 2729 | } | 2748 | } |
| 2730 | break; | 2749 | break; |
| 2731 | default: | 2750 | default: |
| 2732 | DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); | 2751 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2733 | break; | 2752 | break; |
| 2734 | } | 2753 | } |
| 2735 | break; | 2754 | break; |
| @@ -2749,7 +2768,7 @@ restart_ih: | |||
| 2749 | } | 2768 | } |
| 2750 | break; | 2769 | break; |
| 2751 | default: | 2770 | default: |
| 2752 | DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); | 2771 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2753 | break; | 2772 | break; |
| 2754 | } | 2773 | } |
| 2755 | break; | 2774 | break; |
| @@ -2798,7 +2817,7 @@ restart_ih: | |||
| 2798 | } | 2817 | } |
| 2799 | break; | 2818 | break; |
| 2800 | default: | 2819 | default: |
| 2801 | DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); | 2820 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2802 | break; | 2821 | break; |
| 2803 | } | 2822 | } |
| 2804 | break; | 2823 | break; |
| @@ -2812,15 +2831,13 @@ restart_ih: | |||
| 2812 | DRM_DEBUG("IH: CP EOP\n"); | 2831 | DRM_DEBUG("IH: CP EOP\n"); |
| 2813 | break; | 2832 | break; |
| 2814 | default: | 2833 | default: |
| 2815 | DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); | 2834 | DRM_DEBUG("Unhandled interrupt: %d %d\n", src_id, src_data); |
| 2816 | break; | 2835 | break; |
| 2817 | } | 2836 | } |
| 2818 | 2837 | ||
| 2819 | /* wptr/rptr are in bytes! */ | 2838 | /* wptr/rptr are in bytes! */ |
| 2820 | if (rptr == last_entry) | 2839 | rptr += 16; |
| 2821 | rptr = 0; | 2840 | rptr &= rdev->ih.ptr_mask; |
| 2822 | else | ||
| 2823 | rptr += 16; | ||
| 2824 | } | 2841 | } |
| 2825 | /* make sure wptr hasn't changed while processing */ | 2842 | /* make sure wptr hasn't changed while processing */ |
| 2826 | wptr = r600_get_ih_wptr(rdev); | 2843 | wptr = r600_get_ih_wptr(rdev); |
| @@ -2888,3 +2905,18 @@ int r600_debugfs_mc_info_init(struct radeon_device *rdev) | |||
| 2888 | return 0; | 2905 | return 0; |
| 2889 | #endif | 2906 | #endif |
| 2890 | } | 2907 | } |
| 2908 | |||
| 2909 | /** | ||
| 2910 | * r600_ioctl_wait_idle - flush host path cache on wait idle ioctl | ||
| 2911 | * rdev: radeon device structure | ||
| 2912 | * bo: buffer object struct which userspace is waiting for idle | ||
| 2913 | * | ||
| 2914 | * Some R6XX/R7XX doesn't seems to take into account HDP flush performed | ||
| 2915 | * through ring buffer, this leads to corruption in rendering, see | ||
| 2916 | * http://bugzilla.kernel.org/show_bug.cgi?id=15186 to avoid this we | ||
| 2917 | * directly perform HDP flush by writing register through MMIO. | ||
| 2918 | */ | ||
| 2919 | void r600_ioctl_wait_idle(struct radeon_device *rdev, struct radeon_bo *bo) | ||
| 2920 | { | ||
| 2921 | WREG32(R_005480_HDP_MEM_COHERENCY_FLUSH_CNTL, 0x1); | ||
| 2922 | } | ||
diff --git a/drivers/gpu/drm/radeon/r600_audio.c b/drivers/gpu/drm/radeon/r600_audio.c index 99e2c3891a7d..b1c1d3433454 100644 --- a/drivers/gpu/drm/radeon/r600_audio.c +++ b/drivers/gpu/drm/radeon/r600_audio.c | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | */ | 35 | */ |
| 36 | static int r600_audio_chipset_supported(struct radeon_device *rdev) | 36 | static int r600_audio_chipset_supported(struct radeon_device *rdev) |
| 37 | { | 37 | { |
| 38 | return rdev->family >= CHIP_R600 | 38 | return (rdev->family >= CHIP_R600 && rdev->family < CHIP_RV710) |
| 39 | || rdev->family == CHIP_RS600 | 39 | || rdev->family == CHIP_RS600 |
| 40 | || rdev->family == CHIP_RS690 | 40 | || rdev->family == CHIP_RS690 |
| 41 | || rdev->family == CHIP_RS740; | 41 | || rdev->family == CHIP_RS740; |
diff --git a/drivers/gpu/drm/radeon/r600_blit_kms.c b/drivers/gpu/drm/radeon/r600_blit_kms.c index 8787ea89dc6e..af1c3ca8a4cb 100644 --- a/drivers/gpu/drm/radeon/r600_blit_kms.c +++ b/drivers/gpu/drm/radeon/r600_blit_kms.c | |||
| @@ -449,6 +449,7 @@ int r600_blit_init(struct radeon_device *rdev) | |||
| 449 | u32 packet2s[16]; | 449 | u32 packet2s[16]; |
| 450 | int num_packet2s = 0; | 450 | int num_packet2s = 0; |
| 451 | 451 | ||
| 452 | mutex_init(&rdev->r600_blit.mutex); | ||
| 452 | rdev->r600_blit.state_offset = 0; | 453 | rdev->r600_blit.state_offset = 0; |
| 453 | 454 | ||
| 454 | if (rdev->family >= CHIP_RV770) | 455 | if (rdev->family >= CHIP_RV770) |
| @@ -512,14 +513,16 @@ void r600_blit_fini(struct radeon_device *rdev) | |||
| 512 | { | 513 | { |
| 513 | int r; | 514 | int r; |
| 514 | 515 | ||
| 516 | if (rdev->r600_blit.shader_obj == NULL) | ||
| 517 | return; | ||
| 518 | /* If we can't reserve the bo, unref should be enough to destroy | ||
| 519 | * it when it becomes idle. | ||
| 520 | */ | ||
| 515 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | 521 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); |
| 516 | if (unlikely(r != 0)) { | 522 | if (!r) { |
| 517 | dev_err(rdev->dev, "(%d) can't finish r600 blit\n", r); | 523 | radeon_bo_unpin(rdev->r600_blit.shader_obj); |
| 518 | goto out_unref; | 524 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); |
| 519 | } | 525 | } |
| 520 | radeon_bo_unpin(rdev->r600_blit.shader_obj); | ||
| 521 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 522 | out_unref: | ||
| 523 | radeon_bo_unref(&rdev->r600_blit.shader_obj); | 526 | radeon_bo_unref(&rdev->r600_blit.shader_obj); |
| 524 | } | 527 | } |
| 525 | 528 | ||
| @@ -555,7 +558,8 @@ int r600_blit_prepare_copy(struct radeon_device *rdev, int size_bytes) | |||
| 555 | int dwords_per_loop = 76, num_loops; | 558 | int dwords_per_loop = 76, num_loops; |
| 556 | 559 | ||
| 557 | r = r600_vb_ib_get(rdev); | 560 | r = r600_vb_ib_get(rdev); |
| 558 | WARN_ON(r); | 561 | if (r) |
| 562 | return r; | ||
| 559 | 563 | ||
| 560 | /* set_render_target emits 2 extra dwords on rv6xx */ | 564 | /* set_render_target emits 2 extra dwords on rv6xx */ |
| 561 | if (rdev->family > CHIP_R600 && rdev->family < CHIP_RV770) | 565 | if (rdev->family > CHIP_R600 && rdev->family < CHIP_RV770) |
| @@ -581,7 +585,8 @@ int r600_blit_prepare_copy(struct radeon_device *rdev, int size_bytes) | |||
| 581 | ring_size += 5; /* done copy */ | 585 | ring_size += 5; /* done copy */ |
| 582 | ring_size += 7; /* fence emit for done copy */ | 586 | ring_size += 7; /* fence emit for done copy */ |
| 583 | r = radeon_ring_lock(rdev, ring_size); | 587 | r = radeon_ring_lock(rdev, ring_size); |
| 584 | WARN_ON(r); | 588 | if (r) |
| 589 | return r; | ||
| 585 | 590 | ||
| 586 | set_default_state(rdev); /* 14 */ | 591 | set_default_state(rdev); /* 14 */ |
| 587 | set_shaders(rdev); /* 26 */ | 592 | set_shaders(rdev); /* 26 */ |
diff --git a/drivers/gpu/drm/radeon/r600_cs.c b/drivers/gpu/drm/radeon/r600_cs.c index 44060b92d9e6..e4c45ec16507 100644 --- a/drivers/gpu/drm/radeon/r600_cs.c +++ b/drivers/gpu/drm/radeon/r600_cs.c | |||
| @@ -36,6 +36,10 @@ static int r600_cs_packet_next_reloc_nomm(struct radeon_cs_parser *p, | |||
| 36 | typedef int (*next_reloc_t)(struct radeon_cs_parser*, struct radeon_cs_reloc**); | 36 | typedef int (*next_reloc_t)(struct radeon_cs_parser*, struct radeon_cs_reloc**); |
| 37 | static next_reloc_t r600_cs_packet_next_reloc = &r600_cs_packet_next_reloc_mm; | 37 | static next_reloc_t r600_cs_packet_next_reloc = &r600_cs_packet_next_reloc_mm; |
| 38 | 38 | ||
| 39 | struct r600_cs_track { | ||
| 40 | u32 cb_color0_base_last; | ||
| 41 | }; | ||
| 42 | |||
| 39 | /** | 43 | /** |
| 40 | * r600_cs_packet_parse() - parse cp packet and point ib index to next packet | 44 | * r600_cs_packet_parse() - parse cp packet and point ib index to next packet |
| 41 | * @parser: parser structure holding parsing context. | 45 | * @parser: parser structure holding parsing context. |
| @@ -177,6 +181,28 @@ static int r600_cs_packet_next_reloc_nomm(struct radeon_cs_parser *p, | |||
| 177 | } | 181 | } |
| 178 | 182 | ||
| 179 | /** | 183 | /** |
| 184 | * r600_cs_packet_next_is_pkt3_nop() - test if next packet is packet3 nop for reloc | ||
| 185 | * @parser: parser structure holding parsing context. | ||
| 186 | * | ||
| 187 | * Check next packet is relocation packet3, do bo validation and compute | ||
| 188 | * GPU offset using the provided start. | ||
| 189 | **/ | ||
| 190 | static inline int r600_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p) | ||
| 191 | { | ||
| 192 | struct radeon_cs_packet p3reloc; | ||
| 193 | int r; | ||
| 194 | |||
| 195 | r = r600_cs_packet_parse(p, &p3reloc, p->idx); | ||
| 196 | if (r) { | ||
| 197 | return 0; | ||
| 198 | } | ||
| 199 | if (p3reloc.type != PACKET_TYPE3 || p3reloc.opcode != PACKET3_NOP) { | ||
| 200 | return 0; | ||
| 201 | } | ||
| 202 | return 1; | ||
| 203 | } | ||
| 204 | |||
| 205 | /** | ||
| 180 | * r600_cs_packet_next_vline() - parse userspace VLINE packet | 206 | * r600_cs_packet_next_vline() - parse userspace VLINE packet |
| 181 | * @parser: parser structure holding parsing context. | 207 | * @parser: parser structure holding parsing context. |
| 182 | * | 208 | * |
| @@ -337,6 +363,7 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 337 | struct radeon_cs_packet *pkt) | 363 | struct radeon_cs_packet *pkt) |
| 338 | { | 364 | { |
| 339 | struct radeon_cs_reloc *reloc; | 365 | struct radeon_cs_reloc *reloc; |
| 366 | struct r600_cs_track *track; | ||
| 340 | volatile u32 *ib; | 367 | volatile u32 *ib; |
| 341 | unsigned idx; | 368 | unsigned idx; |
| 342 | unsigned i; | 369 | unsigned i; |
| @@ -344,6 +371,7 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 344 | int r; | 371 | int r; |
| 345 | u32 idx_value; | 372 | u32 idx_value; |
| 346 | 373 | ||
| 374 | track = (struct r600_cs_track *)p->track; | ||
| 347 | ib = p->ib->ptr; | 375 | ib = p->ib->ptr; |
| 348 | idx = pkt->idx + 1; | 376 | idx = pkt->idx + 1; |
| 349 | idx_value = radeon_get_ib_value(p, idx); | 377 | idx_value = radeon_get_ib_value(p, idx); |
| @@ -503,9 +531,60 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 503 | for (i = 0; i < pkt->count; i++) { | 531 | for (i = 0; i < pkt->count; i++) { |
| 504 | reg = start_reg + (4 * i); | 532 | reg = start_reg + (4 * i); |
| 505 | switch (reg) { | 533 | switch (reg) { |
| 534 | /* This register were added late, there is userspace | ||
| 535 | * which does provide relocation for those but set | ||
| 536 | * 0 offset. In order to avoid breaking old userspace | ||
| 537 | * we detect this and set address to point to last | ||
| 538 | * CB_COLOR0_BASE, note that if userspace doesn't set | ||
| 539 | * CB_COLOR0_BASE before this register we will report | ||
| 540 | * error. Old userspace always set CB_COLOR0_BASE | ||
| 541 | * before any of this. | ||
| 542 | */ | ||
| 543 | case R_0280E0_CB_COLOR0_FRAG: | ||
| 544 | case R_0280E4_CB_COLOR1_FRAG: | ||
| 545 | case R_0280E8_CB_COLOR2_FRAG: | ||
| 546 | case R_0280EC_CB_COLOR3_FRAG: | ||
| 547 | case R_0280F0_CB_COLOR4_FRAG: | ||
| 548 | case R_0280F4_CB_COLOR5_FRAG: | ||
| 549 | case R_0280F8_CB_COLOR6_FRAG: | ||
| 550 | case R_0280FC_CB_COLOR7_FRAG: | ||
| 551 | case R_0280C0_CB_COLOR0_TILE: | ||
| 552 | case R_0280C4_CB_COLOR1_TILE: | ||
| 553 | case R_0280C8_CB_COLOR2_TILE: | ||
| 554 | case R_0280CC_CB_COLOR3_TILE: | ||
| 555 | case R_0280D0_CB_COLOR4_TILE: | ||
| 556 | case R_0280D4_CB_COLOR5_TILE: | ||
| 557 | case R_0280D8_CB_COLOR6_TILE: | ||
| 558 | case R_0280DC_CB_COLOR7_TILE: | ||
| 559 | if (!r600_cs_packet_next_is_pkt3_nop(p)) { | ||
| 560 | if (!track->cb_color0_base_last) { | ||
| 561 | dev_err(p->dev, "Broken old userspace ? no cb_color0_base supplied before trying to write 0x%08X\n", reg); | ||
| 562 | return -EINVAL; | ||
| 563 | } | ||
| 564 | ib[idx+1+i] = track->cb_color0_base_last; | ||
| 565 | printk_once(KERN_WARNING "radeon: You have old & broken userspace " | ||
| 566 | "please consider updating mesa & xf86-video-ati\n"); | ||
| 567 | } else { | ||
| 568 | r = r600_cs_packet_next_reloc(p, &reloc); | ||
| 569 | if (r) { | ||
| 570 | dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); | ||
| 571 | return -EINVAL; | ||
| 572 | } | ||
| 573 | ib[idx+1+i] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff); | ||
| 574 | } | ||
| 575 | break; | ||
| 506 | case DB_DEPTH_BASE: | 576 | case DB_DEPTH_BASE: |
| 507 | case DB_HTILE_DATA_BASE: | 577 | case DB_HTILE_DATA_BASE: |
| 508 | case CB_COLOR0_BASE: | 578 | case CB_COLOR0_BASE: |
| 579 | r = r600_cs_packet_next_reloc(p, &reloc); | ||
| 580 | if (r) { | ||
| 581 | DRM_ERROR("bad SET_CONTEXT_REG " | ||
| 582 | "0x%04X\n", reg); | ||
| 583 | return -EINVAL; | ||
| 584 | } | ||
| 585 | ib[idx+1+i] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff); | ||
| 586 | track->cb_color0_base_last = ib[idx+1+i]; | ||
| 587 | break; | ||
| 509 | case CB_COLOR1_BASE: | 588 | case CB_COLOR1_BASE: |
| 510 | case CB_COLOR2_BASE: | 589 | case CB_COLOR2_BASE: |
| 511 | case CB_COLOR3_BASE: | 590 | case CB_COLOR3_BASE: |
| @@ -678,8 +757,11 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 678 | int r600_cs_parse(struct radeon_cs_parser *p) | 757 | int r600_cs_parse(struct radeon_cs_parser *p) |
| 679 | { | 758 | { |
| 680 | struct radeon_cs_packet pkt; | 759 | struct radeon_cs_packet pkt; |
| 760 | struct r600_cs_track *track; | ||
| 681 | int r; | 761 | int r; |
| 682 | 762 | ||
| 763 | track = kzalloc(sizeof(*track), GFP_KERNEL); | ||
| 764 | p->track = track; | ||
| 683 | do { | 765 | do { |
| 684 | r = r600_cs_packet_parse(p, &pkt, p->idx); | 766 | r = r600_cs_packet_parse(p, &pkt, p->idx); |
| 685 | if (r) { | 767 | if (r) { |
| @@ -757,6 +839,7 @@ int r600_cs_legacy(struct drm_device *dev, void *data, struct drm_file *filp, | |||
| 757 | /* initialize parser */ | 839 | /* initialize parser */ |
| 758 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); | 840 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); |
| 759 | parser.filp = filp; | 841 | parser.filp = filp; |
| 842 | parser.dev = &dev->pdev->dev; | ||
| 760 | parser.rdev = NULL; | 843 | parser.rdev = NULL; |
| 761 | parser.family = family; | 844 | parser.family = family; |
| 762 | parser.ib = &fake_ib; | 845 | parser.ib = &fake_ib; |
diff --git a/drivers/gpu/drm/radeon/r600d.h b/drivers/gpu/drm/radeon/r600d.h index 05894edadab4..30480881aed1 100644 --- a/drivers/gpu/drm/radeon/r600d.h +++ b/drivers/gpu/drm/radeon/r600d.h | |||
| @@ -882,4 +882,29 @@ | |||
| 882 | #define S_000E60_SOFT_RESET_VMC(x) (((x) & 1) << 17) | 882 | #define S_000E60_SOFT_RESET_VMC(x) (((x) & 1) << 17) |
| 883 | 883 | ||
| 884 | #define R_005480_HDP_MEM_COHERENCY_FLUSH_CNTL 0x5480 | 884 | #define R_005480_HDP_MEM_COHERENCY_FLUSH_CNTL 0x5480 |
| 885 | |||
| 886 | #define R_0280E0_CB_COLOR0_FRAG 0x0280E0 | ||
| 887 | #define S_0280E0_BASE_256B(x) (((x) & 0xFFFFFFFF) << 0) | ||
| 888 | #define G_0280E0_BASE_256B(x) (((x) >> 0) & 0xFFFFFFFF) | ||
| 889 | #define C_0280E0_BASE_256B 0x00000000 | ||
| 890 | #define R_0280E4_CB_COLOR1_FRAG 0x0280E4 | ||
| 891 | #define R_0280E8_CB_COLOR2_FRAG 0x0280E8 | ||
| 892 | #define R_0280EC_CB_COLOR3_FRAG 0x0280EC | ||
| 893 | #define R_0280F0_CB_COLOR4_FRAG 0x0280F0 | ||
| 894 | #define R_0280F4_CB_COLOR5_FRAG 0x0280F4 | ||
| 895 | #define R_0280F8_CB_COLOR6_FRAG 0x0280F8 | ||
| 896 | #define R_0280FC_CB_COLOR7_FRAG 0x0280FC | ||
| 897 | #define R_0280C0_CB_COLOR0_TILE 0x0280C0 | ||
| 898 | #define S_0280C0_BASE_256B(x) (((x) & 0xFFFFFFFF) << 0) | ||
| 899 | #define G_0280C0_BASE_256B(x) (((x) >> 0) & 0xFFFFFFFF) | ||
| 900 | #define C_0280C0_BASE_256B 0x00000000 | ||
| 901 | #define R_0280C4_CB_COLOR1_TILE 0x0280C4 | ||
| 902 | #define R_0280C8_CB_COLOR2_TILE 0x0280C8 | ||
| 903 | #define R_0280CC_CB_COLOR3_TILE 0x0280CC | ||
| 904 | #define R_0280D0_CB_COLOR4_TILE 0x0280D0 | ||
| 905 | #define R_0280D4_CB_COLOR5_TILE 0x0280D4 | ||
| 906 | #define R_0280D8_CB_COLOR6_TILE 0x0280D8 | ||
| 907 | #define R_0280DC_CB_COLOR7_TILE 0x0280DC | ||
| 908 | |||
| 909 | |||
| 885 | #endif | 910 | #endif |
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index eb5f99b9469d..f57480ba1355 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h | |||
| @@ -410,13 +410,13 @@ struct r600_ih { | |||
| 410 | unsigned wptr_old; | 410 | unsigned wptr_old; |
| 411 | unsigned ring_size; | 411 | unsigned ring_size; |
| 412 | uint64_t gpu_addr; | 412 | uint64_t gpu_addr; |
| 413 | uint32_t align_mask; | ||
| 414 | uint32_t ptr_mask; | 413 | uint32_t ptr_mask; |
| 415 | spinlock_t lock; | 414 | spinlock_t lock; |
| 416 | bool enabled; | 415 | bool enabled; |
| 417 | }; | 416 | }; |
| 418 | 417 | ||
| 419 | struct r600_blit { | 418 | struct r600_blit { |
| 419 | struct mutex mutex; | ||
| 420 | struct radeon_bo *shader_obj; | 420 | struct radeon_bo *shader_obj; |
| 421 | u64 shader_gpu_addr; | 421 | u64 shader_gpu_addr; |
| 422 | u32 vs_offset, ps_offset; | 422 | u32 vs_offset, ps_offset; |
| @@ -465,6 +465,7 @@ struct radeon_cs_chunk { | |||
| 465 | }; | 465 | }; |
| 466 | 466 | ||
| 467 | struct radeon_cs_parser { | 467 | struct radeon_cs_parser { |
| 468 | struct device *dev; | ||
| 468 | struct radeon_device *rdev; | 469 | struct radeon_device *rdev; |
| 469 | struct drm_file *filp; | 470 | struct drm_file *filp; |
| 470 | /* chunks */ | 471 | /* chunks */ |
| @@ -660,6 +661,13 @@ struct radeon_asic { | |||
| 660 | void (*hpd_fini)(struct radeon_device *rdev); | 661 | void (*hpd_fini)(struct radeon_device *rdev); |
| 661 | bool (*hpd_sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd); | 662 | bool (*hpd_sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd); |
| 662 | void (*hpd_set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd); | 663 | void (*hpd_set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd); |
| 664 | /* ioctl hw specific callback. Some hw might want to perform special | ||
| 665 | * operation on specific ioctl. For instance on wait idle some hw | ||
| 666 | * might want to perform and HDP flush through MMIO as it seems that | ||
| 667 | * some R6XX/R7XX hw doesn't take HDP flush into account if programmed | ||
| 668 | * through ring. | ||
| 669 | */ | ||
| 670 | void (*ioctl_wait_idle)(struct radeon_device *rdev, struct radeon_bo *bo); | ||
| 663 | }; | 671 | }; |
| 664 | 672 | ||
| 665 | /* | 673 | /* |
| @@ -847,7 +855,7 @@ void r600_kms_blit_copy(struct radeon_device *rdev, | |||
| 847 | 855 | ||
| 848 | static inline uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg) | 856 | static inline uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg) |
| 849 | { | 857 | { |
| 850 | if (reg < 0x10000) | 858 | if (reg < rdev->rmmio_size) |
| 851 | return readl(((void __iomem *)rdev->rmmio) + reg); | 859 | return readl(((void __iomem *)rdev->rmmio) + reg); |
| 852 | else { | 860 | else { |
| 853 | writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX); | 861 | writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX); |
| @@ -857,7 +865,7 @@ static inline uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg) | |||
| 857 | 865 | ||
| 858 | static inline void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v) | 866 | static inline void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v) |
| 859 | { | 867 | { |
| 860 | if (reg < 0x10000) | 868 | if (reg < rdev->rmmio_size) |
| 861 | writel(v, ((void __iomem *)rdev->rmmio) + reg); | 869 | writel(v, ((void __iomem *)rdev->rmmio) + reg); |
| 862 | else { | 870 | else { |
| 863 | writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX); | 871 | writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX); |
| @@ -1017,6 +1025,8 @@ static inline void radeon_ring_write(struct radeon_device *rdev, uint32_t v) | |||
| 1017 | #define radeon_hpd_set_polarity(rdev, hpd) (rdev)->asic->hpd_set_polarity((rdev), (hpd)) | 1025 | #define radeon_hpd_set_polarity(rdev, hpd) (rdev)->asic->hpd_set_polarity((rdev), (hpd)) |
| 1018 | 1026 | ||
| 1019 | /* Common functions */ | 1027 | /* Common functions */ |
| 1028 | /* AGP */ | ||
| 1029 | extern void radeon_agp_disable(struct radeon_device *rdev); | ||
| 1020 | extern int radeon_gart_table_vram_pin(struct radeon_device *rdev); | 1030 | extern int radeon_gart_table_vram_pin(struct radeon_device *rdev); |
| 1021 | extern int radeon_modeset_init(struct radeon_device *rdev); | 1031 | extern int radeon_modeset_init(struct radeon_device *rdev); |
| 1022 | extern void radeon_modeset_fini(struct radeon_device *rdev); | 1032 | extern void radeon_modeset_fini(struct radeon_device *rdev); |
| @@ -1140,6 +1150,7 @@ extern bool r600_card_posted(struct radeon_device *rdev); | |||
| 1140 | extern void r600_cp_stop(struct radeon_device *rdev); | 1150 | extern void r600_cp_stop(struct radeon_device *rdev); |
| 1141 | extern void r600_ring_init(struct radeon_device *rdev, unsigned ring_size); | 1151 | extern void r600_ring_init(struct radeon_device *rdev, unsigned ring_size); |
| 1142 | extern int r600_cp_resume(struct radeon_device *rdev); | 1152 | extern int r600_cp_resume(struct radeon_device *rdev); |
| 1153 | extern void r600_cp_fini(struct radeon_device *rdev); | ||
| 1143 | extern int r600_count_pipe_bits(uint32_t val); | 1154 | extern int r600_count_pipe_bits(uint32_t val); |
| 1144 | extern int r600_gart_clear_page(struct radeon_device *rdev, int i); | 1155 | extern int r600_gart_clear_page(struct radeon_device *rdev, int i); |
| 1145 | extern int r600_mc_wait_for_idle(struct radeon_device *rdev); | 1156 | extern int r600_mc_wait_for_idle(struct radeon_device *rdev); |
| @@ -1160,7 +1171,8 @@ extern int r600_irq_init(struct radeon_device *rdev); | |||
| 1160 | extern void r600_irq_fini(struct radeon_device *rdev); | 1171 | extern void r600_irq_fini(struct radeon_device *rdev); |
| 1161 | extern void r600_ih_ring_init(struct radeon_device *rdev, unsigned ring_size); | 1172 | extern void r600_ih_ring_init(struct radeon_device *rdev, unsigned ring_size); |
| 1162 | extern int r600_irq_set(struct radeon_device *rdev); | 1173 | extern int r600_irq_set(struct radeon_device *rdev); |
| 1163 | 1174 | extern void r600_irq_suspend(struct radeon_device *rdev); | |
| 1175 | /* r600 audio */ | ||
| 1164 | extern int r600_audio_init(struct radeon_device *rdev); | 1176 | extern int r600_audio_init(struct radeon_device *rdev); |
| 1165 | extern int r600_audio_tmds_index(struct drm_encoder *encoder); | 1177 | extern int r600_audio_tmds_index(struct drm_encoder *encoder); |
| 1166 | extern void r600_audio_set_clock(struct drm_encoder *encoder, int clock); | 1178 | extern void r600_audio_set_clock(struct drm_encoder *encoder, int clock); |
diff --git a/drivers/gpu/drm/radeon/radeon_agp.c b/drivers/gpu/drm/radeon/radeon_agp.c index 220f454ea9fa..c0681a5556dc 100644 --- a/drivers/gpu/drm/radeon/radeon_agp.c +++ b/drivers/gpu/drm/radeon/radeon_agp.c | |||
| @@ -144,9 +144,19 @@ int radeon_agp_init(struct radeon_device *rdev) | |||
| 144 | 144 | ||
| 145 | ret = drm_agp_info(rdev->ddev, &info); | 145 | ret = drm_agp_info(rdev->ddev, &info); |
| 146 | if (ret) { | 146 | if (ret) { |
| 147 | drm_agp_release(rdev->ddev); | ||
| 147 | DRM_ERROR("Unable to get AGP info: %d\n", ret); | 148 | DRM_ERROR("Unable to get AGP info: %d\n", ret); |
| 148 | return ret; | 149 | return ret; |
| 149 | } | 150 | } |
| 151 | |||
| 152 | if (rdev->ddev->agp->agp_info.aper_size < 32) { | ||
| 153 | drm_agp_release(rdev->ddev); | ||
| 154 | dev_warn(rdev->dev, "AGP aperture too small (%zuM) " | ||
| 155 | "need at least 32M, disabling AGP\n", | ||
| 156 | rdev->ddev->agp->agp_info.aper_size); | ||
| 157 | return -EINVAL; | ||
| 158 | } | ||
| 159 | |||
| 150 | mode.mode = info.mode; | 160 | mode.mode = info.mode; |
| 151 | agp_status = (RREG32(RADEON_AGP_STATUS) | RADEON_AGPv3_MODE) & mode.mode; | 161 | agp_status = (RREG32(RADEON_AGP_STATUS) | RADEON_AGPv3_MODE) & mode.mode; |
| 152 | is_v3 = !!(agp_status & RADEON_AGPv3_MODE); | 162 | is_v3 = !!(agp_status & RADEON_AGPv3_MODE); |
| @@ -221,6 +231,7 @@ int radeon_agp_init(struct radeon_device *rdev) | |||
| 221 | ret = drm_agp_enable(rdev->ddev, mode); | 231 | ret = drm_agp_enable(rdev->ddev, mode); |
| 222 | if (ret) { | 232 | if (ret) { |
| 223 | DRM_ERROR("Unable to enable AGP (mode = 0x%lx)\n", mode.mode); | 233 | DRM_ERROR("Unable to enable AGP (mode = 0x%lx)\n", mode.mode); |
| 234 | drm_agp_release(rdev->ddev); | ||
| 224 | return ret; | 235 | return ret; |
| 225 | } | 236 | } |
| 226 | 237 | ||
diff --git a/drivers/gpu/drm/radeon/radeon_asic.h b/drivers/gpu/drm/radeon/radeon_asic.h index f2fbd2e4e9df..05ee1aeac3fd 100644 --- a/drivers/gpu/drm/radeon/radeon_asic.h +++ b/drivers/gpu/drm/radeon/radeon_asic.h | |||
| @@ -117,6 +117,7 @@ static struct radeon_asic r100_asic = { | |||
| 117 | .hpd_fini = &r100_hpd_fini, | 117 | .hpd_fini = &r100_hpd_fini, |
| 118 | .hpd_sense = &r100_hpd_sense, | 118 | .hpd_sense = &r100_hpd_sense, |
| 119 | .hpd_set_polarity = &r100_hpd_set_polarity, | 119 | .hpd_set_polarity = &r100_hpd_set_polarity, |
| 120 | .ioctl_wait_idle = NULL, | ||
| 120 | }; | 121 | }; |
| 121 | 122 | ||
| 122 | 123 | ||
| @@ -176,6 +177,7 @@ static struct radeon_asic r300_asic = { | |||
| 176 | .hpd_fini = &r100_hpd_fini, | 177 | .hpd_fini = &r100_hpd_fini, |
| 177 | .hpd_sense = &r100_hpd_sense, | 178 | .hpd_sense = &r100_hpd_sense, |
| 178 | .hpd_set_polarity = &r100_hpd_set_polarity, | 179 | .hpd_set_polarity = &r100_hpd_set_polarity, |
| 180 | .ioctl_wait_idle = NULL, | ||
| 179 | }; | 181 | }; |
| 180 | 182 | ||
| 181 | /* | 183 | /* |
| @@ -219,6 +221,7 @@ static struct radeon_asic r420_asic = { | |||
| 219 | .hpd_fini = &r100_hpd_fini, | 221 | .hpd_fini = &r100_hpd_fini, |
| 220 | .hpd_sense = &r100_hpd_sense, | 222 | .hpd_sense = &r100_hpd_sense, |
| 221 | .hpd_set_polarity = &r100_hpd_set_polarity, | 223 | .hpd_set_polarity = &r100_hpd_set_polarity, |
| 224 | .ioctl_wait_idle = NULL, | ||
| 222 | }; | 225 | }; |
| 223 | 226 | ||
| 224 | 227 | ||
| @@ -267,6 +270,7 @@ static struct radeon_asic rs400_asic = { | |||
| 267 | .hpd_fini = &r100_hpd_fini, | 270 | .hpd_fini = &r100_hpd_fini, |
| 268 | .hpd_sense = &r100_hpd_sense, | 271 | .hpd_sense = &r100_hpd_sense, |
| 269 | .hpd_set_polarity = &r100_hpd_set_polarity, | 272 | .hpd_set_polarity = &r100_hpd_set_polarity, |
| 273 | .ioctl_wait_idle = NULL, | ||
| 270 | }; | 274 | }; |
| 271 | 275 | ||
| 272 | 276 | ||
| @@ -323,6 +327,7 @@ static struct radeon_asic rs600_asic = { | |||
| 323 | .hpd_fini = &rs600_hpd_fini, | 327 | .hpd_fini = &rs600_hpd_fini, |
| 324 | .hpd_sense = &rs600_hpd_sense, | 328 | .hpd_sense = &rs600_hpd_sense, |
| 325 | .hpd_set_polarity = &rs600_hpd_set_polarity, | 329 | .hpd_set_polarity = &rs600_hpd_set_polarity, |
| 330 | .ioctl_wait_idle = NULL, | ||
| 326 | }; | 331 | }; |
| 327 | 332 | ||
| 328 | 333 | ||
| @@ -370,6 +375,7 @@ static struct radeon_asic rs690_asic = { | |||
| 370 | .hpd_fini = &rs600_hpd_fini, | 375 | .hpd_fini = &rs600_hpd_fini, |
| 371 | .hpd_sense = &rs600_hpd_sense, | 376 | .hpd_sense = &rs600_hpd_sense, |
| 372 | .hpd_set_polarity = &rs600_hpd_set_polarity, | 377 | .hpd_set_polarity = &rs600_hpd_set_polarity, |
| 378 | .ioctl_wait_idle = NULL, | ||
| 373 | }; | 379 | }; |
| 374 | 380 | ||
| 375 | 381 | ||
| @@ -421,6 +427,7 @@ static struct radeon_asic rv515_asic = { | |||
| 421 | .hpd_fini = &rs600_hpd_fini, | 427 | .hpd_fini = &rs600_hpd_fini, |
| 422 | .hpd_sense = &rs600_hpd_sense, | 428 | .hpd_sense = &rs600_hpd_sense, |
| 423 | .hpd_set_polarity = &rs600_hpd_set_polarity, | 429 | .hpd_set_polarity = &rs600_hpd_set_polarity, |
| 430 | .ioctl_wait_idle = NULL, | ||
| 424 | }; | 431 | }; |
| 425 | 432 | ||
| 426 | 433 | ||
| @@ -463,6 +470,7 @@ static struct radeon_asic r520_asic = { | |||
| 463 | .hpd_fini = &rs600_hpd_fini, | 470 | .hpd_fini = &rs600_hpd_fini, |
| 464 | .hpd_sense = &rs600_hpd_sense, | 471 | .hpd_sense = &rs600_hpd_sense, |
| 465 | .hpd_set_polarity = &rs600_hpd_set_polarity, | 472 | .hpd_set_polarity = &rs600_hpd_set_polarity, |
| 473 | .ioctl_wait_idle = NULL, | ||
| 466 | }; | 474 | }; |
| 467 | 475 | ||
| 468 | /* | 476 | /* |
| @@ -504,6 +512,7 @@ void r600_hpd_fini(struct radeon_device *rdev); | |||
| 504 | bool r600_hpd_sense(struct radeon_device *rdev, enum radeon_hpd_id hpd); | 512 | bool r600_hpd_sense(struct radeon_device *rdev, enum radeon_hpd_id hpd); |
| 505 | void r600_hpd_set_polarity(struct radeon_device *rdev, | 513 | void r600_hpd_set_polarity(struct radeon_device *rdev, |
| 506 | enum radeon_hpd_id hpd); | 514 | enum radeon_hpd_id hpd); |
| 515 | extern void r600_ioctl_wait_idle(struct radeon_device *rdev, struct radeon_bo *bo); | ||
| 507 | 516 | ||
| 508 | static struct radeon_asic r600_asic = { | 517 | static struct radeon_asic r600_asic = { |
| 509 | .init = &r600_init, | 518 | .init = &r600_init, |
| @@ -538,6 +547,7 @@ static struct radeon_asic r600_asic = { | |||
| 538 | .hpd_fini = &r600_hpd_fini, | 547 | .hpd_fini = &r600_hpd_fini, |
| 539 | .hpd_sense = &r600_hpd_sense, | 548 | .hpd_sense = &r600_hpd_sense, |
| 540 | .hpd_set_polarity = &r600_hpd_set_polarity, | 549 | .hpd_set_polarity = &r600_hpd_set_polarity, |
| 550 | .ioctl_wait_idle = r600_ioctl_wait_idle, | ||
| 541 | }; | 551 | }; |
| 542 | 552 | ||
| 543 | /* | 553 | /* |
| @@ -582,6 +592,7 @@ static struct radeon_asic rv770_asic = { | |||
| 582 | .hpd_fini = &r600_hpd_fini, | 592 | .hpd_fini = &r600_hpd_fini, |
| 583 | .hpd_sense = &r600_hpd_sense, | 593 | .hpd_sense = &r600_hpd_sense, |
| 584 | .hpd_set_polarity = &r600_hpd_set_polarity, | 594 | .hpd_set_polarity = &r600_hpd_set_polarity, |
| 595 | .ioctl_wait_idle = r600_ioctl_wait_idle, | ||
| 585 | }; | 596 | }; |
| 586 | 597 | ||
| 587 | #endif | 598 | #endif |
diff --git a/drivers/gpu/drm/radeon/radeon_clocks.c b/drivers/gpu/drm/radeon/radeon_clocks.c index 812f24dbc2a8..73c4405bf42f 100644 --- a/drivers/gpu/drm/radeon/radeon_clocks.c +++ b/drivers/gpu/drm/radeon/radeon_clocks.c | |||
| @@ -56,7 +56,7 @@ uint32_t radeon_legacy_get_engine_clock(struct radeon_device *rdev) | |||
| 56 | else if (post_div == 3) | 56 | else if (post_div == 3) |
| 57 | sclk >>= 2; | 57 | sclk >>= 2; |
| 58 | else if (post_div == 4) | 58 | else if (post_div == 4) |
| 59 | sclk >>= 4; | 59 | sclk >>= 3; |
| 60 | 60 | ||
| 61 | return sclk; | 61 | return sclk; |
| 62 | } | 62 | } |
| @@ -86,7 +86,7 @@ uint32_t radeon_legacy_get_memory_clock(struct radeon_device *rdev) | |||
| 86 | else if (post_div == 3) | 86 | else if (post_div == 3) |
| 87 | mclk >>= 2; | 87 | mclk >>= 2; |
| 88 | else if (post_div == 4) | 88 | else if (post_div == 4) |
| 89 | mclk >>= 4; | 89 | mclk >>= 3; |
| 90 | 90 | ||
| 91 | return mclk; | 91 | return mclk; |
| 92 | } | 92 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c index 7914455c96ca..e7b19440102e 100644 --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c | |||
| @@ -687,6 +687,9 @@ radeon_combios_get_tv_info(struct radeon_device *rdev) | |||
| 687 | uint16_t tv_info; | 687 | uint16_t tv_info; |
| 688 | enum radeon_tv_std tv_std = TV_STD_NTSC; | 688 | enum radeon_tv_std tv_std = TV_STD_NTSC; |
| 689 | 689 | ||
| 690 | if (rdev->bios == NULL) | ||
| 691 | return tv_std; | ||
| 692 | |||
| 690 | tv_info = combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE); | 693 | tv_info = combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE); |
| 691 | if (tv_info) { | 694 | if (tv_info) { |
| 692 | if (RBIOS8(tv_info + 6) == 'T') { | 695 | if (RBIOS8(tv_info + 6) == 'T') { |
| @@ -968,8 +971,7 @@ struct radeon_encoder_lvds *radeon_combios_get_lvds_info(struct radeon_encoder | |||
| 968 | lvds->native_mode.vdisplay); | 971 | lvds->native_mode.vdisplay); |
| 969 | 972 | ||
| 970 | lvds->panel_vcc_delay = RBIOS16(lcd_info + 0x2c); | 973 | lvds->panel_vcc_delay = RBIOS16(lcd_info + 0x2c); |
| 971 | if (lvds->panel_vcc_delay > 2000 || lvds->panel_vcc_delay < 0) | 974 | lvds->panel_vcc_delay = min_t(u16, lvds->panel_vcc_delay, 2000); |
| 972 | lvds->panel_vcc_delay = 2000; | ||
| 973 | 975 | ||
| 974 | lvds->panel_pwr_delay = RBIOS8(lcd_info + 0x24); | 976 | lvds->panel_pwr_delay = RBIOS8(lcd_info + 0x24); |
| 975 | lvds->panel_digon_delay = RBIOS16(lcd_info + 0x38) & 0xf; | 977 | lvds->panel_digon_delay = RBIOS16(lcd_info + 0x38) & 0xf; |
diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c index 9da10dd5df80..2d8e5a70f284 100644 --- a/drivers/gpu/drm/radeon/radeon_connectors.c +++ b/drivers/gpu/drm/radeon/radeon_connectors.c | |||
| @@ -900,10 +900,18 @@ static void radeon_dvi_force(struct drm_connector *connector) | |||
| 900 | static int radeon_dvi_mode_valid(struct drm_connector *connector, | 900 | static int radeon_dvi_mode_valid(struct drm_connector *connector, |
| 901 | struct drm_display_mode *mode) | 901 | struct drm_display_mode *mode) |
| 902 | { | 902 | { |
| 903 | struct drm_device *dev = connector->dev; | ||
| 904 | struct radeon_device *rdev = dev->dev_private; | ||
| 903 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); | 905 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 904 | 906 | ||
| 905 | /* XXX check mode bandwidth */ | 907 | /* XXX check mode bandwidth */ |
| 906 | 908 | ||
| 909 | /* clocks over 135 MHz have heat issues with DVI on RV100 */ | ||
| 910 | if (radeon_connector->use_digital && | ||
| 911 | (rdev->family == CHIP_RV100) && | ||
| 912 | (mode->clock > 135000)) | ||
| 913 | return MODE_CLOCK_HIGH; | ||
| 914 | |||
| 907 | if (radeon_connector->use_digital && (mode->clock > 165000)) { | 915 | if (radeon_connector->use_digital && (mode->clock > 165000)) { |
| 908 | if ((radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I) || | 916 | if ((radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I) || |
| 909 | (radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D) || | 917 | (radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D) || |
| @@ -1335,7 +1343,7 @@ radeon_add_legacy_connector(struct drm_device *dev, | |||
| 1335 | radeon_connector->dac_load_detect = false; | 1343 | radeon_connector->dac_load_detect = false; |
| 1336 | drm_connector_attach_property(&radeon_connector->base, | 1344 | drm_connector_attach_property(&radeon_connector->base, |
| 1337 | rdev->mode_info.load_detect_property, | 1345 | rdev->mode_info.load_detect_property, |
| 1338 | 1); | 1346 | radeon_connector->dac_load_detect); |
| 1339 | drm_connector_attach_property(&radeon_connector->base, | 1347 | drm_connector_attach_property(&radeon_connector->base, |
| 1340 | rdev->mode_info.tv_std_property, | 1348 | rdev->mode_info.tv_std_property, |
| 1341 | radeon_combios_get_tv_info(rdev)); | 1349 | radeon_combios_get_tv_info(rdev)); |
diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c index 65590a0f1d93..1190148cf5e6 100644 --- a/drivers/gpu/drm/radeon/radeon_cs.c +++ b/drivers/gpu/drm/radeon/radeon_cs.c | |||
| @@ -189,7 +189,7 @@ static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error) | |||
| 189 | { | 189 | { |
| 190 | unsigned i; | 190 | unsigned i; |
| 191 | 191 | ||
| 192 | if (error) { | 192 | if (error && parser->ib) { |
| 193 | radeon_bo_list_unvalidate(&parser->validated, | 193 | radeon_bo_list_unvalidate(&parser->validated, |
| 194 | parser->ib->fence); | 194 | parser->ib->fence); |
| 195 | } else { | 195 | } else { |
| @@ -231,6 +231,7 @@ int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) | |||
| 231 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); | 231 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); |
| 232 | parser.filp = filp; | 232 | parser.filp = filp; |
| 233 | parser.rdev = rdev; | 233 | parser.rdev = rdev; |
| 234 | parser.dev = rdev->dev; | ||
| 234 | r = radeon_cs_parser_init(&parser, data); | 235 | r = radeon_cs_parser_init(&parser, data); |
| 235 | if (r) { | 236 | if (r) { |
| 236 | DRM_ERROR("Failed to initialize parser !\n"); | 237 | DRM_ERROR("Failed to initialize parser !\n"); |
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index 0c51f8e46613..768b1509fa03 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c | |||
| @@ -544,6 +544,7 @@ void radeon_agp_disable(struct radeon_device *rdev) | |||
| 544 | rdev->asic->gart_tlb_flush = &r100_pci_gart_tlb_flush; | 544 | rdev->asic->gart_tlb_flush = &r100_pci_gart_tlb_flush; |
| 545 | rdev->asic->gart_set_page = &r100_pci_gart_set_page; | 545 | rdev->asic->gart_set_page = &r100_pci_gart_set_page; |
| 546 | } | 546 | } |
| 547 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; | ||
| 547 | } | 548 | } |
| 548 | 549 | ||
| 549 | void radeon_check_arguments(struct radeon_device *rdev) | 550 | void radeon_check_arguments(struct radeon_device *rdev) |
diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c index 0ec491ead2ff..6a92f994cc26 100644 --- a/drivers/gpu/drm/radeon/radeon_display.c +++ b/drivers/gpu/drm/radeon/radeon_display.c | |||
| @@ -357,7 +357,8 @@ int radeon_ddc_get_modes(struct radeon_connector *radeon_connector) | |||
| 357 | if ((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) || | 357 | if ((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) || |
| 358 | (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)) { | 358 | (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)) { |
| 359 | struct radeon_connector_atom_dig *dig = radeon_connector->con_priv; | 359 | struct radeon_connector_atom_dig *dig = radeon_connector->con_priv; |
| 360 | if (dig->dp_i2c_bus) | 360 | if ((dig->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT || |
| 361 | dig->dp_sink_type == CONNECTOR_OBJECT_ID_eDP) && dig->dp_i2c_bus) | ||
| 361 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &dig->dp_i2c_bus->adapter); | 362 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &dig->dp_i2c_bus->adapter); |
| 362 | } | 363 | } |
| 363 | if (!radeon_connector->ddc_bus) | 364 | if (!radeon_connector->ddc_bus) |
| @@ -410,11 +411,12 @@ void radeon_compute_pll(struct radeon_pll *pll, | |||
| 410 | uint32_t *fb_div_p, | 411 | uint32_t *fb_div_p, |
| 411 | uint32_t *frac_fb_div_p, | 412 | uint32_t *frac_fb_div_p, |
| 412 | uint32_t *ref_div_p, | 413 | uint32_t *ref_div_p, |
| 413 | uint32_t *post_div_p, | 414 | uint32_t *post_div_p) |
| 414 | int flags) | ||
| 415 | { | 415 | { |
| 416 | uint32_t min_ref_div = pll->min_ref_div; | 416 | uint32_t min_ref_div = pll->min_ref_div; |
| 417 | uint32_t max_ref_div = pll->max_ref_div; | 417 | uint32_t max_ref_div = pll->max_ref_div; |
| 418 | uint32_t min_post_div = pll->min_post_div; | ||
| 419 | uint32_t max_post_div = pll->max_post_div; | ||
| 418 | uint32_t min_fractional_feed_div = 0; | 420 | uint32_t min_fractional_feed_div = 0; |
| 419 | uint32_t max_fractional_feed_div = 0; | 421 | uint32_t max_fractional_feed_div = 0; |
| 420 | uint32_t best_vco = pll->best_vco; | 422 | uint32_t best_vco = pll->best_vco; |
| @@ -430,7 +432,7 @@ void radeon_compute_pll(struct radeon_pll *pll, | |||
| 430 | DRM_DEBUG("PLL freq %llu %u %u\n", freq, pll->min_ref_div, pll->max_ref_div); | 432 | DRM_DEBUG("PLL freq %llu %u %u\n", freq, pll->min_ref_div, pll->max_ref_div); |
| 431 | freq = freq * 1000; | 433 | freq = freq * 1000; |
| 432 | 434 | ||
| 433 | if (flags & RADEON_PLL_USE_REF_DIV) | 435 | if (pll->flags & RADEON_PLL_USE_REF_DIV) |
| 434 | min_ref_div = max_ref_div = pll->reference_div; | 436 | min_ref_div = max_ref_div = pll->reference_div; |
| 435 | else { | 437 | else { |
| 436 | while (min_ref_div < max_ref_div-1) { | 438 | while (min_ref_div < max_ref_div-1) { |
| @@ -445,19 +447,22 @@ void radeon_compute_pll(struct radeon_pll *pll, | |||
| 445 | } | 447 | } |
| 446 | } | 448 | } |
| 447 | 449 | ||
| 448 | if (flags & RADEON_PLL_USE_FRAC_FB_DIV) { | 450 | if (pll->flags & RADEON_PLL_USE_POST_DIV) |
| 451 | min_post_div = max_post_div = pll->post_div; | ||
| 452 | |||
| 453 | if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { | ||
| 449 | min_fractional_feed_div = pll->min_frac_feedback_div; | 454 | min_fractional_feed_div = pll->min_frac_feedback_div; |
| 450 | max_fractional_feed_div = pll->max_frac_feedback_div; | 455 | max_fractional_feed_div = pll->max_frac_feedback_div; |
| 451 | } | 456 | } |
| 452 | 457 | ||
| 453 | for (post_div = pll->min_post_div; post_div <= pll->max_post_div; ++post_div) { | 458 | for (post_div = min_post_div; post_div <= max_post_div; ++post_div) { |
| 454 | uint32_t ref_div; | 459 | uint32_t ref_div; |
| 455 | 460 | ||
| 456 | if ((flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1)) | 461 | if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1)) |
| 457 | continue; | 462 | continue; |
| 458 | 463 | ||
| 459 | /* legacy radeons only have a few post_divs */ | 464 | /* legacy radeons only have a few post_divs */ |
| 460 | if (flags & RADEON_PLL_LEGACY) { | 465 | if (pll->flags & RADEON_PLL_LEGACY) { |
| 461 | if ((post_div == 5) || | 466 | if ((post_div == 5) || |
| 462 | (post_div == 7) || | 467 | (post_div == 7) || |
| 463 | (post_div == 9) || | 468 | (post_div == 9) || |
| @@ -504,7 +509,7 @@ void radeon_compute_pll(struct radeon_pll *pll, | |||
| 504 | tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div; | 509 | tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div; |
| 505 | current_freq = radeon_div(tmp, ref_div * post_div); | 510 | current_freq = radeon_div(tmp, ref_div * post_div); |
| 506 | 511 | ||
| 507 | if (flags & RADEON_PLL_PREFER_CLOSEST_LOWER) { | 512 | if (pll->flags & RADEON_PLL_PREFER_CLOSEST_LOWER) { |
| 508 | error = freq - current_freq; | 513 | error = freq - current_freq; |
| 509 | error = error < 0 ? 0xffffffff : error; | 514 | error = error < 0 ? 0xffffffff : error; |
| 510 | } else | 515 | } else |
| @@ -531,12 +536,12 @@ void radeon_compute_pll(struct radeon_pll *pll, | |||
| 531 | best_freq = current_freq; | 536 | best_freq = current_freq; |
| 532 | best_error = error; | 537 | best_error = error; |
| 533 | best_vco_diff = vco_diff; | 538 | best_vco_diff = vco_diff; |
| 534 | } else if (((flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) || | 539 | } else if (((pll->flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) || |
| 535 | ((flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) || | 540 | ((pll->flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) || |
| 536 | ((flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) || | 541 | ((pll->flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) || |
| 537 | ((flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) || | 542 | ((pll->flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) || |
| 538 | ((flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) || | 543 | ((pll->flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) || |
| 539 | ((flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) { | 544 | ((pll->flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) { |
| 540 | best_post_div = post_div; | 545 | best_post_div = post_div; |
| 541 | best_ref_div = ref_div; | 546 | best_ref_div = ref_div; |
| 542 | best_feedback_div = feedback_div; | 547 | best_feedback_div = feedback_div; |
| @@ -572,8 +577,7 @@ void radeon_compute_pll_avivo(struct radeon_pll *pll, | |||
| 572 | uint32_t *fb_div_p, | 577 | uint32_t *fb_div_p, |
| 573 | uint32_t *frac_fb_div_p, | 578 | uint32_t *frac_fb_div_p, |
| 574 | uint32_t *ref_div_p, | 579 | uint32_t *ref_div_p, |
| 575 | uint32_t *post_div_p, | 580 | uint32_t *post_div_p) |
| 576 | int flags) | ||
| 577 | { | 581 | { |
| 578 | fixed20_12 m, n, frac_n, p, f_vco, f_pclk, best_freq; | 582 | fixed20_12 m, n, frac_n, p, f_vco, f_pclk, best_freq; |
| 579 | fixed20_12 pll_out_max, pll_out_min; | 583 | fixed20_12 pll_out_max, pll_out_min; |
| @@ -667,7 +671,6 @@ static void radeon_user_framebuffer_destroy(struct drm_framebuffer *fb) | |||
| 667 | radeonfb_remove(dev, fb); | 671 | radeonfb_remove(dev, fb); |
| 668 | 672 | ||
| 669 | if (radeon_fb->obj) { | 673 | if (radeon_fb->obj) { |
| 670 | radeon_gem_object_unpin(radeon_fb->obj); | ||
| 671 | mutex_lock(&dev->struct_mutex); | 674 | mutex_lock(&dev->struct_mutex); |
| 672 | drm_gem_object_unreference(radeon_fb->obj); | 675 | drm_gem_object_unreference(radeon_fb->obj); |
| 673 | mutex_unlock(&dev->struct_mutex); | 676 | mutex_unlock(&dev->struct_mutex); |
| @@ -715,7 +718,11 @@ radeon_user_framebuffer_create(struct drm_device *dev, | |||
| 715 | struct drm_gem_object *obj; | 718 | struct drm_gem_object *obj; |
| 716 | 719 | ||
| 717 | obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handle); | 720 | obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handle); |
| 718 | 721 | if (obj == NULL) { | |
| 722 | dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, " | ||
| 723 | "can't create framebuffer\n", mode_cmd->handle); | ||
| 724 | return NULL; | ||
| 725 | } | ||
| 719 | return radeon_framebuffer_create(dev, mode_cmd, obj); | 726 | return radeon_framebuffer_create(dev, mode_cmd, obj); |
| 720 | } | 727 | } |
| 721 | 728 | ||
diff --git a/drivers/gpu/drm/radeon/radeon_encoders.c b/drivers/gpu/drm/radeon/radeon_encoders.c index 82eb551970b9..3c91724457ca 100644 --- a/drivers/gpu/drm/radeon/radeon_encoders.c +++ b/drivers/gpu/drm/radeon/radeon_encoders.c | |||
| @@ -156,6 +156,26 @@ radeon_get_encoder_id(struct drm_device *dev, uint32_t supported_device, uint8_t | |||
| 156 | return ret; | 156 | return ret; |
| 157 | } | 157 | } |
| 158 | 158 | ||
| 159 | static inline bool radeon_encoder_is_digital(struct drm_encoder *encoder) | ||
| 160 | { | ||
| 161 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | ||
| 162 | switch (radeon_encoder->encoder_id) { | ||
| 163 | case ENCODER_OBJECT_ID_INTERNAL_LVDS: | ||
| 164 | case ENCODER_OBJECT_ID_INTERNAL_TMDS1: | ||
| 165 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1: | ||
| 166 | case ENCODER_OBJECT_ID_INTERNAL_LVTM1: | ||
| 167 | case ENCODER_OBJECT_ID_INTERNAL_DVO1: | ||
| 168 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1: | ||
| 169 | case ENCODER_OBJECT_ID_INTERNAL_DDI: | ||
| 170 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: | ||
| 171 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: | ||
| 172 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1: | ||
| 173 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2: | ||
| 174 | return true; | ||
| 175 | default: | ||
| 176 | return false; | ||
| 177 | } | ||
| 178 | } | ||
| 159 | void | 179 | void |
| 160 | radeon_link_encoder_connector(struct drm_device *dev) | 180 | radeon_link_encoder_connector(struct drm_device *dev) |
| 161 | { | 181 | { |
| @@ -202,7 +222,7 @@ radeon_get_connector_for_encoder(struct drm_encoder *encoder) | |||
| 202 | 222 | ||
| 203 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | 223 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 204 | radeon_connector = to_radeon_connector(connector); | 224 | radeon_connector = to_radeon_connector(connector); |
| 205 | if (radeon_encoder->devices & radeon_connector->devices) | 225 | if (radeon_encoder->active_device & radeon_connector->devices) |
| 206 | return connector; | 226 | return connector; |
| 207 | } | 227 | } |
| 208 | return NULL; | 228 | return NULL; |
| @@ -676,31 +696,11 @@ atombios_dig_encoder_setup(struct drm_encoder *encoder, int action) | |||
| 676 | 696 | ||
| 677 | memset(&args, 0, sizeof(args)); | 697 | memset(&args, 0, sizeof(args)); |
| 678 | 698 | ||
| 679 | if (ASIC_IS_DCE32(rdev)) { | 699 | if (dig->dig_encoder) |
| 680 | if (dig->dig_block) | 700 | index = GetIndexIntoMasterTable(COMMAND, DIG2EncoderControl); |
| 681 | index = GetIndexIntoMasterTable(COMMAND, DIG2EncoderControl); | 701 | else |
| 682 | else | 702 | index = GetIndexIntoMasterTable(COMMAND, DIG1EncoderControl); |
| 683 | index = GetIndexIntoMasterTable(COMMAND, DIG1EncoderControl); | 703 | num = dig->dig_encoder + 1; |
| 684 | num = dig->dig_block + 1; | ||
| 685 | } else { | ||
| 686 | switch (radeon_encoder->encoder_id) { | ||
| 687 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: | ||
| 688 | /* XXX doesn't really matter which dig encoder we pick as long as it's | ||
| 689 | * not already in use | ||
| 690 | */ | ||
| 691 | if (dig_connector->linkb) | ||
| 692 | index = GetIndexIntoMasterTable(COMMAND, DIG2EncoderControl); | ||
| 693 | else | ||
| 694 | index = GetIndexIntoMasterTable(COMMAND, DIG1EncoderControl); | ||
| 695 | num = 1; | ||
| 696 | break; | ||
| 697 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: | ||
| 698 | /* Only dig2 encoder can drive LVTMA */ | ||
| 699 | index = GetIndexIntoMasterTable(COMMAND, DIG2EncoderControl); | ||
| 700 | num = 2; | ||
| 701 | break; | ||
| 702 | } | ||
| 703 | } | ||
| 704 | 704 | ||
| 705 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev); | 705 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev); |
| 706 | 706 | ||
| @@ -822,7 +822,7 @@ atombios_dig_transmitter_setup(struct drm_encoder *encoder, int action, uint8_t | |||
| 822 | args.v1.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); | 822 | args.v1.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); |
| 823 | } | 823 | } |
| 824 | if (ASIC_IS_DCE32(rdev)) { | 824 | if (ASIC_IS_DCE32(rdev)) { |
| 825 | if (dig->dig_block) | 825 | if (dig->dig_encoder == 1) |
| 826 | args.v2.acConfig.ucEncoderSel = 1; | 826 | args.v2.acConfig.ucEncoderSel = 1; |
| 827 | if (dig_connector->linkb) | 827 | if (dig_connector->linkb) |
| 828 | args.v2.acConfig.ucLinkSel = 1; | 828 | args.v2.acConfig.ucLinkSel = 1; |
| @@ -849,17 +849,16 @@ atombios_dig_transmitter_setup(struct drm_encoder *encoder, int action, uint8_t | |||
| 849 | args.v2.acConfig.fCoherentMode = 1; | 849 | args.v2.acConfig.fCoherentMode = 1; |
| 850 | } | 850 | } |
| 851 | } else { | 851 | } else { |
| 852 | |||
| 852 | args.v1.ucConfig = ATOM_TRANSMITTER_CONFIG_CLKSRC_PPLL; | 853 | args.v1.ucConfig = ATOM_TRANSMITTER_CONFIG_CLKSRC_PPLL; |
| 853 | 854 | ||
| 855 | if (dig->dig_encoder) | ||
| 856 | args.v1.ucConfig |= ATOM_TRANSMITTER_CONFIG_DIG2_ENCODER; | ||
| 857 | else | ||
| 858 | args.v1.ucConfig |= ATOM_TRANSMITTER_CONFIG_DIG1_ENCODER; | ||
| 859 | |||
| 854 | switch (radeon_encoder->encoder_id) { | 860 | switch (radeon_encoder->encoder_id) { |
| 855 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: | 861 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: |
| 856 | /* XXX doesn't really matter which dig encoder we pick as long as it's | ||
| 857 | * not already in use | ||
| 858 | */ | ||
| 859 | if (dig_connector->linkb) | ||
| 860 | args.v1.ucConfig |= ATOM_TRANSMITTER_CONFIG_DIG2_ENCODER; | ||
| 861 | else | ||
| 862 | args.v1.ucConfig |= ATOM_TRANSMITTER_CONFIG_DIG1_ENCODER; | ||
| 863 | if (rdev->flags & RADEON_IS_IGP) { | 862 | if (rdev->flags & RADEON_IS_IGP) { |
| 864 | if (radeon_encoder->pixel_clock > 165000) { | 863 | if (radeon_encoder->pixel_clock > 165000) { |
| 865 | if (dig_connector->igp_lane_info & 0x3) | 864 | if (dig_connector->igp_lane_info & 0x3) |
| @@ -878,10 +877,6 @@ atombios_dig_transmitter_setup(struct drm_encoder *encoder, int action, uint8_t | |||
| 878 | } | 877 | } |
| 879 | } | 878 | } |
| 880 | break; | 879 | break; |
| 881 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: | ||
| 882 | /* Only dig2 encoder can drive LVTMA */ | ||
| 883 | args.v1.ucConfig |= ATOM_TRANSMITTER_CONFIG_DIG2_ENCODER; | ||
| 884 | break; | ||
| 885 | } | 880 | } |
| 886 | 881 | ||
| 887 | if (radeon_encoder->pixel_clock > 165000) | 882 | if (radeon_encoder->pixel_clock > 165000) |
| @@ -1046,6 +1041,7 @@ atombios_set_encoder_crtc_source(struct drm_encoder *encoder) | |||
| 1046 | union crtc_sourc_param args; | 1041 | union crtc_sourc_param args; |
| 1047 | int index = GetIndexIntoMasterTable(COMMAND, SelectCRTC_Source); | 1042 | int index = GetIndexIntoMasterTable(COMMAND, SelectCRTC_Source); |
| 1048 | uint8_t frev, crev; | 1043 | uint8_t frev, crev; |
| 1044 | struct radeon_encoder_atom_dig *dig; | ||
| 1049 | 1045 | ||
| 1050 | memset(&args, 0, sizeof(args)); | 1046 | memset(&args, 0, sizeof(args)); |
| 1051 | 1047 | ||
| @@ -1109,40 +1105,16 @@ atombios_set_encoder_crtc_source(struct drm_encoder *encoder) | |||
| 1109 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: | 1105 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: |
| 1110 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1: | 1106 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1: |
| 1111 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2: | 1107 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2: |
| 1112 | if (ASIC_IS_DCE32(rdev)) { | 1108 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: |
| 1113 | if (radeon_crtc->crtc_id) | 1109 | dig = radeon_encoder->enc_priv; |
| 1114 | args.v2.ucEncoderID = ASIC_INT_DIG2_ENCODER_ID; | 1110 | if (dig->dig_encoder) |
| 1115 | else | 1111 | args.v2.ucEncoderID = ASIC_INT_DIG2_ENCODER_ID; |
| 1116 | args.v2.ucEncoderID = ASIC_INT_DIG1_ENCODER_ID; | 1112 | else |
| 1117 | } else { | 1113 | args.v2.ucEncoderID = ASIC_INT_DIG1_ENCODER_ID; |
| 1118 | struct drm_connector *connector; | ||
| 1119 | struct radeon_connector *radeon_connector; | ||
| 1120 | struct radeon_connector_atom_dig *dig_connector; | ||
| 1121 | |||
| 1122 | connector = radeon_get_connector_for_encoder(encoder); | ||
| 1123 | if (!connector) | ||
| 1124 | return; | ||
| 1125 | radeon_connector = to_radeon_connector(connector); | ||
| 1126 | if (!radeon_connector->con_priv) | ||
| 1127 | return; | ||
| 1128 | dig_connector = radeon_connector->con_priv; | ||
| 1129 | |||
| 1130 | /* XXX doesn't really matter which dig encoder we pick as long as it's | ||
| 1131 | * not already in use | ||
| 1132 | */ | ||
| 1133 | if (dig_connector->linkb) | ||
| 1134 | args.v2.ucEncoderID = ASIC_INT_DIG2_ENCODER_ID; | ||
| 1135 | else | ||
| 1136 | args.v2.ucEncoderID = ASIC_INT_DIG1_ENCODER_ID; | ||
| 1137 | } | ||
| 1138 | break; | 1114 | break; |
| 1139 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1: | 1115 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1: |
| 1140 | args.v2.ucEncoderID = ASIC_INT_DVO_ENCODER_ID; | 1116 | args.v2.ucEncoderID = ASIC_INT_DVO_ENCODER_ID; |
| 1141 | break; | 1117 | break; |
| 1142 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: | ||
| 1143 | /* Only dig2 encoder can drive LVTMA */ | ||
| 1144 | args.v2.ucEncoderID = ASIC_INT_DIG2_ENCODER_ID; | ||
| 1145 | break; | ||
| 1146 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1: | 1118 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1: |
| 1147 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) | 1119 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) |
| 1148 | args.v2.ucEncoderID = ASIC_INT_TV_ENCODER_ID; | 1120 | args.v2.ucEncoderID = ASIC_INT_TV_ENCODER_ID; |
| @@ -1202,6 +1174,47 @@ atombios_apply_encoder_quirks(struct drm_encoder *encoder, | |||
| 1202 | } | 1174 | } |
| 1203 | } | 1175 | } |
| 1204 | 1176 | ||
| 1177 | static int radeon_atom_pick_dig_encoder(struct drm_encoder *encoder) | ||
| 1178 | { | ||
| 1179 | struct drm_device *dev = encoder->dev; | ||
| 1180 | struct radeon_device *rdev = dev->dev_private; | ||
| 1181 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(encoder->crtc); | ||
| 1182 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | ||
| 1183 | struct drm_encoder *test_encoder; | ||
| 1184 | struct radeon_encoder_atom_dig *dig; | ||
| 1185 | uint32_t dig_enc_in_use = 0; | ||
| 1186 | /* on DCE32 and encoder can driver any block so just crtc id */ | ||
| 1187 | if (ASIC_IS_DCE32(rdev)) { | ||
| 1188 | return radeon_crtc->crtc_id; | ||
| 1189 | } | ||
| 1190 | |||
| 1191 | /* on DCE3 - LVTMA can only be driven by DIGB */ | ||
| 1192 | list_for_each_entry(test_encoder, &dev->mode_config.encoder_list, head) { | ||
| 1193 | struct radeon_encoder *radeon_test_encoder; | ||
| 1194 | |||
| 1195 | if (encoder == test_encoder) | ||
| 1196 | continue; | ||
| 1197 | |||
| 1198 | if (!radeon_encoder_is_digital(test_encoder)) | ||
| 1199 | continue; | ||
| 1200 | |||
| 1201 | radeon_test_encoder = to_radeon_encoder(test_encoder); | ||
| 1202 | dig = radeon_test_encoder->enc_priv; | ||
| 1203 | |||
| 1204 | if (dig->dig_encoder >= 0) | ||
| 1205 | dig_enc_in_use |= (1 << dig->dig_encoder); | ||
| 1206 | } | ||
| 1207 | |||
| 1208 | if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA) { | ||
| 1209 | if (dig_enc_in_use & 0x2) | ||
| 1210 | DRM_ERROR("LVDS required digital encoder 2 but it was in use - stealing\n"); | ||
| 1211 | return 1; | ||
| 1212 | } | ||
| 1213 | if (!(dig_enc_in_use & 1)) | ||
| 1214 | return 0; | ||
| 1215 | return 1; | ||
| 1216 | } | ||
| 1217 | |||
| 1205 | static void | 1218 | static void |
| 1206 | radeon_atom_encoder_mode_set(struct drm_encoder *encoder, | 1219 | radeon_atom_encoder_mode_set(struct drm_encoder *encoder, |
| 1207 | struct drm_display_mode *mode, | 1220 | struct drm_display_mode *mode, |
| @@ -1214,12 +1227,9 @@ radeon_atom_encoder_mode_set(struct drm_encoder *encoder, | |||
| 1214 | 1227 | ||
| 1215 | if (radeon_encoder->active_device & | 1228 | if (radeon_encoder->active_device & |
| 1216 | (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) { | 1229 | (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) { |
| 1217 | if (radeon_encoder->enc_priv) { | 1230 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 1218 | struct radeon_encoder_atom_dig *dig; | 1231 | if (dig) |
| 1219 | 1232 | dig->dig_encoder = radeon_atom_pick_dig_encoder(encoder); | |
| 1220 | dig = radeon_encoder->enc_priv; | ||
| 1221 | dig->dig_block = radeon_crtc->crtc_id; | ||
| 1222 | } | ||
| 1223 | } | 1233 | } |
| 1224 | radeon_encoder->pixel_clock = adjusted_mode->clock; | 1234 | radeon_encoder->pixel_clock = adjusted_mode->clock; |
| 1225 | 1235 | ||
| @@ -1379,7 +1389,13 @@ static void radeon_atom_encoder_commit(struct drm_encoder *encoder) | |||
| 1379 | static void radeon_atom_encoder_disable(struct drm_encoder *encoder) | 1389 | static void radeon_atom_encoder_disable(struct drm_encoder *encoder) |
| 1380 | { | 1390 | { |
| 1381 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 1391 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 1392 | struct radeon_encoder_atom_dig *dig; | ||
| 1382 | radeon_atom_encoder_dpms(encoder, DRM_MODE_DPMS_OFF); | 1393 | radeon_atom_encoder_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 1394 | |||
| 1395 | if (radeon_encoder_is_digital(encoder)) { | ||
| 1396 | dig = radeon_encoder->enc_priv; | ||
| 1397 | dig->dig_encoder = -1; | ||
| 1398 | } | ||
| 1383 | radeon_encoder->active_device = 0; | 1399 | radeon_encoder->active_device = 0; |
| 1384 | } | 1400 | } |
| 1385 | 1401 | ||
| @@ -1436,6 +1452,7 @@ radeon_atombios_set_dig_info(struct radeon_encoder *radeon_encoder) | |||
| 1436 | 1452 | ||
| 1437 | /* coherent mode by default */ | 1453 | /* coherent mode by default */ |
| 1438 | dig->coherent_mode = true; | 1454 | dig->coherent_mode = true; |
| 1455 | dig->dig_encoder = -1; | ||
| 1439 | 1456 | ||
| 1440 | return dig; | 1457 | return dig; |
| 1441 | } | 1458 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_gem.c b/drivers/gpu/drm/radeon/radeon_gem.c index 0e1325e18534..db8e9a355a01 100644 --- a/drivers/gpu/drm/radeon/radeon_gem.c +++ b/drivers/gpu/drm/radeon/radeon_gem.c | |||
| @@ -308,6 +308,9 @@ int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data, | |||
| 308 | } | 308 | } |
| 309 | robj = gobj->driver_private; | 309 | robj = gobj->driver_private; |
| 310 | r = radeon_bo_wait(robj, NULL, false); | 310 | r = radeon_bo_wait(robj, NULL, false); |
| 311 | /* callback hw specific functions if any */ | ||
| 312 | if (robj->rdev->asic->ioctl_wait_idle) | ||
| 313 | robj->rdev->asic->ioctl_wait_idle(robj->rdev, robj); | ||
| 311 | mutex_lock(&dev->struct_mutex); | 314 | mutex_lock(&dev->struct_mutex); |
| 312 | drm_gem_object_unreference(gobj); | 315 | drm_gem_object_unreference(gobj); |
| 313 | mutex_unlock(&dev->struct_mutex); | 316 | mutex_unlock(&dev->struct_mutex); |
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c index cc27485a07ad..b6d8081e1246 100644 --- a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c +++ b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c | |||
| @@ -339,69 +339,6 @@ void radeon_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 339 | } | 339 | } |
| 340 | } | 340 | } |
| 341 | 341 | ||
| 342 | /* properly set crtc bpp when using atombios */ | ||
| 343 | void radeon_legacy_atom_set_surface(struct drm_crtc *crtc) | ||
| 344 | { | ||
| 345 | struct drm_device *dev = crtc->dev; | ||
| 346 | struct radeon_device *rdev = dev->dev_private; | ||
| 347 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 348 | int format; | ||
| 349 | uint32_t crtc_gen_cntl; | ||
| 350 | uint32_t disp_merge_cntl; | ||
| 351 | uint32_t crtc_pitch; | ||
| 352 | |||
| 353 | switch (crtc->fb->bits_per_pixel) { | ||
| 354 | case 8: | ||
| 355 | format = 2; | ||
| 356 | break; | ||
| 357 | case 15: /* 555 */ | ||
| 358 | format = 3; | ||
| 359 | break; | ||
| 360 | case 16: /* 565 */ | ||
| 361 | format = 4; | ||
| 362 | break; | ||
| 363 | case 24: /* RGB */ | ||
| 364 | format = 5; | ||
| 365 | break; | ||
| 366 | case 32: /* xRGB */ | ||
| 367 | format = 6; | ||
| 368 | break; | ||
| 369 | default: | ||
| 370 | return; | ||
| 371 | } | ||
| 372 | |||
| 373 | crtc_pitch = ((((crtc->fb->pitch / (crtc->fb->bits_per_pixel / 8)) * crtc->fb->bits_per_pixel) + | ||
| 374 | ((crtc->fb->bits_per_pixel * 8) - 1)) / | ||
| 375 | (crtc->fb->bits_per_pixel * 8)); | ||
| 376 | crtc_pitch |= crtc_pitch << 16; | ||
| 377 | |||
| 378 | WREG32(RADEON_CRTC_PITCH + radeon_crtc->crtc_offset, crtc_pitch); | ||
| 379 | |||
| 380 | switch (radeon_crtc->crtc_id) { | ||
| 381 | case 0: | ||
| 382 | disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL); | ||
| 383 | disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN; | ||
| 384 | WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl); | ||
| 385 | |||
| 386 | crtc_gen_cntl = RREG32(RADEON_CRTC_GEN_CNTL) & 0xfffff0ff; | ||
| 387 | crtc_gen_cntl |= (format << 8); | ||
| 388 | crtc_gen_cntl |= RADEON_CRTC_EXT_DISP_EN; | ||
| 389 | WREG32(RADEON_CRTC_GEN_CNTL, crtc_gen_cntl); | ||
| 390 | break; | ||
| 391 | case 1: | ||
| 392 | disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL); | ||
| 393 | disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN; | ||
| 394 | WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl); | ||
| 395 | |||
| 396 | crtc_gen_cntl = RREG32(RADEON_CRTC2_GEN_CNTL) & 0xfffff0ff; | ||
| 397 | crtc_gen_cntl |= (format << 8); | ||
| 398 | WREG32(RADEON_CRTC2_GEN_CNTL, crtc_gen_cntl); | ||
| 399 | WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID)); | ||
| 400 | WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID)); | ||
| 401 | break; | ||
| 402 | } | ||
| 403 | } | ||
| 404 | |||
| 405 | int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y, | 342 | int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 406 | struct drm_framebuffer *old_fb) | 343 | struct drm_framebuffer *old_fb) |
| 407 | { | 344 | { |
| @@ -755,7 +692,6 @@ static void radeon_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 755 | uint32_t post_divider = 0; | 692 | uint32_t post_divider = 0; |
| 756 | uint32_t freq = 0; | 693 | uint32_t freq = 0; |
| 757 | uint8_t pll_gain; | 694 | uint8_t pll_gain; |
| 758 | int pll_flags = RADEON_PLL_LEGACY; | ||
| 759 | bool use_bios_divs = false; | 695 | bool use_bios_divs = false; |
| 760 | /* PLL registers */ | 696 | /* PLL registers */ |
| 761 | uint32_t pll_ref_div = 0; | 697 | uint32_t pll_ref_div = 0; |
| @@ -789,10 +725,12 @@ static void radeon_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 789 | else | 725 | else |
| 790 | pll = &rdev->clock.p1pll; | 726 | pll = &rdev->clock.p1pll; |
| 791 | 727 | ||
| 728 | pll->flags = RADEON_PLL_LEGACY; | ||
| 729 | |||
| 792 | if (mode->clock > 200000) /* range limits??? */ | 730 | if (mode->clock > 200000) /* range limits??? */ |
| 793 | pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; | 731 | pll->flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 794 | else | 732 | else |
| 795 | pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; | 733 | pll->flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
| 796 | 734 | ||
| 797 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | 735 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 798 | if (encoder->crtc == crtc) { | 736 | if (encoder->crtc == crtc) { |
| @@ -804,7 +742,7 @@ static void radeon_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 804 | } | 742 | } |
| 805 | 743 | ||
| 806 | if (encoder->encoder_type != DRM_MODE_ENCODER_DAC) | 744 | if (encoder->encoder_type != DRM_MODE_ENCODER_DAC) |
| 807 | pll_flags |= RADEON_PLL_NO_ODD_POST_DIV; | 745 | pll->flags |= RADEON_PLL_NO_ODD_POST_DIV; |
| 808 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) { | 746 | if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS) { |
| 809 | if (!rdev->is_atom_bios) { | 747 | if (!rdev->is_atom_bios) { |
| 810 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 748 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| @@ -819,7 +757,7 @@ static void radeon_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 819 | } | 757 | } |
| 820 | } | 758 | } |
| 821 | } | 759 | } |
| 822 | pll_flags |= RADEON_PLL_USE_REF_DIV; | 760 | pll->flags |= RADEON_PLL_USE_REF_DIV; |
| 823 | } | 761 | } |
| 824 | } | 762 | } |
| 825 | } | 763 | } |
| @@ -829,8 +767,7 @@ static void radeon_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 829 | if (!use_bios_divs) { | 767 | if (!use_bios_divs) { |
| 830 | radeon_compute_pll(pll, mode->clock, | 768 | radeon_compute_pll(pll, mode->clock, |
| 831 | &freq, &feedback_div, &frac_fb_div, | 769 | &freq, &feedback_div, &frac_fb_div, |
| 832 | &reference_div, &post_divider, | 770 | &reference_div, &post_divider); |
| 833 | pll_flags); | ||
| 834 | 771 | ||
| 835 | for (post_div = &post_divs[0]; post_div->divider; ++post_div) { | 772 | for (post_div = &post_divs[0]; post_div->divider; ++post_div) { |
| 836 | if (post_div->divider == post_divider) | 773 | if (post_div->divider == post_divider) |
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_encoders.c b/drivers/gpu/drm/radeon/radeon_legacy_encoders.c index 981508ff7037..38e45e231ef5 100644 --- a/drivers/gpu/drm/radeon/radeon_legacy_encoders.c +++ b/drivers/gpu/drm/radeon/radeon_legacy_encoders.c | |||
| @@ -46,6 +46,7 @@ static void radeon_legacy_lvds_dpms(struct drm_encoder *encoder, int mode) | |||
| 46 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 46 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 47 | uint32_t lvds_gen_cntl, lvds_pll_cntl, pixclks_cntl, disp_pwr_man; | 47 | uint32_t lvds_gen_cntl, lvds_pll_cntl, pixclks_cntl, disp_pwr_man; |
| 48 | int panel_pwr_delay = 2000; | 48 | int panel_pwr_delay = 2000; |
| 49 | bool is_mac = false; | ||
| 49 | DRM_DEBUG("\n"); | 50 | DRM_DEBUG("\n"); |
| 50 | 51 | ||
| 51 | if (radeon_encoder->enc_priv) { | 52 | if (radeon_encoder->enc_priv) { |
| @@ -58,6 +59,15 @@ static void radeon_legacy_lvds_dpms(struct drm_encoder *encoder, int mode) | |||
| 58 | } | 59 | } |
| 59 | } | 60 | } |
| 60 | 61 | ||
| 62 | /* macs (and possibly some x86 oem systems?) wire up LVDS strangely | ||
| 63 | * Taken from radeonfb. | ||
| 64 | */ | ||
| 65 | if ((rdev->mode_info.connector_table == CT_IBOOK) || | ||
| 66 | (rdev->mode_info.connector_table == CT_POWERBOOK_EXTERNAL) || | ||
| 67 | (rdev->mode_info.connector_table == CT_POWERBOOK_INTERNAL) || | ||
| 68 | (rdev->mode_info.connector_table == CT_POWERBOOK_VGA)) | ||
| 69 | is_mac = true; | ||
| 70 | |||
| 61 | switch (mode) { | 71 | switch (mode) { |
| 62 | case DRM_MODE_DPMS_ON: | 72 | case DRM_MODE_DPMS_ON: |
| 63 | disp_pwr_man = RREG32(RADEON_DISP_PWR_MAN); | 73 | disp_pwr_man = RREG32(RADEON_DISP_PWR_MAN); |
| @@ -74,6 +84,8 @@ static void radeon_legacy_lvds_dpms(struct drm_encoder *encoder, int mode) | |||
| 74 | 84 | ||
| 75 | lvds_gen_cntl = RREG32(RADEON_LVDS_GEN_CNTL); | 85 | lvds_gen_cntl = RREG32(RADEON_LVDS_GEN_CNTL); |
| 76 | lvds_gen_cntl |= (RADEON_LVDS_ON | RADEON_LVDS_EN | RADEON_LVDS_DIGON | RADEON_LVDS_BLON); | 86 | lvds_gen_cntl |= (RADEON_LVDS_ON | RADEON_LVDS_EN | RADEON_LVDS_DIGON | RADEON_LVDS_BLON); |
| 87 | if (is_mac) | ||
| 88 | lvds_gen_cntl |= RADEON_LVDS_BL_MOD_EN; | ||
| 77 | lvds_gen_cntl &= ~(RADEON_LVDS_DISPLAY_DIS); | 89 | lvds_gen_cntl &= ~(RADEON_LVDS_DISPLAY_DIS); |
| 78 | udelay(panel_pwr_delay * 1000); | 90 | udelay(panel_pwr_delay * 1000); |
| 79 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); | 91 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); |
| @@ -85,7 +97,14 @@ static void radeon_legacy_lvds_dpms(struct drm_encoder *encoder, int mode) | |||
| 85 | WREG32_PLL_P(RADEON_PIXCLKS_CNTL, 0, ~RADEON_PIXCLK_LVDS_ALWAYS_ONb); | 97 | WREG32_PLL_P(RADEON_PIXCLKS_CNTL, 0, ~RADEON_PIXCLK_LVDS_ALWAYS_ONb); |
| 86 | lvds_gen_cntl = RREG32(RADEON_LVDS_GEN_CNTL); | 98 | lvds_gen_cntl = RREG32(RADEON_LVDS_GEN_CNTL); |
| 87 | lvds_gen_cntl |= RADEON_LVDS_DISPLAY_DIS; | 99 | lvds_gen_cntl |= RADEON_LVDS_DISPLAY_DIS; |
| 88 | lvds_gen_cntl &= ~(RADEON_LVDS_ON | RADEON_LVDS_BLON | RADEON_LVDS_EN | RADEON_LVDS_DIGON); | 100 | if (is_mac) { |
| 101 | lvds_gen_cntl &= ~RADEON_LVDS_BL_MOD_EN; | ||
| 102 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); | ||
| 103 | lvds_gen_cntl &= ~(RADEON_LVDS_ON | RADEON_LVDS_EN); | ||
| 104 | } else { | ||
| 105 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); | ||
| 106 | lvds_gen_cntl &= ~(RADEON_LVDS_ON | RADEON_LVDS_BLON | RADEON_LVDS_EN | RADEON_LVDS_DIGON); | ||
| 107 | } | ||
| 89 | udelay(panel_pwr_delay * 1000); | 108 | udelay(panel_pwr_delay * 1000); |
| 90 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); | 109 | WREG32(RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); |
| 91 | WREG32_PLL(RADEON_PIXCLKS_CNTL, pixclks_cntl); | 110 | WREG32_PLL(RADEON_PIXCLKS_CNTL, pixclks_cntl); |
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h index 91cb041cb40d..e81b2aeb6a8f 100644 --- a/drivers/gpu/drm/radeon/radeon_mode.h +++ b/drivers/gpu/drm/radeon/radeon_mode.h | |||
| @@ -125,16 +125,24 @@ struct radeon_tmds_pll { | |||
| 125 | #define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9) | 125 | #define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9) |
| 126 | #define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10) | 126 | #define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10) |
| 127 | #define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11) | 127 | #define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11) |
| 128 | #define RADEON_PLL_USE_POST_DIV (1 << 12) | ||
| 128 | 129 | ||
| 129 | struct radeon_pll { | 130 | struct radeon_pll { |
| 130 | uint16_t reference_freq; | 131 | /* reference frequency */ |
| 131 | uint16_t reference_div; | 132 | uint32_t reference_freq; |
| 133 | |||
| 134 | /* fixed dividers */ | ||
| 135 | uint32_t reference_div; | ||
| 136 | uint32_t post_div; | ||
| 137 | |||
| 138 | /* pll in/out limits */ | ||
| 132 | uint32_t pll_in_min; | 139 | uint32_t pll_in_min; |
| 133 | uint32_t pll_in_max; | 140 | uint32_t pll_in_max; |
| 134 | uint32_t pll_out_min; | 141 | uint32_t pll_out_min; |
| 135 | uint32_t pll_out_max; | 142 | uint32_t pll_out_max; |
| 136 | uint16_t xclk; | 143 | uint32_t best_vco; |
| 137 | 144 | ||
| 145 | /* divider limits */ | ||
| 138 | uint32_t min_ref_div; | 146 | uint32_t min_ref_div; |
| 139 | uint32_t max_ref_div; | 147 | uint32_t max_ref_div; |
| 140 | uint32_t min_post_div; | 148 | uint32_t min_post_div; |
| @@ -143,7 +151,12 @@ struct radeon_pll { | |||
| 143 | uint32_t max_feedback_div; | 151 | uint32_t max_feedback_div; |
| 144 | uint32_t min_frac_feedback_div; | 152 | uint32_t min_frac_feedback_div; |
| 145 | uint32_t max_frac_feedback_div; | 153 | uint32_t max_frac_feedback_div; |
| 146 | uint32_t best_vco; | 154 | |
| 155 | /* flags for the current clock */ | ||
| 156 | uint32_t flags; | ||
| 157 | |||
| 158 | /* pll id */ | ||
| 159 | uint32_t id; | ||
| 147 | }; | 160 | }; |
| 148 | 161 | ||
| 149 | struct radeon_i2c_chan { | 162 | struct radeon_i2c_chan { |
| @@ -286,7 +299,7 @@ struct radeon_atom_ss { | |||
| 286 | struct radeon_encoder_atom_dig { | 299 | struct radeon_encoder_atom_dig { |
| 287 | /* atom dig */ | 300 | /* atom dig */ |
| 288 | bool coherent_mode; | 301 | bool coherent_mode; |
| 289 | int dig_block; | 302 | int dig_encoder; /* -1 disabled, 0 DIGA, 1 DIGB */ |
| 290 | /* atom lvds */ | 303 | /* atom lvds */ |
| 291 | uint32_t lvds_misc; | 304 | uint32_t lvds_misc; |
| 292 | uint16_t panel_pwr_delay; | 305 | uint16_t panel_pwr_delay; |
| @@ -417,8 +430,7 @@ extern void radeon_compute_pll(struct radeon_pll *pll, | |||
| 417 | uint32_t *fb_div_p, | 430 | uint32_t *fb_div_p, |
| 418 | uint32_t *frac_fb_div_p, | 431 | uint32_t *frac_fb_div_p, |
| 419 | uint32_t *ref_div_p, | 432 | uint32_t *ref_div_p, |
| 420 | uint32_t *post_div_p, | 433 | uint32_t *post_div_p); |
| 421 | int flags); | ||
| 422 | 434 | ||
| 423 | extern void radeon_compute_pll_avivo(struct radeon_pll *pll, | 435 | extern void radeon_compute_pll_avivo(struct radeon_pll *pll, |
| 424 | uint64_t freq, | 436 | uint64_t freq, |
| @@ -426,8 +438,7 @@ extern void radeon_compute_pll_avivo(struct radeon_pll *pll, | |||
| 426 | uint32_t *fb_div_p, | 438 | uint32_t *fb_div_p, |
| 427 | uint32_t *frac_fb_div_p, | 439 | uint32_t *frac_fb_div_p, |
| 428 | uint32_t *ref_div_p, | 440 | uint32_t *ref_div_p, |
| 429 | uint32_t *post_div_p, | 441 | uint32_t *post_div_p); |
| 430 | int flags); | ||
| 431 | 442 | ||
| 432 | extern void radeon_setup_encoder_clones(struct drm_device *dev); | 443 | extern void radeon_setup_encoder_clones(struct drm_device *dev); |
| 433 | 444 | ||
| @@ -453,7 +464,6 @@ extern void atombios_crtc_dpms(struct drm_crtc *crtc, int mode); | |||
| 453 | 464 | ||
| 454 | extern int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y, | 465 | extern int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y, |
| 455 | struct drm_framebuffer *old_fb); | 466 | struct drm_framebuffer *old_fb); |
| 456 | extern void radeon_legacy_atom_set_surface(struct drm_crtc *crtc); | ||
| 457 | 467 | ||
| 458 | extern int radeon_crtc_cursor_set(struct drm_crtc *crtc, | 468 | extern int radeon_crtc_cursor_set(struct drm_crtc *crtc, |
| 459 | struct drm_file *file_priv, | 469 | struct drm_file *file_priv, |
diff --git a/drivers/gpu/drm/radeon/radeon_object.c b/drivers/gpu/drm/radeon/radeon_object.c index 4e636de877b2..d72a71bff218 100644 --- a/drivers/gpu/drm/radeon/radeon_object.c +++ b/drivers/gpu/drm/radeon/radeon_object.c | |||
| @@ -220,7 +220,8 @@ int radeon_bo_unpin(struct radeon_bo *bo) | |||
| 220 | 220 | ||
| 221 | int radeon_bo_evict_vram(struct radeon_device *rdev) | 221 | int radeon_bo_evict_vram(struct radeon_device *rdev) |
| 222 | { | 222 | { |
| 223 | if (rdev->flags & RADEON_IS_IGP) { | 223 | /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */ |
| 224 | if (0 && (rdev->flags & RADEON_IS_IGP)) { | ||
| 224 | if (rdev->mc.igp_sideport_enabled == false) | 225 | if (rdev->mc.igp_sideport_enabled == false) |
| 225 | /* Useless to evict on IGP chips */ | 226 | /* Useless to evict on IGP chips */ |
| 226 | return 0; | 227 | return 0; |
diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c index 3b0c07b444a2..58b5adf974ca 100644 --- a/drivers/gpu/drm/radeon/radeon_ttm.c +++ b/drivers/gpu/drm/radeon/radeon_ttm.c | |||
| @@ -215,7 +215,10 @@ static void radeon_evict_flags(struct ttm_buffer_object *bo, | |||
| 215 | rbo = container_of(bo, struct radeon_bo, tbo); | 215 | rbo = container_of(bo, struct radeon_bo, tbo); |
| 216 | switch (bo->mem.mem_type) { | 216 | switch (bo->mem.mem_type) { |
| 217 | case TTM_PL_VRAM: | 217 | case TTM_PL_VRAM: |
| 218 | radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT); | 218 | if (rbo->rdev->cp.ready == false) |
| 219 | radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_CPU); | ||
| 220 | else | ||
| 221 | radeon_ttm_placement_from_domain(rbo, RADEON_GEM_DOMAIN_GTT); | ||
| 219 | break; | 222 | break; |
| 220 | case TTM_PL_TT: | 223 | case TTM_PL_TT: |
| 221 | default: | 224 | default: |
diff --git a/drivers/gpu/drm/radeon/reg_srcs/r200 b/drivers/gpu/drm/radeon/reg_srcs/r200 index 6021c8849a16..c29ac434ac9c 100644 --- a/drivers/gpu/drm/radeon/reg_srcs/r200 +++ b/drivers/gpu/drm/radeon/reg_srcs/r200 | |||
| @@ -91,6 +91,8 @@ r200 0x3294 | |||
| 91 | 0x22b8 SE_TCL_TEX_CYL_WRAP_CTL | 91 | 0x22b8 SE_TCL_TEX_CYL_WRAP_CTL |
| 92 | 0x22c0 SE_TCL_UCP_VERT_BLEND_CNTL | 92 | 0x22c0 SE_TCL_UCP_VERT_BLEND_CNTL |
| 93 | 0x22c4 SE_TCL_POINT_SPRITE_CNTL | 93 | 0x22c4 SE_TCL_POINT_SPRITE_CNTL |
| 94 | 0x22d0 SE_PVS_CNTL | ||
| 95 | 0x22d4 SE_PVS_CONST_CNTL | ||
| 94 | 0x2648 RE_POINTSIZE | 96 | 0x2648 RE_POINTSIZE |
| 95 | 0x26c0 RE_TOP_LEFT | 97 | 0x26c0 RE_TOP_LEFT |
| 96 | 0x26c4 RE_MISC | 98 | 0x26c4 RE_MISC |
diff --git a/drivers/gpu/drm/radeon/rs400.c b/drivers/gpu/drm/radeon/rs400.c index 9f5418983e2a..287fcebfb4e6 100644 --- a/drivers/gpu/drm/radeon/rs400.c +++ b/drivers/gpu/drm/radeon/rs400.c | |||
| @@ -223,15 +223,31 @@ int rs400_gart_set_page(struct radeon_device *rdev, int i, uint64_t addr) | |||
| 223 | return 0; | 223 | return 0; |
| 224 | } | 224 | } |
| 225 | 225 | ||
| 226 | int rs400_mc_wait_for_idle(struct radeon_device *rdev) | ||
| 227 | { | ||
| 228 | unsigned i; | ||
| 229 | uint32_t tmp; | ||
| 230 | |||
| 231 | for (i = 0; i < rdev->usec_timeout; i++) { | ||
| 232 | /* read MC_STATUS */ | ||
| 233 | tmp = RREG32(0x0150); | ||
| 234 | if (tmp & (1 << 2)) { | ||
| 235 | return 0; | ||
| 236 | } | ||
| 237 | DRM_UDELAY(1); | ||
| 238 | } | ||
| 239 | return -1; | ||
| 240 | } | ||
| 241 | |||
| 226 | void rs400_gpu_init(struct radeon_device *rdev) | 242 | void rs400_gpu_init(struct radeon_device *rdev) |
| 227 | { | 243 | { |
| 228 | /* FIXME: HDP same place on rs400 ? */ | 244 | /* FIXME: HDP same place on rs400 ? */ |
| 229 | r100_hdp_reset(rdev); | 245 | r100_hdp_reset(rdev); |
| 230 | /* FIXME: is this correct ? */ | 246 | /* FIXME: is this correct ? */ |
| 231 | r420_pipes_init(rdev); | 247 | r420_pipes_init(rdev); |
| 232 | if (r300_mc_wait_for_idle(rdev)) { | 248 | if (rs400_mc_wait_for_idle(rdev)) { |
| 233 | printk(KERN_WARNING "Failed to wait MC idle while " | 249 | printk(KERN_WARNING "rs400: Failed to wait MC idle while " |
| 234 | "programming pipes. Bad things might happen.\n"); | 250 | "programming pipes. Bad things might happen. %08x\n", RREG32(0x150)); |
| 235 | } | 251 | } |
| 236 | } | 252 | } |
| 237 | 253 | ||
| @@ -370,8 +386,8 @@ void rs400_mc_program(struct radeon_device *rdev) | |||
| 370 | r100_mc_stop(rdev, &save); | 386 | r100_mc_stop(rdev, &save); |
| 371 | 387 | ||
| 372 | /* Wait for mc idle */ | 388 | /* Wait for mc idle */ |
| 373 | if (r300_mc_wait_for_idle(rdev)) | 389 | if (rs400_mc_wait_for_idle(rdev)) |
| 374 | dev_warn(rdev->dev, "Wait MC idle timeout before updating MC.\n"); | 390 | dev_warn(rdev->dev, "rs400: Wait MC idle timeout before updating MC.\n"); |
| 375 | WREG32(R_000148_MC_FB_LOCATION, | 391 | WREG32(R_000148_MC_FB_LOCATION, |
| 376 | S_000148_MC_FB_START(rdev->mc.vram_start >> 16) | | 392 | S_000148_MC_FB_START(rdev->mc.vram_start >> 16) | |
| 377 | S_000148_MC_FB_TOP(rdev->mc.vram_end >> 16)); | 393 | S_000148_MC_FB_TOP(rdev->mc.vram_end >> 16)); |
| @@ -448,7 +464,6 @@ int rs400_suspend(struct radeon_device *rdev) | |||
| 448 | 464 | ||
| 449 | void rs400_fini(struct radeon_device *rdev) | 465 | void rs400_fini(struct radeon_device *rdev) |
| 450 | { | 466 | { |
| 451 | rs400_suspend(rdev); | ||
| 452 | r100_cp_fini(rdev); | 467 | r100_cp_fini(rdev); |
| 453 | r100_wb_fini(rdev); | 468 | r100_wb_fini(rdev); |
| 454 | r100_ib_fini(rdev); | 469 | r100_ib_fini(rdev); |
| @@ -527,7 +542,6 @@ int rs400_init(struct radeon_device *rdev) | |||
| 527 | if (r) { | 542 | if (r) { |
| 528 | /* Somethings want wront with the accel init stop accel */ | 543 | /* Somethings want wront with the accel init stop accel */ |
| 529 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 544 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 530 | rs400_suspend(rdev); | ||
| 531 | r100_cp_fini(rdev); | 545 | r100_cp_fini(rdev); |
| 532 | r100_wb_fini(rdev); | 546 | r100_wb_fini(rdev); |
| 533 | r100_ib_fini(rdev); | 547 | r100_ib_fini(rdev); |
diff --git a/drivers/gpu/drm/radeon/rs600.c b/drivers/gpu/drm/radeon/rs600.c index d5255751e7b3..c3818562a13e 100644 --- a/drivers/gpu/drm/radeon/rs600.c +++ b/drivers/gpu/drm/radeon/rs600.c | |||
| @@ -610,7 +610,6 @@ int rs600_suspend(struct radeon_device *rdev) | |||
| 610 | 610 | ||
| 611 | void rs600_fini(struct radeon_device *rdev) | 611 | void rs600_fini(struct radeon_device *rdev) |
| 612 | { | 612 | { |
| 613 | rs600_suspend(rdev); | ||
| 614 | r100_cp_fini(rdev); | 613 | r100_cp_fini(rdev); |
| 615 | r100_wb_fini(rdev); | 614 | r100_wb_fini(rdev); |
| 616 | r100_ib_fini(rdev); | 615 | r100_ib_fini(rdev); |
| @@ -689,7 +688,6 @@ int rs600_init(struct radeon_device *rdev) | |||
| 689 | if (r) { | 688 | if (r) { |
| 690 | /* Somethings want wront with the accel init stop accel */ | 689 | /* Somethings want wront with the accel init stop accel */ |
| 691 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 690 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 692 | rs600_suspend(rdev); | ||
| 693 | r100_cp_fini(rdev); | 691 | r100_cp_fini(rdev); |
| 694 | r100_wb_fini(rdev); | 692 | r100_wb_fini(rdev); |
| 695 | r100_ib_fini(rdev); | 693 | r100_ib_fini(rdev); |
diff --git a/drivers/gpu/drm/radeon/rs690.c b/drivers/gpu/drm/radeon/rs690.c index cd31da913771..06e2771aee5a 100644 --- a/drivers/gpu/drm/radeon/rs690.c +++ b/drivers/gpu/drm/radeon/rs690.c | |||
| @@ -676,7 +676,6 @@ int rs690_suspend(struct radeon_device *rdev) | |||
| 676 | 676 | ||
| 677 | void rs690_fini(struct radeon_device *rdev) | 677 | void rs690_fini(struct radeon_device *rdev) |
| 678 | { | 678 | { |
| 679 | rs690_suspend(rdev); | ||
| 680 | r100_cp_fini(rdev); | 679 | r100_cp_fini(rdev); |
| 681 | r100_wb_fini(rdev); | 680 | r100_wb_fini(rdev); |
| 682 | r100_ib_fini(rdev); | 681 | r100_ib_fini(rdev); |
| @@ -756,7 +755,6 @@ int rs690_init(struct radeon_device *rdev) | |||
| 756 | if (r) { | 755 | if (r) { |
| 757 | /* Somethings want wront with the accel init stop accel */ | 756 | /* Somethings want wront with the accel init stop accel */ |
| 758 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 757 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 759 | rs690_suspend(rdev); | ||
| 760 | r100_cp_fini(rdev); | 758 | r100_cp_fini(rdev); |
| 761 | r100_wb_fini(rdev); | 759 | r100_wb_fini(rdev); |
| 762 | r100_ib_fini(rdev); | 760 | r100_ib_fini(rdev); |
diff --git a/drivers/gpu/drm/radeon/rv515.c b/drivers/gpu/drm/radeon/rv515.c index 62756717b044..0e1e6b8632b8 100644 --- a/drivers/gpu/drm/radeon/rv515.c +++ b/drivers/gpu/drm/radeon/rv515.c | |||
| @@ -537,7 +537,6 @@ void rv515_set_safe_registers(struct radeon_device *rdev) | |||
| 537 | 537 | ||
| 538 | void rv515_fini(struct radeon_device *rdev) | 538 | void rv515_fini(struct radeon_device *rdev) |
| 539 | { | 539 | { |
| 540 | rv515_suspend(rdev); | ||
| 541 | r100_cp_fini(rdev); | 540 | r100_cp_fini(rdev); |
| 542 | r100_wb_fini(rdev); | 541 | r100_wb_fini(rdev); |
| 543 | r100_ib_fini(rdev); | 542 | r100_ib_fini(rdev); |
| @@ -615,13 +614,12 @@ int rv515_init(struct radeon_device *rdev) | |||
| 615 | if (r) { | 614 | if (r) { |
| 616 | /* Somethings want wront with the accel init stop accel */ | 615 | /* Somethings want wront with the accel init stop accel */ |
| 617 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); | 616 | dev_err(rdev->dev, "Disabling GPU acceleration\n"); |
| 618 | rv515_suspend(rdev); | ||
| 619 | r100_cp_fini(rdev); | 617 | r100_cp_fini(rdev); |
| 620 | r100_wb_fini(rdev); | 618 | r100_wb_fini(rdev); |
| 621 | r100_ib_fini(rdev); | 619 | r100_ib_fini(rdev); |
| 620 | radeon_irq_kms_fini(rdev); | ||
| 622 | rv370_pcie_gart_fini(rdev); | 621 | rv370_pcie_gart_fini(rdev); |
| 623 | radeon_agp_fini(rdev); | 622 | radeon_agp_fini(rdev); |
| 624 | radeon_irq_kms_fini(rdev); | ||
| 625 | rdev->accel_working = false; | 623 | rdev->accel_working = false; |
| 626 | } | 624 | } |
| 627 | return 0; | 625 | return 0; |
diff --git a/drivers/gpu/drm/radeon/rv770.c b/drivers/gpu/drm/radeon/rv770.c index 59c71245fb91..5943d561fd1e 100644 --- a/drivers/gpu/drm/radeon/rv770.c +++ b/drivers/gpu/drm/radeon/rv770.c | |||
| @@ -779,7 +779,6 @@ int rv770_mc_init(struct radeon_device *rdev) | |||
| 779 | fixed20_12 a; | 779 | fixed20_12 a; |
| 780 | u32 tmp; | 780 | u32 tmp; |
| 781 | int chansize, numchan; | 781 | int chansize, numchan; |
| 782 | int r; | ||
| 783 | 782 | ||
| 784 | /* Get VRAM informations */ | 783 | /* Get VRAM informations */ |
| 785 | rdev->mc.vram_is_ddr = true; | 784 | rdev->mc.vram_is_ddr = true; |
| @@ -822,9 +821,6 @@ int rv770_mc_init(struct radeon_device *rdev) | |||
| 822 | rdev->mc.real_vram_size = rdev->mc.aper_size; | 821 | rdev->mc.real_vram_size = rdev->mc.aper_size; |
| 823 | 822 | ||
| 824 | if (rdev->flags & RADEON_IS_AGP) { | 823 | if (rdev->flags & RADEON_IS_AGP) { |
| 825 | r = radeon_agp_init(rdev); | ||
| 826 | if (r) | ||
| 827 | return r; | ||
| 828 | /* gtt_size is setup by radeon_agp_init */ | 824 | /* gtt_size is setup by radeon_agp_init */ |
| 829 | rdev->mc.gtt_location = rdev->mc.agp_base; | 825 | rdev->mc.gtt_location = rdev->mc.agp_base; |
| 830 | tmp = 0xFFFFFFFFUL - rdev->mc.agp_base - rdev->mc.gtt_size; | 826 | tmp = 0xFFFFFFFFUL - rdev->mc.agp_base - rdev->mc.gtt_size; |
| @@ -891,26 +887,25 @@ static int rv770_startup(struct radeon_device *rdev) | |||
| 891 | return r; | 887 | return r; |
| 892 | } | 888 | } |
| 893 | rv770_gpu_init(rdev); | 889 | rv770_gpu_init(rdev); |
| 894 | 890 | r = r600_blit_init(rdev); | |
| 895 | if (!rdev->r600_blit.shader_obj) { | 891 | if (r) { |
| 896 | r = r600_blit_init(rdev); | 892 | r600_blit_fini(rdev); |
| 893 | rdev->asic->copy = NULL; | ||
| 894 | dev_warn(rdev->dev, "failed blitter (%d) falling back to memcpy\n", r); | ||
| 895 | } | ||
| 896 | /* pin copy shader into vram */ | ||
| 897 | if (rdev->r600_blit.shader_obj) { | ||
| 898 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | ||
| 899 | if (unlikely(r != 0)) | ||
| 900 | return r; | ||
| 901 | r = radeon_bo_pin(rdev->r600_blit.shader_obj, RADEON_GEM_DOMAIN_VRAM, | ||
| 902 | &rdev->r600_blit.shader_gpu_addr); | ||
| 903 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 897 | if (r) { | 904 | if (r) { |
| 898 | DRM_ERROR("radeon: failed blitter (%d).\n", r); | 905 | DRM_ERROR("failed to pin blit object %d\n", r); |
| 899 | return r; | 906 | return r; |
| 900 | } | 907 | } |
| 901 | } | 908 | } |
| 902 | |||
| 903 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | ||
| 904 | if (unlikely(r != 0)) | ||
| 905 | return r; | ||
| 906 | r = radeon_bo_pin(rdev->r600_blit.shader_obj, RADEON_GEM_DOMAIN_VRAM, | ||
| 907 | &rdev->r600_blit.shader_gpu_addr); | ||
| 908 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 909 | if (r) { | ||
| 910 | DRM_ERROR("failed to pin blit object %d\n", r); | ||
| 911 | return r; | ||
| 912 | } | ||
| 913 | |||
| 914 | /* Enable IRQ */ | 909 | /* Enable IRQ */ |
| 915 | r = r600_irq_init(rdev); | 910 | r = r600_irq_init(rdev); |
| 916 | if (r) { | 911 | if (r) { |
| @@ -972,13 +967,16 @@ int rv770_suspend(struct radeon_device *rdev) | |||
| 972 | /* FIXME: we should wait for ring to be empty */ | 967 | /* FIXME: we should wait for ring to be empty */ |
| 973 | r700_cp_stop(rdev); | 968 | r700_cp_stop(rdev); |
| 974 | rdev->cp.ready = false; | 969 | rdev->cp.ready = false; |
| 970 | r600_irq_suspend(rdev); | ||
| 975 | r600_wb_disable(rdev); | 971 | r600_wb_disable(rdev); |
| 976 | rv770_pcie_gart_disable(rdev); | 972 | rv770_pcie_gart_disable(rdev); |
| 977 | /* unpin shaders bo */ | 973 | /* unpin shaders bo */ |
| 978 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); | 974 | if (rdev->r600_blit.shader_obj) { |
| 979 | if (likely(r == 0)) { | 975 | r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false); |
| 980 | radeon_bo_unpin(rdev->r600_blit.shader_obj); | 976 | if (likely(r == 0)) { |
| 981 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | 977 | radeon_bo_unpin(rdev->r600_blit.shader_obj); |
| 978 | radeon_bo_unreserve(rdev->r600_blit.shader_obj); | ||
| 979 | } | ||
| 982 | } | 980 | } |
| 983 | return 0; | 981 | return 0; |
| 984 | } | 982 | } |
| @@ -1037,6 +1035,11 @@ int rv770_init(struct radeon_device *rdev) | |||
| 1037 | r = radeon_fence_driver_init(rdev); | 1035 | r = radeon_fence_driver_init(rdev); |
| 1038 | if (r) | 1036 | if (r) |
| 1039 | return r; | 1037 | return r; |
| 1038 | if (rdev->flags & RADEON_IS_AGP) { | ||
| 1039 | r = radeon_agp_init(rdev); | ||
| 1040 | if (r) | ||
| 1041 | radeon_agp_disable(rdev); | ||
| 1042 | } | ||
| 1040 | r = rv770_mc_init(rdev); | 1043 | r = rv770_mc_init(rdev); |
| 1041 | if (r) | 1044 | if (r) |
| 1042 | return r; | 1045 | return r; |
| @@ -1062,22 +1065,25 @@ int rv770_init(struct radeon_device *rdev) | |||
| 1062 | rdev->accel_working = true; | 1065 | rdev->accel_working = true; |
| 1063 | r = rv770_startup(rdev); | 1066 | r = rv770_startup(rdev); |
| 1064 | if (r) { | 1067 | if (r) { |
| 1065 | rv770_suspend(rdev); | 1068 | dev_err(rdev->dev, "disabling GPU acceleration\n"); |
| 1069 | r600_cp_fini(rdev); | ||
| 1066 | r600_wb_fini(rdev); | 1070 | r600_wb_fini(rdev); |
| 1067 | radeon_ring_fini(rdev); | 1071 | r600_irq_fini(rdev); |
| 1072 | radeon_irq_kms_fini(rdev); | ||
| 1068 | rv770_pcie_gart_fini(rdev); | 1073 | rv770_pcie_gart_fini(rdev); |
| 1069 | rdev->accel_working = false; | 1074 | rdev->accel_working = false; |
| 1070 | } | 1075 | } |
| 1071 | if (rdev->accel_working) { | 1076 | if (rdev->accel_working) { |
| 1072 | r = radeon_ib_pool_init(rdev); | 1077 | r = radeon_ib_pool_init(rdev); |
| 1073 | if (r) { | 1078 | if (r) { |
| 1074 | DRM_ERROR("radeon: failed initializing IB pool (%d).\n", r); | 1079 | dev_err(rdev->dev, "IB initialization failed (%d).\n", r); |
| 1075 | rdev->accel_working = false; | ||
| 1076 | } | ||
| 1077 | r = r600_ib_test(rdev); | ||
| 1078 | if (r) { | ||
| 1079 | DRM_ERROR("radeon: failed testing IB (%d).\n", r); | ||
| 1080 | rdev->accel_working = false; | 1080 | rdev->accel_working = false; |
| 1081 | } else { | ||
| 1082 | r = r600_ib_test(rdev); | ||
| 1083 | if (r) { | ||
| 1084 | dev_err(rdev->dev, "IB test failed (%d).\n", r); | ||
| 1085 | rdev->accel_working = false; | ||
| 1086 | } | ||
| 1081 | } | 1087 | } |
| 1082 | } | 1088 | } |
| 1083 | return 0; | 1089 | return 0; |
| @@ -1085,13 +1091,11 @@ int rv770_init(struct radeon_device *rdev) | |||
| 1085 | 1091 | ||
| 1086 | void rv770_fini(struct radeon_device *rdev) | 1092 | void rv770_fini(struct radeon_device *rdev) |
| 1087 | { | 1093 | { |
| 1088 | rv770_suspend(rdev); | ||
| 1089 | |||
| 1090 | r600_blit_fini(rdev); | 1094 | r600_blit_fini(rdev); |
| 1095 | r600_cp_fini(rdev); | ||
| 1096 | r600_wb_fini(rdev); | ||
| 1091 | r600_irq_fini(rdev); | 1097 | r600_irq_fini(rdev); |
| 1092 | radeon_irq_kms_fini(rdev); | 1098 | radeon_irq_kms_fini(rdev); |
| 1093 | radeon_ring_fini(rdev); | ||
| 1094 | r600_wb_fini(rdev); | ||
| 1095 | rv770_pcie_gart_fini(rdev); | 1099 | rv770_pcie_gart_fini(rdev); |
| 1096 | radeon_gem_fini(rdev); | 1100 | radeon_gem_fini(rdev); |
| 1097 | radeon_fence_driver_fini(rdev); | 1101 | radeon_fence_driver_fini(rdev); |
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index 2920f9a279e1..1a3e909b7bba 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c | |||
| @@ -426,7 +426,8 @@ moved: | |||
| 426 | bdev->man[bo->mem.mem_type].gpu_offset; | 426 | bdev->man[bo->mem.mem_type].gpu_offset; |
| 427 | bo->cur_placement = bo->mem.placement; | 427 | bo->cur_placement = bo->mem.placement; |
| 428 | spin_unlock(&bo->lock); | 428 | spin_unlock(&bo->lock); |
| 429 | } | 429 | } else |
| 430 | bo->offset = 0; | ||
| 430 | 431 | ||
| 431 | return 0; | 432 | return 0; |
| 432 | 433 | ||
| @@ -523,52 +524,44 @@ static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo, bool remove_all) | |||
| 523 | static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all) | 524 | static int ttm_bo_delayed_delete(struct ttm_bo_device *bdev, bool remove_all) |
| 524 | { | 525 | { |
| 525 | struct ttm_bo_global *glob = bdev->glob; | 526 | struct ttm_bo_global *glob = bdev->glob; |
| 526 | struct ttm_buffer_object *entry, *nentry; | 527 | struct ttm_buffer_object *entry = NULL; |
| 527 | struct list_head *list, *next; | 528 | int ret = 0; |
| 528 | int ret; | ||
| 529 | 529 | ||
| 530 | spin_lock(&glob->lru_lock); | 530 | spin_lock(&glob->lru_lock); |
| 531 | list_for_each_safe(list, next, &bdev->ddestroy) { | 531 | if (list_empty(&bdev->ddestroy)) |
| 532 | entry = list_entry(list, struct ttm_buffer_object, ddestroy); | 532 | goto out_unlock; |
| 533 | nentry = NULL; | ||
| 534 | 533 | ||
| 535 | /* | 534 | entry = list_first_entry(&bdev->ddestroy, |
| 536 | * Protect the next list entry from destruction while we | 535 | struct ttm_buffer_object, ddestroy); |
| 537 | * unlock the lru_lock. | 536 | kref_get(&entry->list_kref); |
| 538 | */ | ||
| 539 | 537 | ||
| 540 | if (next != &bdev->ddestroy) { | 538 | for (;;) { |
| 541 | nentry = list_entry(next, struct ttm_buffer_object, | 539 | struct ttm_buffer_object *nentry = NULL; |
| 542 | ddestroy); | 540 | |
| 541 | if (entry->ddestroy.next != &bdev->ddestroy) { | ||
| 542 | nentry = list_first_entry(&entry->ddestroy, | ||
| 543 | struct ttm_buffer_object, ddestroy); | ||
| 543 | kref_get(&nentry->list_kref); | 544 | kref_get(&nentry->list_kref); |
| 544 | } | 545 | } |
| 545 | kref_get(&entry->list_kref); | ||
| 546 | 546 | ||
| 547 | spin_unlock(&glob->lru_lock); | 547 | spin_unlock(&glob->lru_lock); |
| 548 | ret = ttm_bo_cleanup_refs(entry, remove_all); | 548 | ret = ttm_bo_cleanup_refs(entry, remove_all); |
| 549 | kref_put(&entry->list_kref, ttm_bo_release_list); | 549 | kref_put(&entry->list_kref, ttm_bo_release_list); |
| 550 | entry = nentry; | ||
| 551 | |||
| 552 | if (ret || !entry) | ||
| 553 | goto out; | ||
| 550 | 554 | ||
| 551 | spin_lock(&glob->lru_lock); | 555 | spin_lock(&glob->lru_lock); |
| 552 | if (nentry) { | 556 | if (list_empty(&entry->ddestroy)) |
| 553 | bool next_onlist = !list_empty(next); | ||
| 554 | spin_unlock(&glob->lru_lock); | ||
| 555 | kref_put(&nentry->list_kref, ttm_bo_release_list); | ||
| 556 | spin_lock(&glob->lru_lock); | ||
| 557 | /* | ||
| 558 | * Someone might have raced us and removed the | ||
| 559 | * next entry from the list. We don't bother restarting | ||
| 560 | * list traversal. | ||
| 561 | */ | ||
| 562 | |||
| 563 | if (!next_onlist) | ||
| 564 | break; | ||
| 565 | } | ||
| 566 | if (ret) | ||
| 567 | break; | 557 | break; |
| 568 | } | 558 | } |
| 569 | ret = !list_empty(&bdev->ddestroy); | ||
| 570 | spin_unlock(&glob->lru_lock); | ||
| 571 | 559 | ||
| 560 | out_unlock: | ||
| 561 | spin_unlock(&glob->lru_lock); | ||
| 562 | out: | ||
| 563 | if (entry) | ||
| 564 | kref_put(&entry->list_kref, ttm_bo_release_list); | ||
| 572 | return ret; | 565 | return ret; |
| 573 | } | 566 | } |
| 574 | 567 | ||
| @@ -950,6 +943,14 @@ int ttm_bo_mem_space(struct ttm_buffer_object *bo, | |||
| 950 | ttm_flag_masked(&cur_flags, placement->busy_placement[i], | 943 | ttm_flag_masked(&cur_flags, placement->busy_placement[i], |
| 951 | ~TTM_PL_MASK_MEMTYPE); | 944 | ~TTM_PL_MASK_MEMTYPE); |
| 952 | 945 | ||
| 946 | |||
| 947 | if (mem_type == TTM_PL_SYSTEM) { | ||
| 948 | mem->mem_type = mem_type; | ||
| 949 | mem->placement = cur_flags; | ||
| 950 | mem->mm_node = NULL; | ||
| 951 | return 0; | ||
| 952 | } | ||
| 953 | |||
| 953 | ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem, | 954 | ret = ttm_bo_mem_force_space(bo, mem_type, placement, mem, |
| 954 | interruptible, no_wait); | 955 | interruptible, no_wait); |
| 955 | if (ret == 0 && mem->mm_node) { | 956 | if (ret == 0 && mem->mm_node) { |
| @@ -1844,6 +1845,9 @@ static int ttm_bo_swapout(struct ttm_mem_shrink *shrink) | |||
| 1844 | * anyone tries to access a ttm page. | 1845 | * anyone tries to access a ttm page. |
| 1845 | */ | 1846 | */ |
| 1846 | 1847 | ||
| 1848 | if (bo->bdev->driver->swap_notify) | ||
| 1849 | bo->bdev->driver->swap_notify(bo); | ||
| 1850 | |||
| 1847 | ret = ttm_tt_swapout(bo->ttm, bo->persistant_swap_storage); | 1851 | ret = ttm_tt_swapout(bo->ttm, bo->persistant_swap_storage); |
| 1848 | out: | 1852 | out: |
| 1849 | 1853 | ||
| @@ -1864,3 +1868,4 @@ void ttm_bo_swapout_all(struct ttm_bo_device *bdev) | |||
| 1864 | while (ttm_bo_swapout(&bdev->glob->shrink) == 0) | 1868 | while (ttm_bo_swapout(&bdev->glob->shrink) == 0) |
| 1865 | ; | 1869 | ; |
| 1866 | } | 1870 | } |
| 1871 | EXPORT_SYMBOL(ttm_bo_swapout_all); | ||
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c index 2ecf7d0c64f6..5ca37a58a98c 100644 --- a/drivers/gpu/drm/ttm/ttm_bo_util.c +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c | |||
| @@ -53,7 +53,6 @@ int ttm_bo_move_ttm(struct ttm_buffer_object *bo, | |||
| 53 | { | 53 | { |
| 54 | struct ttm_tt *ttm = bo->ttm; | 54 | struct ttm_tt *ttm = bo->ttm; |
| 55 | struct ttm_mem_reg *old_mem = &bo->mem; | 55 | struct ttm_mem_reg *old_mem = &bo->mem; |
| 56 | uint32_t save_flags = old_mem->placement; | ||
| 57 | int ret; | 56 | int ret; |
| 58 | 57 | ||
| 59 | if (old_mem->mem_type != TTM_PL_SYSTEM) { | 58 | if (old_mem->mem_type != TTM_PL_SYSTEM) { |
| @@ -62,7 +61,6 @@ int ttm_bo_move_ttm(struct ttm_buffer_object *bo, | |||
| 62 | ttm_flag_masked(&old_mem->placement, TTM_PL_FLAG_SYSTEM, | 61 | ttm_flag_masked(&old_mem->placement, TTM_PL_FLAG_SYSTEM, |
| 63 | TTM_PL_MASK_MEM); | 62 | TTM_PL_MASK_MEM); |
| 64 | old_mem->mem_type = TTM_PL_SYSTEM; | 63 | old_mem->mem_type = TTM_PL_SYSTEM; |
| 65 | save_flags = old_mem->placement; | ||
| 66 | } | 64 | } |
| 67 | 65 | ||
| 68 | ret = ttm_tt_set_placement_caching(ttm, new_mem->placement); | 66 | ret = ttm_tt_set_placement_caching(ttm, new_mem->placement); |
| @@ -77,7 +75,7 @@ int ttm_bo_move_ttm(struct ttm_buffer_object *bo, | |||
| 77 | 75 | ||
| 78 | *old_mem = *new_mem; | 76 | *old_mem = *new_mem; |
| 79 | new_mem->mm_node = NULL; | 77 | new_mem->mm_node = NULL; |
| 80 | ttm_flag_masked(&save_flags, new_mem->placement, TTM_PL_MASK_MEMTYPE); | 78 | |
| 81 | return 0; | 79 | return 0; |
| 82 | } | 80 | } |
| 83 | EXPORT_SYMBOL(ttm_bo_move_ttm); | 81 | EXPORT_SYMBOL(ttm_bo_move_ttm); |
| @@ -219,7 +217,6 @@ int ttm_bo_move_memcpy(struct ttm_buffer_object *bo, | |||
| 219 | void *old_iomap; | 217 | void *old_iomap; |
| 220 | void *new_iomap; | 218 | void *new_iomap; |
| 221 | int ret; | 219 | int ret; |
| 222 | uint32_t save_flags = old_mem->placement; | ||
| 223 | unsigned long i; | 220 | unsigned long i; |
| 224 | unsigned long page; | 221 | unsigned long page; |
| 225 | unsigned long add = 0; | 222 | unsigned long add = 0; |
| @@ -270,7 +267,6 @@ out2: | |||
| 270 | 267 | ||
| 271 | *old_mem = *new_mem; | 268 | *old_mem = *new_mem; |
| 272 | new_mem->mm_node = NULL; | 269 | new_mem->mm_node = NULL; |
| 273 | ttm_flag_masked(&save_flags, new_mem->placement, TTM_PL_MASK_MEMTYPE); | ||
| 274 | 270 | ||
| 275 | if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && (ttm != NULL)) { | 271 | if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && (ttm != NULL)) { |
| 276 | ttm_tt_unbind(ttm); | 272 | ttm_tt_unbind(ttm); |
| @@ -537,7 +533,6 @@ int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo, | |||
| 537 | struct ttm_mem_type_manager *man = &bdev->man[new_mem->mem_type]; | 533 | struct ttm_mem_type_manager *man = &bdev->man[new_mem->mem_type]; |
| 538 | struct ttm_mem_reg *old_mem = &bo->mem; | 534 | struct ttm_mem_reg *old_mem = &bo->mem; |
| 539 | int ret; | 535 | int ret; |
| 540 | uint32_t save_flags = old_mem->placement; | ||
| 541 | struct ttm_buffer_object *ghost_obj; | 536 | struct ttm_buffer_object *ghost_obj; |
| 542 | void *tmp_obj = NULL; | 537 | void *tmp_obj = NULL; |
| 543 | 538 | ||
| @@ -598,7 +593,7 @@ int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo, | |||
| 598 | 593 | ||
| 599 | *old_mem = *new_mem; | 594 | *old_mem = *new_mem; |
| 600 | new_mem->mm_node = NULL; | 595 | new_mem->mm_node = NULL; |
| 601 | ttm_flag_masked(&save_flags, new_mem->placement, TTM_PL_MASK_MEMTYPE); | 596 | |
| 602 | return 0; | 597 | return 0; |
| 603 | } | 598 | } |
| 604 | EXPORT_SYMBOL(ttm_bo_move_accel_cleanup); | 599 | EXPORT_SYMBOL(ttm_bo_move_accel_cleanup); |
diff --git a/drivers/gpu/drm/ttm/ttm_lock.c b/drivers/gpu/drm/ttm/ttm_lock.c index f619ebcaa4ec..3d172ef04ee1 100644 --- a/drivers/gpu/drm/ttm/ttm_lock.c +++ b/drivers/gpu/drm/ttm/ttm_lock.c | |||
| @@ -288,6 +288,7 @@ void ttm_suspend_unlock(struct ttm_lock *lock) | |||
| 288 | wake_up_all(&lock->queue); | 288 | wake_up_all(&lock->queue); |
| 289 | spin_unlock(&lock->lock); | 289 | spin_unlock(&lock->lock); |
| 290 | } | 290 | } |
| 291 | EXPORT_SYMBOL(ttm_suspend_unlock); | ||
| 291 | 292 | ||
| 292 | static bool __ttm_suspend_lock(struct ttm_lock *lock) | 293 | static bool __ttm_suspend_lock(struct ttm_lock *lock) |
| 293 | { | 294 | { |
| @@ -309,3 +310,4 @@ void ttm_suspend_lock(struct ttm_lock *lock) | |||
| 309 | { | 310 | { |
| 310 | wait_event(lock->queue, __ttm_suspend_lock(lock)); | 311 | wait_event(lock->queue, __ttm_suspend_lock(lock)); |
| 311 | } | 312 | } |
| 313 | EXPORT_SYMBOL(ttm_suspend_lock); | ||
diff --git a/drivers/gpu/drm/ttm/ttm_object.c b/drivers/gpu/drm/ttm/ttm_object.c index 1099abac824b..75e9d6f86ba4 100644 --- a/drivers/gpu/drm/ttm/ttm_object.c +++ b/drivers/gpu/drm/ttm/ttm_object.c | |||
| @@ -109,8 +109,8 @@ struct ttm_ref_object { | |||
| 109 | struct drm_hash_item hash; | 109 | struct drm_hash_item hash; |
| 110 | struct list_head head; | 110 | struct list_head head; |
| 111 | struct kref kref; | 111 | struct kref kref; |
| 112 | struct ttm_base_object *obj; | ||
| 113 | enum ttm_ref_type ref_type; | 112 | enum ttm_ref_type ref_type; |
| 113 | struct ttm_base_object *obj; | ||
| 114 | struct ttm_object_file *tfile; | 114 | struct ttm_object_file *tfile; |
| 115 | }; | 115 | }; |
| 116 | 116 | ||
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c index 9c2b1cc5dba5..e2123af7775a 100644 --- a/drivers/gpu/drm/ttm/ttm_tt.c +++ b/drivers/gpu/drm/ttm/ttm_tt.c | |||
| @@ -198,17 +198,26 @@ EXPORT_SYMBOL(ttm_tt_populate); | |||
| 198 | static inline int ttm_tt_set_page_caching(struct page *p, | 198 | static inline int ttm_tt_set_page_caching(struct page *p, |
| 199 | enum ttm_caching_state c_state) | 199 | enum ttm_caching_state c_state) |
| 200 | { | 200 | { |
| 201 | int ret = 0; | ||
| 202 | |||
| 201 | if (PageHighMem(p)) | 203 | if (PageHighMem(p)) |
| 202 | return 0; | 204 | return 0; |
| 203 | 205 | ||
| 204 | switch (c_state) { | 206 | if (get_page_memtype(p) != -1) { |
| 205 | case tt_cached: | 207 | /* p isn't in the default caching state, set it to |
| 206 | return set_pages_wb(p, 1); | 208 | * writeback first to free its current memtype. */ |
| 207 | case tt_wc: | 209 | |
| 208 | return set_memory_wc((unsigned long) page_address(p), 1); | 210 | ret = set_pages_wb(p, 1); |
| 209 | default: | 211 | if (ret) |
| 210 | return set_pages_uc(p, 1); | 212 | return ret; |
| 211 | } | 213 | } |
| 214 | |||
| 215 | if (c_state == tt_wc) | ||
| 216 | ret = set_memory_wc((unsigned long) page_address(p), 1); | ||
| 217 | else if (c_state == tt_uncached) | ||
| 218 | ret = set_pages_uc(p, 1); | ||
| 219 | |||
| 220 | return ret; | ||
| 212 | } | 221 | } |
| 213 | #else /* CONFIG_X86 */ | 222 | #else /* CONFIG_X86 */ |
| 214 | static inline int ttm_tt_set_page_caching(struct page *p, | 223 | static inline int ttm_tt_set_page_caching(struct page *p, |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c b/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c index d6f2d2b882e9..825ebe3d89d5 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c | |||
| @@ -48,6 +48,15 @@ struct ttm_placement vmw_vram_placement = { | |||
| 48 | .busy_placement = &vram_placement_flags | 48 | .busy_placement = &vram_placement_flags |
| 49 | }; | 49 | }; |
| 50 | 50 | ||
| 51 | struct ttm_placement vmw_vram_sys_placement = { | ||
| 52 | .fpfn = 0, | ||
| 53 | .lpfn = 0, | ||
| 54 | .num_placement = 1, | ||
| 55 | .placement = &vram_placement_flags, | ||
| 56 | .num_busy_placement = 1, | ||
| 57 | .busy_placement = &sys_placement_flags | ||
| 58 | }; | ||
| 59 | |||
| 51 | struct ttm_placement vmw_vram_ne_placement = { | 60 | struct ttm_placement vmw_vram_ne_placement = { |
| 52 | .fpfn = 0, | 61 | .fpfn = 0, |
| 53 | .lpfn = 0, | 62 | .lpfn = 0, |
| @@ -172,6 +181,18 @@ static int vmw_verify_access(struct ttm_buffer_object *bo, struct file *filp) | |||
| 172 | return 0; | 181 | return 0; |
| 173 | } | 182 | } |
| 174 | 183 | ||
| 184 | static void vmw_move_notify(struct ttm_buffer_object *bo, | ||
| 185 | struct ttm_mem_reg *new_mem) | ||
| 186 | { | ||
| 187 | if (new_mem->mem_type != TTM_PL_SYSTEM) | ||
| 188 | vmw_dmabuf_gmr_unbind(bo); | ||
| 189 | } | ||
| 190 | |||
| 191 | static void vmw_swap_notify(struct ttm_buffer_object *bo) | ||
| 192 | { | ||
| 193 | vmw_dmabuf_gmr_unbind(bo); | ||
| 194 | } | ||
| 195 | |||
| 175 | /** | 196 | /** |
| 176 | * FIXME: We're using the old vmware polling method to sync. | 197 | * FIXME: We're using the old vmware polling method to sync. |
| 177 | * Do this with fences instead. | 198 | * Do this with fences instead. |
| @@ -225,5 +246,7 @@ struct ttm_bo_driver vmw_bo_driver = { | |||
| 225 | .sync_obj_wait = vmw_sync_obj_wait, | 246 | .sync_obj_wait = vmw_sync_obj_wait, |
| 226 | .sync_obj_flush = vmw_sync_obj_flush, | 247 | .sync_obj_flush = vmw_sync_obj_flush, |
| 227 | .sync_obj_unref = vmw_sync_obj_unref, | 248 | .sync_obj_unref = vmw_sync_obj_unref, |
| 228 | .sync_obj_ref = vmw_sync_obj_ref | 249 | .sync_obj_ref = vmw_sync_obj_ref, |
| 250 | .move_notify = vmw_move_notify, | ||
| 251 | .swap_notify = vmw_swap_notify | ||
| 229 | }; | 252 | }; |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 1db1ef30be2b..a6e8f687fa64 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | |||
| @@ -147,6 +147,8 @@ static char *vmw_devname = "vmwgfx"; | |||
| 147 | 147 | ||
| 148 | static int vmw_probe(struct pci_dev *, const struct pci_device_id *); | 148 | static int vmw_probe(struct pci_dev *, const struct pci_device_id *); |
| 149 | static void vmw_master_init(struct vmw_master *); | 149 | static void vmw_master_init(struct vmw_master *); |
| 150 | static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val, | ||
| 151 | void *ptr); | ||
| 150 | 152 | ||
| 151 | static void vmw_print_capabilities(uint32_t capabilities) | 153 | static void vmw_print_capabilities(uint32_t capabilities) |
| 152 | { | 154 | { |
| @@ -207,6 +209,7 @@ static int vmw_driver_load(struct drm_device *dev, unsigned long chipset) | |||
| 207 | { | 209 | { |
| 208 | struct vmw_private *dev_priv; | 210 | struct vmw_private *dev_priv; |
| 209 | int ret; | 211 | int ret; |
| 212 | uint32_t svga_id; | ||
| 210 | 213 | ||
| 211 | dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL); | 214 | dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL); |
| 212 | if (unlikely(dev_priv == NULL)) { | 215 | if (unlikely(dev_priv == NULL)) { |
| @@ -217,6 +220,7 @@ static int vmw_driver_load(struct drm_device *dev, unsigned long chipset) | |||
| 217 | 220 | ||
| 218 | dev_priv->dev = dev; | 221 | dev_priv->dev = dev; |
| 219 | dev_priv->vmw_chipset = chipset; | 222 | dev_priv->vmw_chipset = chipset; |
| 223 | dev_priv->last_read_sequence = (uint32_t) -100; | ||
| 220 | mutex_init(&dev_priv->hw_mutex); | 224 | mutex_init(&dev_priv->hw_mutex); |
| 221 | mutex_init(&dev_priv->cmdbuf_mutex); | 225 | mutex_init(&dev_priv->cmdbuf_mutex); |
| 222 | rwlock_init(&dev_priv->resource_lock); | 226 | rwlock_init(&dev_priv->resource_lock); |
| @@ -236,6 +240,16 @@ static int vmw_driver_load(struct drm_device *dev, unsigned long chipset) | |||
| 236 | dev_priv->mmio_start = pci_resource_start(dev->pdev, 2); | 240 | dev_priv->mmio_start = pci_resource_start(dev->pdev, 2); |
| 237 | 241 | ||
| 238 | mutex_lock(&dev_priv->hw_mutex); | 242 | mutex_lock(&dev_priv->hw_mutex); |
| 243 | |||
| 244 | vmw_write(dev_priv, SVGA_REG_ID, SVGA_ID_2); | ||
| 245 | svga_id = vmw_read(dev_priv, SVGA_REG_ID); | ||
| 246 | if (svga_id != SVGA_ID_2) { | ||
| 247 | ret = -ENOSYS; | ||
| 248 | DRM_ERROR("Unsuported SVGA ID 0x%x\n", svga_id); | ||
| 249 | mutex_unlock(&dev_priv->hw_mutex); | ||
| 250 | goto out_err0; | ||
| 251 | } | ||
| 252 | |||
| 239 | dev_priv->capabilities = vmw_read(dev_priv, SVGA_REG_CAPABILITIES); | 253 | dev_priv->capabilities = vmw_read(dev_priv, SVGA_REG_CAPABILITIES); |
| 240 | 254 | ||
| 241 | if (dev_priv->capabilities & SVGA_CAP_GMR) { | 255 | if (dev_priv->capabilities & SVGA_CAP_GMR) { |
| @@ -351,6 +365,11 @@ static int vmw_driver_load(struct drm_device *dev, unsigned long chipset) | |||
| 351 | vmw_fb_init(dev_priv); | 365 | vmw_fb_init(dev_priv); |
| 352 | } | 366 | } |
| 353 | 367 | ||
| 368 | dev_priv->pm_nb.notifier_call = vmwgfx_pm_notifier; | ||
| 369 | register_pm_notifier(&dev_priv->pm_nb); | ||
| 370 | |||
| 371 | DRM_INFO("%s", vmw_fifo_have_3d(dev_priv) ? "Have 3D\n" : "No 3D\n"); | ||
| 372 | |||
| 354 | return 0; | 373 | return 0; |
| 355 | 374 | ||
| 356 | out_no_device: | 375 | out_no_device: |
| @@ -385,6 +404,8 @@ static int vmw_driver_unload(struct drm_device *dev) | |||
| 385 | 404 | ||
| 386 | DRM_INFO(VMWGFX_DRIVER_NAME " unload.\n"); | 405 | DRM_INFO(VMWGFX_DRIVER_NAME " unload.\n"); |
| 387 | 406 | ||
| 407 | unregister_pm_notifier(&dev_priv->pm_nb); | ||
| 408 | |||
| 388 | if (!dev_priv->stealth) { | 409 | if (!dev_priv->stealth) { |
| 389 | vmw_fb_close(dev_priv); | 410 | vmw_fb_close(dev_priv); |
| 390 | vmw_kms_close(dev_priv); | 411 | vmw_kms_close(dev_priv); |
| @@ -650,6 +671,57 @@ static void vmw_remove(struct pci_dev *pdev) | |||
| 650 | drm_put_dev(dev); | 671 | drm_put_dev(dev); |
| 651 | } | 672 | } |
| 652 | 673 | ||
| 674 | static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val, | ||
| 675 | void *ptr) | ||
| 676 | { | ||
| 677 | struct vmw_private *dev_priv = | ||
| 678 | container_of(nb, struct vmw_private, pm_nb); | ||
| 679 | struct vmw_master *vmaster = dev_priv->active_master; | ||
| 680 | |||
| 681 | switch (val) { | ||
| 682 | case PM_HIBERNATION_PREPARE: | ||
| 683 | case PM_SUSPEND_PREPARE: | ||
| 684 | ttm_suspend_lock(&vmaster->lock); | ||
| 685 | |||
| 686 | /** | ||
| 687 | * This empties VRAM and unbinds all GMR bindings. | ||
| 688 | * Buffer contents is moved to swappable memory. | ||
| 689 | */ | ||
| 690 | ttm_bo_swapout_all(&dev_priv->bdev); | ||
| 691 | break; | ||
| 692 | case PM_POST_HIBERNATION: | ||
| 693 | case PM_POST_SUSPEND: | ||
| 694 | ttm_suspend_unlock(&vmaster->lock); | ||
| 695 | break; | ||
| 696 | case PM_RESTORE_PREPARE: | ||
| 697 | break; | ||
| 698 | case PM_POST_RESTORE: | ||
| 699 | break; | ||
| 700 | default: | ||
| 701 | break; | ||
| 702 | } | ||
| 703 | return 0; | ||
| 704 | } | ||
| 705 | |||
| 706 | /** | ||
| 707 | * These might not be needed with the virtual SVGA device. | ||
| 708 | */ | ||
| 709 | |||
| 710 | int vmw_pci_suspend(struct pci_dev *pdev, pm_message_t state) | ||
| 711 | { | ||
| 712 | pci_save_state(pdev); | ||
| 713 | pci_disable_device(pdev); | ||
| 714 | pci_set_power_state(pdev, PCI_D3hot); | ||
| 715 | return 0; | ||
| 716 | } | ||
| 717 | |||
| 718 | int vmw_pci_resume(struct pci_dev *pdev) | ||
| 719 | { | ||
| 720 | pci_set_power_state(pdev, PCI_D0); | ||
| 721 | pci_restore_state(pdev); | ||
| 722 | return pci_enable_device(pdev); | ||
| 723 | } | ||
| 724 | |||
| 653 | static struct drm_driver driver = { | 725 | static struct drm_driver driver = { |
| 654 | .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | | 726 | .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | |
| 655 | DRIVER_MODESET, | 727 | DRIVER_MODESET, |
| @@ -689,7 +761,9 @@ static struct drm_driver driver = { | |||
| 689 | .name = VMWGFX_DRIVER_NAME, | 761 | .name = VMWGFX_DRIVER_NAME, |
| 690 | .id_table = vmw_pci_id_list, | 762 | .id_table = vmw_pci_id_list, |
| 691 | .probe = vmw_probe, | 763 | .probe = vmw_probe, |
| 692 | .remove = vmw_remove | 764 | .remove = vmw_remove, |
| 765 | .suspend = vmw_pci_suspend, | ||
| 766 | .resume = vmw_pci_resume | ||
| 693 | }, | 767 | }, |
| 694 | .name = VMWGFX_DRIVER_NAME, | 768 | .name = VMWGFX_DRIVER_NAME, |
| 695 | .desc = VMWGFX_DRIVER_DESC, | 769 | .desc = VMWGFX_DRIVER_DESC, |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h index e61bd85b6975..135be9688c90 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include "drmP.h" | 32 | #include "drmP.h" |
| 33 | #include "vmwgfx_drm.h" | 33 | #include "vmwgfx_drm.h" |
| 34 | #include "drm_hashtab.h" | 34 | #include "drm_hashtab.h" |
| 35 | #include "linux/suspend.h" | ||
| 35 | #include "ttm/ttm_bo_driver.h" | 36 | #include "ttm/ttm_bo_driver.h" |
| 36 | #include "ttm/ttm_object.h" | 37 | #include "ttm/ttm_object.h" |
| 37 | #include "ttm/ttm_lock.h" | 38 | #include "ttm/ttm_lock.h" |
| @@ -95,6 +96,8 @@ struct vmw_surface { | |||
| 95 | struct drm_vmw_size *sizes; | 96 | struct drm_vmw_size *sizes; |
| 96 | uint32_t num_sizes; | 97 | uint32_t num_sizes; |
| 97 | 98 | ||
| 99 | bool scanout; | ||
| 100 | |||
| 98 | /* TODO so far just a extra pointer */ | 101 | /* TODO so far just a extra pointer */ |
| 99 | struct vmw_cursor_snooper snooper; | 102 | struct vmw_cursor_snooper snooper; |
| 100 | }; | 103 | }; |
| @@ -258,6 +261,7 @@ struct vmw_private { | |||
| 258 | 261 | ||
| 259 | struct vmw_master *active_master; | 262 | struct vmw_master *active_master; |
| 260 | struct vmw_master fbdev_master; | 263 | struct vmw_master fbdev_master; |
| 264 | struct notifier_block pm_nb; | ||
| 261 | }; | 265 | }; |
| 262 | 266 | ||
| 263 | static inline struct vmw_private *vmw_priv(struct drm_device *dev) | 267 | static inline struct vmw_private *vmw_priv(struct drm_device *dev) |
| @@ -353,6 +357,7 @@ extern int vmw_dmabuf_to_start_of_vram(struct vmw_private *vmw_priv, | |||
| 353 | struct vmw_dma_buffer *bo); | 357 | struct vmw_dma_buffer *bo); |
| 354 | extern int vmw_dmabuf_from_vram(struct vmw_private *vmw_priv, | 358 | extern int vmw_dmabuf_from_vram(struct vmw_private *vmw_priv, |
| 355 | struct vmw_dma_buffer *bo); | 359 | struct vmw_dma_buffer *bo); |
| 360 | extern void vmw_dmabuf_gmr_unbind(struct ttm_buffer_object *bo); | ||
| 356 | extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data, | 361 | extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data, |
| 357 | struct drm_file *file_priv); | 362 | struct drm_file *file_priv); |
| 358 | extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data, | 363 | extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data, |
| @@ -386,6 +391,7 @@ extern int vmw_fifo_send_fence(struct vmw_private *dev_priv, | |||
| 386 | uint32_t *sequence); | 391 | uint32_t *sequence); |
| 387 | extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason); | 392 | extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason); |
| 388 | extern int vmw_fifo_mmap(struct file *filp, struct vm_area_struct *vma); | 393 | extern int vmw_fifo_mmap(struct file *filp, struct vm_area_struct *vma); |
| 394 | extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv); | ||
| 389 | 395 | ||
| 390 | /** | 396 | /** |
| 391 | * TTM glue - vmwgfx_ttm_glue.c | 397 | * TTM glue - vmwgfx_ttm_glue.c |
| @@ -401,6 +407,7 @@ extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma); | |||
| 401 | 407 | ||
| 402 | extern struct ttm_placement vmw_vram_placement; | 408 | extern struct ttm_placement vmw_vram_placement; |
| 403 | extern struct ttm_placement vmw_vram_ne_placement; | 409 | extern struct ttm_placement vmw_vram_ne_placement; |
| 410 | extern struct ttm_placement vmw_vram_sys_placement; | ||
| 404 | extern struct ttm_placement vmw_sys_placement; | 411 | extern struct ttm_placement vmw_sys_placement; |
| 405 | extern struct ttm_bo_driver vmw_bo_driver; | 412 | extern struct ttm_bo_driver vmw_bo_driver; |
| 406 | extern int vmw_dma_quiescent(struct drm_device *dev); | 413 | extern int vmw_dma_quiescent(struct drm_device *dev); |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c index 2e92da567403..d69caf92ffe7 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | |||
| @@ -490,10 +490,29 @@ static int vmw_validate_single_buffer(struct vmw_private *dev_priv, | |||
| 490 | if (vmw_dmabuf_gmr(bo) != SVGA_GMR_NULL) | 490 | if (vmw_dmabuf_gmr(bo) != SVGA_GMR_NULL) |
| 491 | return 0; | 491 | return 0; |
| 492 | 492 | ||
| 493 | /** | ||
| 494 | * Put BO in VRAM, only if there is space. | ||
| 495 | */ | ||
| 496 | |||
| 497 | ret = ttm_bo_validate(bo, &vmw_vram_sys_placement, true, false); | ||
| 498 | if (unlikely(ret == -ERESTARTSYS)) | ||
| 499 | return ret; | ||
| 500 | |||
| 501 | /** | ||
| 502 | * Otherwise, set it up as GMR. | ||
| 503 | */ | ||
| 504 | |||
| 505 | if (vmw_dmabuf_gmr(bo) != SVGA_GMR_NULL) | ||
| 506 | return 0; | ||
| 507 | |||
| 493 | ret = vmw_gmr_bind(dev_priv, bo); | 508 | ret = vmw_gmr_bind(dev_priv, bo); |
| 494 | if (likely(ret == 0 || ret == -ERESTARTSYS)) | 509 | if (likely(ret == 0 || ret == -ERESTARTSYS)) |
| 495 | return ret; | 510 | return ret; |
| 496 | 511 | ||
| 512 | /** | ||
| 513 | * If that failed, try VRAM again, this time evicting | ||
| 514 | * previous contents. | ||
| 515 | */ | ||
| 497 | 516 | ||
| 498 | ret = ttm_bo_validate(bo, &vmw_vram_placement, true, false); | 517 | ret = ttm_bo_validate(bo, &vmw_vram_placement, true, false); |
| 499 | return ret; | 518 | return ret; |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c index 641dde76ada1..4f4f6432be8b 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c | |||
| @@ -649,14 +649,6 @@ int vmw_dmabuf_to_start_of_vram(struct vmw_private *vmw_priv, | |||
| 649 | if (unlikely(ret != 0)) | 649 | if (unlikely(ret != 0)) |
| 650 | goto err_unlock; | 650 | goto err_unlock; |
| 651 | 651 | ||
| 652 | if (vmw_bo->gmr_bound) { | ||
| 653 | vmw_gmr_unbind(vmw_priv, vmw_bo->gmr_id); | ||
| 654 | spin_lock(&bo->glob->lru_lock); | ||
| 655 | ida_remove(&vmw_priv->gmr_ida, vmw_bo->gmr_id); | ||
| 656 | spin_unlock(&bo->glob->lru_lock); | ||
| 657 | vmw_bo->gmr_bound = NULL; | ||
| 658 | } | ||
| 659 | |||
| 660 | ret = ttm_bo_validate(bo, &ne_placement, false, false); | 652 | ret = ttm_bo_validate(bo, &ne_placement, false, false); |
| 661 | ttm_bo_unreserve(bo); | 653 | ttm_bo_unreserve(bo); |
| 662 | err_unlock: | 654 | err_unlock: |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c b/drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c index 01feb48af333..4157547cc6e4 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c | |||
| @@ -29,6 +29,25 @@ | |||
| 29 | #include "drmP.h" | 29 | #include "drmP.h" |
| 30 | #include "ttm/ttm_placement.h" | 30 | #include "ttm/ttm_placement.h" |
| 31 | 31 | ||
| 32 | bool vmw_fifo_have_3d(struct vmw_private *dev_priv) | ||
| 33 | { | ||
| 34 | __le32 __iomem *fifo_mem = dev_priv->mmio_virt; | ||
| 35 | uint32_t fifo_min, hwversion; | ||
| 36 | |||
| 37 | fifo_min = ioread32(fifo_mem + SVGA_FIFO_MIN); | ||
| 38 | if (fifo_min <= SVGA_FIFO_3D_HWVERSION * sizeof(unsigned int)) | ||
| 39 | return false; | ||
| 40 | |||
| 41 | hwversion = ioread32(fifo_mem + SVGA_FIFO_3D_HWVERSION); | ||
| 42 | if (hwversion == 0) | ||
| 43 | return false; | ||
| 44 | |||
| 45 | if (hwversion < SVGA3D_HWVERSION_WS65_B1) | ||
| 46 | return false; | ||
| 47 | |||
| 48 | return true; | ||
| 49 | } | ||
| 50 | |||
| 32 | int vmw_fifo_init(struct vmw_private *dev_priv, struct vmw_fifo_state *fifo) | 51 | int vmw_fifo_init(struct vmw_private *dev_priv, struct vmw_fifo_state *fifo) |
| 33 | { | 52 | { |
| 34 | __le32 __iomem *fifo_mem = dev_priv->mmio_virt; | 53 | __le32 __iomem *fifo_mem = dev_priv->mmio_virt; |
| @@ -98,8 +117,7 @@ int vmw_fifo_init(struct vmw_private *dev_priv, struct vmw_fifo_state *fifo) | |||
| 98 | (unsigned int) min, | 117 | (unsigned int) min, |
| 99 | (unsigned int) fifo->capabilities); | 118 | (unsigned int) fifo->capabilities); |
| 100 | 119 | ||
| 101 | dev_priv->fence_seq = (uint32_t) -100; | 120 | dev_priv->fence_seq = dev_priv->last_read_sequence; |
| 102 | dev_priv->last_read_sequence = (uint32_t) -100; | ||
| 103 | iowrite32(dev_priv->last_read_sequence, fifo_mem + SVGA_FIFO_FENCE); | 121 | iowrite32(dev_priv->last_read_sequence, fifo_mem + SVGA_FIFO_FENCE); |
| 104 | 122 | ||
| 105 | return vmw_fifo_send_fence(dev_priv, &dummy); | 123 | return vmw_fifo_send_fence(dev_priv, &dummy); |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c index 5fa6a4ed238a..778851f9f1d6 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | |||
| @@ -43,7 +43,7 @@ int vmw_getparam_ioctl(struct drm_device *dev, void *data, | |||
| 43 | param->value = vmw_overlay_num_free_overlays(dev_priv); | 43 | param->value = vmw_overlay_num_free_overlays(dev_priv); |
| 44 | break; | 44 | break; |
| 45 | case DRM_VMW_PARAM_3D: | 45 | case DRM_VMW_PARAM_3D: |
| 46 | param->value = dev_priv->capabilities & SVGA_CAP_3D ? 1 : 0; | 46 | param->value = vmw_fifo_have_3d(dev_priv) ? 1 : 0; |
| 47 | break; | 47 | break; |
| 48 | case DRM_VMW_PARAM_FIFO_OFFSET: | 48 | case DRM_VMW_PARAM_FIFO_OFFSET: |
| 49 | param->value = dev_priv->mmio_start; | 49 | param->value = dev_priv->mmio_start; |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c index b1af76e371c3..eeba6d1d06e4 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | |||
| @@ -553,9 +553,7 @@ int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer, | |||
| 553 | } *cmd; | 553 | } *cmd; |
| 554 | int i, increment = 1; | 554 | int i, increment = 1; |
| 555 | 555 | ||
| 556 | if (!num_clips || | 556 | if (!num_clips) { |
| 557 | !(dev_priv->fifo.capabilities & | ||
| 558 | SVGA_FIFO_CAP_SCREEN_OBJECT)) { | ||
| 559 | num_clips = 1; | 557 | num_clips = 1; |
| 560 | clips = &norect; | 558 | clips = &norect; |
| 561 | norect.x1 = norect.y1 = 0; | 559 | norect.x1 = norect.y1 = 0; |
| @@ -574,10 +572,10 @@ int vmw_framebuffer_dmabuf_dirty(struct drm_framebuffer *framebuffer, | |||
| 574 | 572 | ||
| 575 | for (i = 0; i < num_clips; i++, clips += increment) { | 573 | for (i = 0; i < num_clips; i++, clips += increment) { |
| 576 | cmd[i].header = cpu_to_le32(SVGA_CMD_UPDATE); | 574 | cmd[i].header = cpu_to_le32(SVGA_CMD_UPDATE); |
| 577 | cmd[i].body.x = cpu_to_le32(clips[i].x1); | 575 | cmd[i].body.x = cpu_to_le32(clips->x1); |
| 578 | cmd[i].body.y = cpu_to_le32(clips[i].y1); | 576 | cmd[i].body.y = cpu_to_le32(clips->y1); |
| 579 | cmd[i].body.width = cpu_to_le32(clips[i].x2 - clips[i].x1); | 577 | cmd[i].body.width = cpu_to_le32(clips->x2 - clips->x1); |
| 580 | cmd[i].body.height = cpu_to_le32(clips[i].y2 - clips[i].y1); | 578 | cmd[i].body.height = cpu_to_le32(clips->y2 - clips->y1); |
| 581 | } | 579 | } |
| 582 | 580 | ||
| 583 | vmw_fifo_commit(dev_priv, sizeof(*cmd) * num_clips); | 581 | vmw_fifo_commit(dev_priv, sizeof(*cmd) * num_clips); |
| @@ -709,6 +707,9 @@ static struct drm_framebuffer *vmw_kms_fb_create(struct drm_device *dev, | |||
| 709 | if (ret) | 707 | if (ret) |
| 710 | goto try_dmabuf; | 708 | goto try_dmabuf; |
| 711 | 709 | ||
| 710 | if (!surface->scanout) | ||
| 711 | goto err_not_scanout; | ||
| 712 | |||
| 712 | ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb, | 713 | ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb, |
| 713 | mode_cmd->width, mode_cmd->height); | 714 | mode_cmd->width, mode_cmd->height); |
| 714 | 715 | ||
| @@ -742,6 +743,13 @@ try_dmabuf: | |||
| 742 | } | 743 | } |
| 743 | 744 | ||
| 744 | return &vfb->base; | 745 | return &vfb->base; |
| 746 | |||
| 747 | err_not_scanout: | ||
| 748 | DRM_ERROR("surface not marked as scanout\n"); | ||
| 749 | /* vmw_user_surface_lookup takes one ref */ | ||
| 750 | vmw_surface_unreference(&surface); | ||
| 751 | |||
| 752 | return NULL; | ||
| 745 | } | 753 | } |
| 746 | 754 | ||
| 747 | static int vmw_kms_fb_changed(struct drm_device *dev) | 755 | static int vmw_kms_fb_changed(struct drm_device *dev) |
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c b/drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c index bb6e6a096d25..5b6eabeb7f51 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c | |||
| @@ -104,7 +104,6 @@ static int vmw_dmabuf_pin_in_vram(struct vmw_private *dev_priv, | |||
| 104 | bool pin, bool interruptible) | 104 | bool pin, bool interruptible) |
| 105 | { | 105 | { |
| 106 | struct ttm_buffer_object *bo = &buf->base; | 106 | struct ttm_buffer_object *bo = &buf->base; |
| 107 | struct ttm_bo_global *glob = bo->glob; | ||
| 108 | struct ttm_placement *overlay_placement = &vmw_vram_placement; | 107 | struct ttm_placement *overlay_placement = &vmw_vram_placement; |
| 109 | int ret; | 108 | int ret; |
| 110 | 109 | ||
| @@ -116,14 +115,6 @@ static int vmw_dmabuf_pin_in_vram(struct vmw_private *dev_priv, | |||
| 116 | if (unlikely(ret != 0)) | 115 | if (unlikely(ret != 0)) |
| 117 | goto err; | 116 | goto err; |
| 118 | 117 | ||
| 119 | if (buf->gmr_bound) { | ||
| 120 | vmw_gmr_unbind(dev_priv, buf->gmr_id); | ||
| 121 | spin_lock(&glob->lru_lock); | ||
| 122 | ida_remove(&dev_priv->gmr_ida, buf->gmr_id); | ||
| 123 | spin_unlock(&glob->lru_lock); | ||
| 124 | buf->gmr_bound = NULL; | ||
| 125 | } | ||
| 126 | |||
| 127 | if (pin) | 118 | if (pin) |
| 128 | overlay_placement = &vmw_vram_ne_placement; | 119 | overlay_placement = &vmw_vram_ne_placement; |
| 129 | 120 | ||
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_resource.c b/drivers/gpu/drm/vmwgfx/vmwgfx_resource.c index c012d5927f65..c7efbd47ab84 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_resource.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_resource.c | |||
| @@ -35,6 +35,11 @@ | |||
| 35 | #define VMW_RES_SURFACE ttm_driver_type1 | 35 | #define VMW_RES_SURFACE ttm_driver_type1 |
| 36 | #define VMW_RES_STREAM ttm_driver_type2 | 36 | #define VMW_RES_STREAM ttm_driver_type2 |
| 37 | 37 | ||
| 38 | /* XXX: This isn't a real hardware flag, but just a hack for kernel to | ||
| 39 | * know about primary surfaces. Find a better way to accomplish this. | ||
| 40 | */ | ||
| 41 | #define SVGA3D_SURFACE_HINT_SCANOUT (1 << 9) | ||
| 42 | |||
| 38 | struct vmw_user_context { | 43 | struct vmw_user_context { |
| 39 | struct ttm_base_object base; | 44 | struct ttm_base_object base; |
| 40 | struct vmw_resource res; | 45 | struct vmw_resource res; |
| @@ -599,6 +604,36 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data, | |||
| 599 | if (unlikely(ret != 0)) | 604 | if (unlikely(ret != 0)) |
| 600 | goto out_err1; | 605 | goto out_err1; |
| 601 | 606 | ||
| 607 | if (srf->flags & SVGA3D_SURFACE_HINT_SCANOUT) { | ||
| 608 | /* we should not send this flag down to hardware since | ||
| 609 | * its not a official one | ||
| 610 | */ | ||
| 611 | srf->flags &= ~SVGA3D_SURFACE_HINT_SCANOUT; | ||
| 612 | srf->scanout = true; | ||
| 613 | } else { | ||
| 614 | srf->scanout = false; | ||
| 615 | } | ||
| 616 | |||
| 617 | if (srf->scanout && | ||
| 618 | srf->num_sizes == 1 && | ||
| 619 | srf->sizes[0].width == 64 && | ||
| 620 | srf->sizes[0].height == 64 && | ||
| 621 | srf->format == SVGA3D_A8R8G8B8) { | ||
| 622 | |||
| 623 | srf->snooper.image = kmalloc(64 * 64 * 4, GFP_KERNEL); | ||
| 624 | /* clear the image */ | ||
| 625 | if (srf->snooper.image) { | ||
| 626 | memset(srf->snooper.image, 0x00, 64 * 64 * 4); | ||
| 627 | } else { | ||
| 628 | DRM_ERROR("Failed to allocate cursor_image\n"); | ||
| 629 | ret = -ENOMEM; | ||
| 630 | goto out_err1; | ||
| 631 | } | ||
| 632 | } else { | ||
| 633 | srf->snooper.image = NULL; | ||
| 634 | } | ||
| 635 | srf->snooper.crtc = NULL; | ||
| 636 | |||
| 602 | user_srf->base.shareable = false; | 637 | user_srf->base.shareable = false; |
| 603 | user_srf->base.tfile = NULL; | 638 | user_srf->base.tfile = NULL; |
| 604 | 639 | ||
| @@ -622,24 +657,6 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data, | |||
| 622 | return ret; | 657 | return ret; |
| 623 | } | 658 | } |
| 624 | 659 | ||
| 625 | if (srf->flags & (1 << 9) && | ||
| 626 | srf->num_sizes == 1 && | ||
| 627 | srf->sizes[0].width == 64 && | ||
| 628 | srf->sizes[0].height == 64 && | ||
| 629 | srf->format == SVGA3D_A8R8G8B8) { | ||
| 630 | |||
| 631 | srf->snooper.image = kmalloc(64 * 64 * 4, GFP_KERNEL); | ||
| 632 | /* clear the image */ | ||
| 633 | if (srf->snooper.image) | ||
| 634 | memset(srf->snooper.image, 0x00, 64 * 64 * 4); | ||
| 635 | else | ||
| 636 | DRM_ERROR("Failed to allocate cursor_image\n"); | ||
| 637 | |||
| 638 | } else { | ||
| 639 | srf->snooper.image = NULL; | ||
| 640 | } | ||
| 641 | srf->snooper.crtc = NULL; | ||
| 642 | |||
| 643 | rep->sid = user_srf->base.hash.key; | 660 | rep->sid = user_srf->base.hash.key; |
| 644 | if (rep->sid == SVGA3D_INVALID_ID) | 661 | if (rep->sid == SVGA3D_INVALID_ID) |
| 645 | DRM_ERROR("Created bad Surface ID.\n"); | 662 | DRM_ERROR("Created bad Surface ID.\n"); |
| @@ -754,20 +771,29 @@ static size_t vmw_dmabuf_acc_size(struct ttm_bo_global *glob, | |||
| 754 | return bo_user_size + page_array_size; | 771 | return bo_user_size + page_array_size; |
| 755 | } | 772 | } |
| 756 | 773 | ||
| 757 | void vmw_dmabuf_bo_free(struct ttm_buffer_object *bo) | 774 | void vmw_dmabuf_gmr_unbind(struct ttm_buffer_object *bo) |
| 758 | { | 775 | { |
| 759 | struct vmw_dma_buffer *vmw_bo = vmw_dma_buffer(bo); | 776 | struct vmw_dma_buffer *vmw_bo = vmw_dma_buffer(bo); |
| 760 | struct ttm_bo_global *glob = bo->glob; | 777 | struct ttm_bo_global *glob = bo->glob; |
| 761 | struct vmw_private *dev_priv = | 778 | struct vmw_private *dev_priv = |
| 762 | container_of(bo->bdev, struct vmw_private, bdev); | 779 | container_of(bo->bdev, struct vmw_private, bdev); |
| 763 | 780 | ||
| 764 | ttm_mem_global_free(glob->mem_glob, bo->acc_size); | ||
| 765 | if (vmw_bo->gmr_bound) { | 781 | if (vmw_bo->gmr_bound) { |
| 766 | vmw_gmr_unbind(dev_priv, vmw_bo->gmr_id); | 782 | vmw_gmr_unbind(dev_priv, vmw_bo->gmr_id); |
| 767 | spin_lock(&glob->lru_lock); | 783 | spin_lock(&glob->lru_lock); |
| 768 | ida_remove(&dev_priv->gmr_ida, vmw_bo->gmr_id); | 784 | ida_remove(&dev_priv->gmr_ida, vmw_bo->gmr_id); |
| 769 | spin_unlock(&glob->lru_lock); | 785 | spin_unlock(&glob->lru_lock); |
| 786 | vmw_bo->gmr_bound = false; | ||
| 770 | } | 787 | } |
| 788 | } | ||
| 789 | |||
| 790 | void vmw_dmabuf_bo_free(struct ttm_buffer_object *bo) | ||
| 791 | { | ||
| 792 | struct vmw_dma_buffer *vmw_bo = vmw_dma_buffer(bo); | ||
| 793 | struct ttm_bo_global *glob = bo->glob; | ||
| 794 | |||
| 795 | vmw_dmabuf_gmr_unbind(bo); | ||
| 796 | ttm_mem_global_free(glob->mem_glob, bo->acc_size); | ||
| 771 | kfree(vmw_bo); | 797 | kfree(vmw_bo); |
| 772 | } | 798 | } |
| 773 | 799 | ||
| @@ -813,18 +839,10 @@ int vmw_dmabuf_init(struct vmw_private *dev_priv, | |||
| 813 | static void vmw_user_dmabuf_destroy(struct ttm_buffer_object *bo) | 839 | static void vmw_user_dmabuf_destroy(struct ttm_buffer_object *bo) |
| 814 | { | 840 | { |
| 815 | struct vmw_user_dma_buffer *vmw_user_bo = vmw_user_dma_buffer(bo); | 841 | struct vmw_user_dma_buffer *vmw_user_bo = vmw_user_dma_buffer(bo); |
| 816 | struct vmw_dma_buffer *vmw_bo = &vmw_user_bo->dma; | ||
| 817 | struct ttm_bo_global *glob = bo->glob; | 842 | struct ttm_bo_global *glob = bo->glob; |
| 818 | struct vmw_private *dev_priv = | ||
| 819 | container_of(bo->bdev, struct vmw_private, bdev); | ||
| 820 | 843 | ||
| 844 | vmw_dmabuf_gmr_unbind(bo); | ||
| 821 | ttm_mem_global_free(glob->mem_glob, bo->acc_size); | 845 | ttm_mem_global_free(glob->mem_glob, bo->acc_size); |
| 822 | if (vmw_bo->gmr_bound) { | ||
| 823 | vmw_gmr_unbind(dev_priv, vmw_bo->gmr_id); | ||
| 824 | spin_lock(&glob->lru_lock); | ||
| 825 | ida_remove(&dev_priv->gmr_ida, vmw_bo->gmr_id); | ||
| 826 | spin_unlock(&glob->lru_lock); | ||
| 827 | } | ||
| 828 | kfree(vmw_user_bo); | 846 | kfree(vmw_user_bo); |
| 829 | } | 847 | } |
| 830 | 848 | ||
| @@ -868,7 +886,7 @@ int vmw_dmabuf_alloc_ioctl(struct drm_device *dev, void *data, | |||
| 868 | } | 886 | } |
| 869 | 887 | ||
| 870 | ret = vmw_dmabuf_init(dev_priv, &vmw_user_bo->dma, req->size, | 888 | ret = vmw_dmabuf_init(dev_priv, &vmw_user_bo->dma, req->size, |
| 871 | &vmw_vram_placement, true, | 889 | &vmw_vram_sys_placement, true, |
| 872 | &vmw_user_dmabuf_destroy); | 890 | &vmw_user_dmabuf_destroy); |
| 873 | if (unlikely(ret != 0)) | 891 | if (unlikely(ret != 0)) |
| 874 | return ret; | 892 | return ret; |
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index 4b96e7a898cf..5b4d66dc1a05 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c | |||
| @@ -431,6 +431,13 @@ static const struct hid_device_id apple_devices[] = { | |||
| 431 | .driver_data = APPLE_HAS_FN | APPLE_ISO_KEYBOARD }, | 431 | .driver_data = APPLE_HAS_FN | APPLE_ISO_KEYBOARD }, |
| 432 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS), | 432 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS), |
| 433 | .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, | 433 | .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, |
| 434 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI), | ||
| 435 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, | ||
| 436 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO), | ||
| 437 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | | ||
| 438 | APPLE_ISO_KEYBOARD }, | ||
| 439 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS), | ||
| 440 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, | ||
| 434 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY), | 441 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY), |
| 435 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, | 442 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, |
| 436 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY), | 443 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY), |
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 80792d38d25c..eabe5f87c6c1 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c | |||
| @@ -1285,6 +1285,9 @@ static const struct hid_device_id hid_blacklist[] = { | |||
| 1285 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) }, | 1285 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) }, |
| 1286 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) }, | 1286 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) }, |
| 1287 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) }, | 1287 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) }, |
| 1288 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) }, | ||
| 1289 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) }, | ||
| 1290 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) }, | ||
| 1288 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) }, | 1291 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) }, |
| 1289 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) }, | 1292 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) }, |
| 1290 | { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) }, | 1293 | { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) }, |
| @@ -1553,6 +1556,7 @@ static const struct hid_device_id hid_ignore_list[] = { | |||
| 1553 | { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) }, | 1556 | { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) }, |
| 1554 | { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) }, | 1557 | { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) }, |
| 1555 | { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) }, | 1558 | { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) }, |
| 1559 | { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC5UH) }, | ||
| 1556 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) }, | 1560 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) }, |
| 1557 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) }, | 1561 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) }, |
| 1558 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0003) }, | 1562 | { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0003) }, |
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 3839340e293a..010368e649ed 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
| @@ -88,6 +88,9 @@ | |||
| 88 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI 0x0236 | 88 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI 0x0236 |
| 89 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ISO 0x0237 | 89 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ISO 0x0237 |
| 90 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_JIS 0x0238 | 90 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_JIS 0x0238 |
| 91 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI 0x0239 | ||
| 92 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO 0x023a | ||
| 93 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS 0x023b | ||
| 91 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a | 94 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a |
| 92 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b | 95 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b |
| 93 | #define USB_DEVICE_ID_APPLE_ATV_IRCONTROL 0x8241 | 96 | #define USB_DEVICE_ID_APPLE_ATV_IRCONTROL 0x8241 |
| @@ -166,6 +169,9 @@ | |||
| 166 | #define USB_VENDOR_ID_ESSENTIAL_REALITY 0x0d7f | 169 | #define USB_VENDOR_ID_ESSENTIAL_REALITY 0x0d7f |
| 167 | #define USB_DEVICE_ID_ESSENTIAL_REALITY_P5 0x0100 | 170 | #define USB_DEVICE_ID_ESSENTIAL_REALITY_P5 0x0100 |
| 168 | 171 | ||
| 172 | #define USB_VENDOR_ID_ETT 0x0664 | ||
| 173 | #define USB_DEVICE_ID_TC5UH 0x0309 | ||
| 174 | |||
| 169 | #define USB_VENDOR_ID_EZKEY 0x0518 | 175 | #define USB_VENDOR_ID_EZKEY 0x0518 |
| 170 | #define USB_DEVICE_ID_BTC_8193 0x0002 | 176 | #define USB_DEVICE_ID_BTC_8193 0x0002 |
| 171 | 177 | ||
diff --git a/drivers/hid/hid-samsung.c b/drivers/hid/hid-samsung.c index 5b222eed0692..510dd1340597 100644 --- a/drivers/hid/hid-samsung.c +++ b/drivers/hid/hid-samsung.c | |||
| @@ -39,7 +39,17 @@ | |||
| 39 | * | 39 | * |
| 40 | * 3. 135 byte report descriptor | 40 | * 3. 135 byte report descriptor |
| 41 | * Report #4 has an array field with logical range 0..17 instead of 1..14. | 41 | * Report #4 has an array field with logical range 0..17 instead of 1..14. |
| 42 | * | ||
| 43 | * 4. 171 byte report descriptor | ||
| 44 | * Report #3 has an array field with logical range 0..1 instead of 1..3. | ||
| 42 | */ | 45 | */ |
| 46 | static inline void samsung_dev_trace(struct hid_device *hdev, | ||
| 47 | unsigned int rsize) | ||
| 48 | { | ||
| 49 | dev_info(&hdev->dev, "fixing up Samsung IrDA %d byte report " | ||
| 50 | "descriptor\n", rsize); | ||
| 51 | } | ||
| 52 | |||
| 43 | static void samsung_report_fixup(struct hid_device *hdev, __u8 *rdesc, | 53 | static void samsung_report_fixup(struct hid_device *hdev, __u8 *rdesc, |
| 44 | unsigned int rsize) | 54 | unsigned int rsize) |
| 45 | { | 55 | { |
| @@ -47,8 +57,7 @@ static void samsung_report_fixup(struct hid_device *hdev, __u8 *rdesc, | |||
| 47 | rdesc[177] == 0x75 && rdesc[178] == 0x30 && | 57 | rdesc[177] == 0x75 && rdesc[178] == 0x30 && |
| 48 | rdesc[179] == 0x95 && rdesc[180] == 0x01 && | 58 | rdesc[179] == 0x95 && rdesc[180] == 0x01 && |
| 49 | rdesc[182] == 0x40) { | 59 | rdesc[182] == 0x40) { |
| 50 | dev_info(&hdev->dev, "fixing up Samsung IrDA %d byte report " | 60 | samsung_dev_trace(hdev, 184); |
| 51 | "descriptor\n", 184); | ||
| 52 | rdesc[176] = 0xff; | 61 | rdesc[176] = 0xff; |
| 53 | rdesc[178] = 0x08; | 62 | rdesc[178] = 0x08; |
| 54 | rdesc[180] = 0x06; | 63 | rdesc[180] = 0x06; |
| @@ -56,17 +65,21 @@ static void samsung_report_fixup(struct hid_device *hdev, __u8 *rdesc, | |||
| 56 | } else | 65 | } else |
| 57 | if (rsize == 203 && rdesc[192] == 0x15 && rdesc[193] == 0x0 && | 66 | if (rsize == 203 && rdesc[192] == 0x15 && rdesc[193] == 0x0 && |
| 58 | rdesc[194] == 0x25 && rdesc[195] == 0x12) { | 67 | rdesc[194] == 0x25 && rdesc[195] == 0x12) { |
| 59 | dev_info(&hdev->dev, "fixing up Samsung IrDA %d byte report " | 68 | samsung_dev_trace(hdev, 203); |
| 60 | "descriptor\n", 203); | ||
| 61 | rdesc[193] = 0x1; | 69 | rdesc[193] = 0x1; |
| 62 | rdesc[195] = 0xf; | 70 | rdesc[195] = 0xf; |
| 63 | } else | 71 | } else |
| 64 | if (rsize == 135 && rdesc[124] == 0x15 && rdesc[125] == 0x0 && | 72 | if (rsize == 135 && rdesc[124] == 0x15 && rdesc[125] == 0x0 && |
| 65 | rdesc[126] == 0x25 && rdesc[127] == 0x11) { | 73 | rdesc[126] == 0x25 && rdesc[127] == 0x11) { |
| 66 | dev_info(&hdev->dev, "fixing up Samsung IrDA %d byte report " | 74 | samsung_dev_trace(hdev, 135); |
| 67 | "descriptor\n", 135); | ||
| 68 | rdesc[125] = 0x1; | 75 | rdesc[125] = 0x1; |
| 69 | rdesc[127] = 0xe; | 76 | rdesc[127] = 0xe; |
| 77 | } else | ||
| 78 | if (rsize == 171 && rdesc[160] == 0x15 && rdesc[161] == 0x0 && | ||
| 79 | rdesc[162] == 0x25 && rdesc[163] == 0x01) { | ||
| 80 | samsung_dev_trace(hdev, 171); | ||
| 81 | rdesc[161] = 0x1; | ||
| 82 | rdesc[163] = 0x3; | ||
| 70 | } | 83 | } |
| 71 | } | 84 | } |
| 72 | 85 | ||
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c index 747542172242..12dcda529201 100644 --- a/drivers/hid/hid-wacom.c +++ b/drivers/hid/hid-wacom.c | |||
| @@ -142,6 +142,7 @@ static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report, | |||
| 142 | wdata->butstate = rw; | 142 | wdata->butstate = rw; |
| 143 | input_report_key(input, BTN_0, rw & 0x02); | 143 | input_report_key(input, BTN_0, rw & 0x02); |
| 144 | input_report_key(input, BTN_1, rw & 0x01); | 144 | input_report_key(input, BTN_1, rw & 0x01); |
| 145 | input_report_key(input, BTN_TOOL_FINGER, 0xf0); | ||
| 145 | input_event(input, EV_MSC, MSC_SERIAL, 0xf0); | 146 | input_event(input, EV_MSC, MSC_SERIAL, 0xf0); |
| 146 | input_sync(input); | 147 | input_sync(input); |
| 147 | } | 148 | } |
| @@ -196,6 +197,9 @@ static int wacom_probe(struct hid_device *hdev, | |||
| 196 | /* Pad */ | 197 | /* Pad */ |
| 197 | input->evbit[0] |= BIT(EV_MSC); | 198 | input->evbit[0] |= BIT(EV_MSC); |
| 198 | input->mscbit[0] |= BIT(MSC_SERIAL); | 199 | input->mscbit[0] |= BIT(MSC_SERIAL); |
| 200 | set_bit(BTN_0, input->keybit); | ||
| 201 | set_bit(BTN_1, input->keybit); | ||
| 202 | set_bit(BTN_TOOL_FINGER, input->keybit); | ||
| 199 | 203 | ||
| 200 | /* Distance, rubber and mouse */ | 204 | /* Distance, rubber and mouse */ |
| 201 | input->absbit[0] |= BIT(ABS_DISTANCE); | 205 | input->absbit[0] |= BIT(ABS_DISTANCE); |
diff --git a/drivers/hwmon/adt7462.c b/drivers/hwmon/adt7462.c index a31e77c776ae..b8156b4893bb 100644 --- a/drivers/hwmon/adt7462.c +++ b/drivers/hwmon/adt7462.c | |||
| @@ -179,7 +179,7 @@ static const unsigned short normal_i2c[] = { 0x58, 0x5C, I2C_CLIENT_END }; | |||
| 179 | * | 179 | * |
| 180 | * Some, but not all, of these voltages have low/high limits. | 180 | * Some, but not all, of these voltages have low/high limits. |
| 181 | */ | 181 | */ |
| 182 | #define ADT7462_VOLT_COUNT 12 | 182 | #define ADT7462_VOLT_COUNT 13 |
| 183 | 183 | ||
| 184 | #define ADT7462_VENDOR 0x41 | 184 | #define ADT7462_VENDOR 0x41 |
| 185 | #define ADT7462_DEVICE 0x62 | 185 | #define ADT7462_DEVICE 0x62 |
diff --git a/drivers/hwmon/amc6821.c b/drivers/hwmon/amc6821.c index 1c89d922d619..fa9708c2d723 100644 --- a/drivers/hwmon/amc6821.c +++ b/drivers/hwmon/amc6821.c | |||
| @@ -686,7 +686,6 @@ static ssize_t set_fan1_div( | |||
| 686 | data->fan1_div = 4; | 686 | data->fan1_div = 4; |
| 687 | break; | 687 | break; |
| 688 | default: | 688 | default: |
| 689 | mutex_unlock(&data->update_lock); | ||
| 690 | count = -EINVAL; | 689 | count = -EINVAL; |
| 691 | goto EXIT; | 690 | goto EXIT; |
| 692 | } | 691 | } |
diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c index 6811346c1c62..028284f544e3 100644 --- a/drivers/hwmon/asus_atk0110.c +++ b/drivers/hwmon/asus_atk0110.c | |||
| @@ -1329,17 +1329,16 @@ static int atk_add(struct acpi_device *device) | |||
| 1329 | &buf, ACPI_TYPE_PACKAGE); | 1329 | &buf, ACPI_TYPE_PACKAGE); |
| 1330 | if (ret != AE_OK) { | 1330 | if (ret != AE_OK) { |
| 1331 | dev_dbg(&device->dev, "atk: method MBIF not found\n"); | 1331 | dev_dbg(&device->dev, "atk: method MBIF not found\n"); |
| 1332 | err = -ENODEV; | 1332 | } else { |
| 1333 | goto out; | 1333 | obj = buf.pointer; |
| 1334 | } | 1334 | if (obj->package.count >= 2) { |
| 1335 | 1335 | union acpi_object *id = &obj->package.elements[1]; | |
| 1336 | obj = buf.pointer; | 1336 | if (id->type == ACPI_TYPE_STRING) |
| 1337 | if (obj->package.count >= 2 && | 1337 | dev_dbg(&device->dev, "board ID = %s\n", |
| 1338 | obj->package.elements[1].type == ACPI_TYPE_STRING) { | 1338 | id->string.pointer); |
| 1339 | dev_dbg(&device->dev, "board ID = %s\n", | 1339 | } |
| 1340 | obj->package.elements[1].string.pointer); | 1340 | ACPI_FREE(buf.pointer); |
| 1341 | } | 1341 | } |
| 1342 | ACPI_FREE(buf.pointer); | ||
| 1343 | 1342 | ||
| 1344 | err = atk_probe_if(data); | 1343 | err = atk_probe_if(data); |
| 1345 | if (err) { | 1344 | if (err) { |
diff --git a/drivers/hwmon/fschmd.c b/drivers/hwmon/fschmd.c index bd0fc67e804b..fa0728232e71 100644 --- a/drivers/hwmon/fschmd.c +++ b/drivers/hwmon/fschmd.c | |||
| @@ -768,6 +768,7 @@ leave: | |||
| 768 | static int watchdog_open(struct inode *inode, struct file *filp) | 768 | static int watchdog_open(struct inode *inode, struct file *filp) |
| 769 | { | 769 | { |
| 770 | struct fschmd_data *pos, *data = NULL; | 770 | struct fschmd_data *pos, *data = NULL; |
| 771 | int watchdog_is_open; | ||
| 771 | 772 | ||
| 772 | /* We get called from drivers/char/misc.c with misc_mtx hold, and we | 773 | /* We get called from drivers/char/misc.c with misc_mtx hold, and we |
| 773 | call misc_register() from fschmd_probe() with watchdog_data_mutex | 774 | call misc_register() from fschmd_probe() with watchdog_data_mutex |
| @@ -782,10 +783,12 @@ static int watchdog_open(struct inode *inode, struct file *filp) | |||
| 782 | } | 783 | } |
| 783 | } | 784 | } |
| 784 | /* Note we can never not have found data, so we don't check for this */ | 785 | /* Note we can never not have found data, so we don't check for this */ |
| 785 | kref_get(&data->kref); | 786 | watchdog_is_open = test_and_set_bit(0, &data->watchdog_is_open); |
| 787 | if (!watchdog_is_open) | ||
| 788 | kref_get(&data->kref); | ||
| 786 | mutex_unlock(&watchdog_data_mutex); | 789 | mutex_unlock(&watchdog_data_mutex); |
| 787 | 790 | ||
| 788 | if (test_and_set_bit(0, &data->watchdog_is_open)) | 791 | if (watchdog_is_open) |
| 789 | return -EBUSY; | 792 | return -EBUSY; |
| 790 | 793 | ||
| 791 | /* Start the watchdog */ | 794 | /* Start the watchdog */ |
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index cadcbd90ff3b..72ff2c4e757d 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c | |||
| @@ -851,17 +851,16 @@ static struct lm78_data *lm78_update_device(struct device *dev) | |||
| 851 | static int __init lm78_isa_found(unsigned short address) | 851 | static int __init lm78_isa_found(unsigned short address) |
| 852 | { | 852 | { |
| 853 | int val, save, found = 0; | 853 | int val, save, found = 0; |
| 854 | 854 | int port; | |
| 855 | /* We have to request the region in two parts because some | 855 | |
| 856 | boards declare base+4 to base+7 as a PNP device */ | 856 | /* Some boards declare base+0 to base+7 as a PNP device, some base+4 |
| 857 | if (!request_region(address, 4, "lm78")) { | 857 | * to base+7 and some base+5 to base+6. So we better request each port |
| 858 | pr_debug("lm78: Failed to request low part of region\n"); | 858 | * individually for the probing phase. */ |
| 859 | return 0; | 859 | for (port = address; port < address + LM78_EXTENT; port++) { |
| 860 | } | 860 | if (!request_region(port, 1, "lm78")) { |
| 861 | if (!request_region(address + 4, 4, "lm78")) { | 861 | pr_debug("lm78: Failed to request port 0x%x\n", port); |
| 862 | pr_debug("lm78: Failed to request high part of region\n"); | 862 | goto release; |
| 863 | release_region(address, 4); | 863 | } |
| 864 | return 0; | ||
| 865 | } | 864 | } |
| 866 | 865 | ||
| 867 | #define REALLY_SLOW_IO | 866 | #define REALLY_SLOW_IO |
| @@ -925,8 +924,8 @@ static int __init lm78_isa_found(unsigned short address) | |||
| 925 | val & 0x80 ? "LM79" : "LM78", (int)address); | 924 | val & 0x80 ? "LM79" : "LM78", (int)address); |
| 926 | 925 | ||
| 927 | release: | 926 | release: |
| 928 | release_region(address + 4, 4); | 927 | for (port--; port >= address; port--) |
| 929 | release_region(address, 4); | 928 | release_region(port, 1); |
| 930 | return found; | 929 | return found; |
| 931 | } | 930 | } |
| 932 | 931 | ||
diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c index 9ca97818bd4b..8fa462f2b570 100644 --- a/drivers/hwmon/smsc47m1.c +++ b/drivers/hwmon/smsc47m1.c | |||
| @@ -488,7 +488,7 @@ static int __init smsc47m1_find(unsigned short *addr, | |||
| 488 | } | 488 | } |
| 489 | 489 | ||
| 490 | /* Restore device to its initial state */ | 490 | /* Restore device to its initial state */ |
| 491 | static void __init smsc47m1_restore(const struct smsc47m1_sio_data *sio_data) | 491 | static void smsc47m1_restore(const struct smsc47m1_sio_data *sio_data) |
| 492 | { | 492 | { |
| 493 | if ((sio_data->activate & 0x01) == 0) { | 493 | if ((sio_data->activate & 0x01) == 0) { |
| 494 | superio_enter(); | 494 | superio_enter(); |
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c index 05f9225b6f94..32d4adee73db 100644 --- a/drivers/hwmon/w83781d.c +++ b/drivers/hwmon/w83781d.c | |||
| @@ -1793,17 +1793,17 @@ static int __init | |||
| 1793 | w83781d_isa_found(unsigned short address) | 1793 | w83781d_isa_found(unsigned short address) |
| 1794 | { | 1794 | { |
| 1795 | int val, save, found = 0; | 1795 | int val, save, found = 0; |
| 1796 | 1796 | int port; | |
| 1797 | /* We have to request the region in two parts because some | 1797 | |
| 1798 | boards declare base+4 to base+7 as a PNP device */ | 1798 | /* Some boards declare base+0 to base+7 as a PNP device, some base+4 |
| 1799 | if (!request_region(address, 4, "w83781d")) { | 1799 | * to base+7 and some base+5 to base+6. So we better request each port |
| 1800 | pr_debug("w83781d: Failed to request low part of region\n"); | 1800 | * individually for the probing phase. */ |
| 1801 | return 0; | 1801 | for (port = address; port < address + W83781D_EXTENT; port++) { |
| 1802 | } | 1802 | if (!request_region(port, 1, "w83781d")) { |
| 1803 | if (!request_region(address + 4, 4, "w83781d")) { | 1803 | pr_debug("w83781d: Failed to request port 0x%x\n", |
| 1804 | pr_debug("w83781d: Failed to request high part of region\n"); | 1804 | port); |
| 1805 | release_region(address, 4); | 1805 | goto release; |
| 1806 | return 0; | 1806 | } |
| 1807 | } | 1807 | } |
| 1808 | 1808 | ||
| 1809 | #define REALLY_SLOW_IO | 1809 | #define REALLY_SLOW_IO |
| @@ -1877,8 +1877,8 @@ w83781d_isa_found(unsigned short address) | |||
| 1877 | val == 0x30 ? "W83782D" : "W83781D", (int)address); | 1877 | val == 0x30 ? "W83782D" : "W83781D", (int)address); |
| 1878 | 1878 | ||
| 1879 | release: | 1879 | release: |
| 1880 | release_region(address + 4, 4); | 1880 | for (port--; port >= address; port--) |
| 1881 | release_region(address, 4); | 1881 | release_region(port, 1); |
| 1882 | return found; | 1882 | return found; |
| 1883 | } | 1883 | } |
| 1884 | 1884 | ||
diff --git a/drivers/i2c/busses/i2c-ali1563.c b/drivers/i2c/busses/i2c-ali1563.c index f70f46582c6c..4687af40dd50 100644 --- a/drivers/i2c/busses/i2c-ali1563.c +++ b/drivers/i2c/busses/i2c-ali1563.c | |||
| @@ -87,9 +87,9 @@ static int ali1563_transaction(struct i2c_adapter * a, int size) | |||
| 87 | outb_p(inb_p(SMB_HST_CNTL2) | HST_CNTL2_START, SMB_HST_CNTL2); | 87 | outb_p(inb_p(SMB_HST_CNTL2) | HST_CNTL2_START, SMB_HST_CNTL2); |
| 88 | 88 | ||
| 89 | timeout = ALI1563_MAX_TIMEOUT; | 89 | timeout = ALI1563_MAX_TIMEOUT; |
| 90 | do | 90 | do { |
| 91 | msleep(1); | 91 | msleep(1); |
| 92 | while (((data = inb_p(SMB_HST_STS)) & HST_STS_BUSY) && --timeout); | 92 | } while (((data = inb_p(SMB_HST_STS)) & HST_STS_BUSY) && --timeout); |
| 93 | 93 | ||
| 94 | dev_dbg(&a->dev, "Transaction (post): STS=%02x, CNTL1=%02x, " | 94 | dev_dbg(&a->dev, "Transaction (post): STS=%02x, CNTL1=%02x, " |
| 95 | "CNTL2=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\n", | 95 | "CNTL2=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\n", |
| @@ -157,9 +157,9 @@ static int ali1563_block_start(struct i2c_adapter * a) | |||
| 157 | outb_p(inb_p(SMB_HST_CNTL2) | HST_CNTL2_START, SMB_HST_CNTL2); | 157 | outb_p(inb_p(SMB_HST_CNTL2) | HST_CNTL2_START, SMB_HST_CNTL2); |
| 158 | 158 | ||
| 159 | timeout = ALI1563_MAX_TIMEOUT; | 159 | timeout = ALI1563_MAX_TIMEOUT; |
| 160 | do | 160 | do { |
| 161 | msleep(1); | 161 | msleep(1); |
| 162 | while (!((data = inb_p(SMB_HST_STS)) & HST_STS_DONE) && --timeout); | 162 | } while (!((data = inb_p(SMB_HST_STS)) & HST_STS_DONE) && --timeout); |
| 163 | 163 | ||
| 164 | dev_dbg(&a->dev, "Block (post): STS=%02x, CNTL1=%02x, " | 164 | dev_dbg(&a->dev, "Block (post): STS=%02x, CNTL1=%02x, " |
| 165 | "CNTL2=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\n", | 165 | "CNTL2=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\n", |
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index e3654d683e15..75bf820e7ccb 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c | |||
| @@ -226,7 +226,6 @@ static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx) | |||
| 226 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); | 226 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); |
| 227 | temp &= ~(I2CR_MSTA | I2CR_MTX); | 227 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
| 228 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 228 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 229 | i2c_imx->stopped = 1; | ||
| 230 | } | 229 | } |
| 231 | if (cpu_is_mx1()) { | 230 | if (cpu_is_mx1()) { |
| 232 | /* | 231 | /* |
| @@ -236,8 +235,10 @@ static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx) | |||
| 236 | udelay(i2c_imx->disable_delay); | 235 | udelay(i2c_imx->disable_delay); |
| 237 | } | 236 | } |
| 238 | 237 | ||
| 239 | if (!i2c_imx->stopped) | 238 | if (!i2c_imx->stopped) { |
| 240 | i2c_imx_bus_busy(i2c_imx, 0); | 239 | i2c_imx_bus_busy(i2c_imx, 0); |
| 240 | i2c_imx->stopped = 1; | ||
| 241 | } | ||
| 241 | 242 | ||
| 242 | /* Disable I2C controller */ | 243 | /* Disable I2C controller */ |
| 243 | writeb(0, i2c_imx->base + IMX_I2C_I2CR); | 244 | writeb(0, i2c_imx->base + IMX_I2C_I2CR); |
| @@ -496,22 +497,23 @@ static int __init i2c_imx_probe(struct platform_device *pdev) | |||
| 496 | } | 497 | } |
| 497 | 498 | ||
| 498 | res_size = resource_size(res); | 499 | res_size = resource_size(res); |
| 500 | |||
| 501 | if (!request_mem_region(res->start, res_size, DRIVER_NAME)) { | ||
| 502 | ret = -EBUSY; | ||
| 503 | goto fail0; | ||
| 504 | } | ||
| 505 | |||
| 499 | base = ioremap(res->start, res_size); | 506 | base = ioremap(res->start, res_size); |
| 500 | if (!base) { | 507 | if (!base) { |
| 501 | dev_err(&pdev->dev, "ioremap failed\n"); | 508 | dev_err(&pdev->dev, "ioremap failed\n"); |
| 502 | ret = -EIO; | 509 | ret = -EIO; |
| 503 | goto fail0; | 510 | goto fail1; |
| 504 | } | 511 | } |
| 505 | 512 | ||
| 506 | i2c_imx = kzalloc(sizeof(struct imx_i2c_struct), GFP_KERNEL); | 513 | i2c_imx = kzalloc(sizeof(struct imx_i2c_struct), GFP_KERNEL); |
| 507 | if (!i2c_imx) { | 514 | if (!i2c_imx) { |
| 508 | dev_err(&pdev->dev, "can't allocate interface\n"); | 515 | dev_err(&pdev->dev, "can't allocate interface\n"); |
| 509 | ret = -ENOMEM; | 516 | ret = -ENOMEM; |
| 510 | goto fail1; | ||
| 511 | } | ||
| 512 | |||
| 513 | if (!request_mem_region(res->start, res_size, DRIVER_NAME)) { | ||
| 514 | ret = -EBUSY; | ||
| 515 | goto fail2; | 517 | goto fail2; |
| 516 | } | 518 | } |
| 517 | 519 | ||
| @@ -582,11 +584,11 @@ fail5: | |||
| 582 | fail4: | 584 | fail4: |
| 583 | clk_put(i2c_imx->clk); | 585 | clk_put(i2c_imx->clk); |
| 584 | fail3: | 586 | fail3: |
| 585 | release_mem_region(i2c_imx->res->start, resource_size(res)); | ||
| 586 | fail2: | ||
| 587 | kfree(i2c_imx); | 587 | kfree(i2c_imx); |
| 588 | fail1: | 588 | fail2: |
| 589 | iounmap(base); | 589 | iounmap(base); |
| 590 | fail1: | ||
| 591 | release_mem_region(res->start, resource_size(res)); | ||
| 590 | fail0: | 592 | fail0: |
| 591 | if (pdata && pdata->exit) | 593 | if (pdata && pdata->exit) |
| 592 | pdata->exit(&pdev->dev); | 594 | pdata->exit(&pdev->dev); |
| @@ -618,8 +620,8 @@ static int __exit i2c_imx_remove(struct platform_device *pdev) | |||
| 618 | 620 | ||
| 619 | clk_put(i2c_imx->clk); | 621 | clk_put(i2c_imx->clk); |
| 620 | 622 | ||
| 621 | release_mem_region(i2c_imx->res->start, resource_size(i2c_imx->res)); | ||
| 622 | iounmap(i2c_imx->base); | 623 | iounmap(i2c_imx->base); |
| 624 | release_mem_region(i2c_imx->res->start, resource_size(i2c_imx->res)); | ||
| 623 | kfree(i2c_imx); | 625 | kfree(i2c_imx); |
| 624 | return 0; | 626 | return 0; |
| 625 | } | 627 | } |
diff --git a/drivers/i2c/busses/i2c-pca-isa.c b/drivers/i2c/busses/i2c-pca-isa.c index 0ed68e2ccd22..f7346a9bd95f 100644 --- a/drivers/i2c/busses/i2c-pca-isa.c +++ b/drivers/i2c/busses/i2c-pca-isa.c | |||
| @@ -75,7 +75,7 @@ static int pca_isa_waitforcompletion(void *pd) | |||
| 75 | unsigned long timeout; | 75 | unsigned long timeout; |
| 76 | 76 | ||
| 77 | if (irq > -1) { | 77 | if (irq > -1) { |
| 78 | ret = wait_event_interruptible_timeout(pca_wait, | 78 | ret = wait_event_timeout(pca_wait, |
| 79 | pca_isa_readbyte(pd, I2C_PCA_CON) | 79 | pca_isa_readbyte(pd, I2C_PCA_CON) |
| 80 | & I2C_PCA_CON_SI, pca_isa_ops.timeout); | 80 | & I2C_PCA_CON_SI, pca_isa_ops.timeout); |
| 81 | } else { | 81 | } else { |
| @@ -96,7 +96,7 @@ static void pca_isa_resetchip(void *pd) | |||
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | static irqreturn_t pca_handler(int this_irq, void *dev_id) { | 98 | static irqreturn_t pca_handler(int this_irq, void *dev_id) { |
| 99 | wake_up_interruptible(&pca_wait); | 99 | wake_up(&pca_wait); |
| 100 | return IRQ_HANDLED; | 100 | return IRQ_HANDLED; |
| 101 | } | 101 | } |
| 102 | 102 | ||
diff --git a/drivers/i2c/busses/i2c-pca-platform.c b/drivers/i2c/busses/i2c-pca-platform.c index c4df9d411cd5..5b2213df5ed0 100644 --- a/drivers/i2c/busses/i2c-pca-platform.c +++ b/drivers/i2c/busses/i2c-pca-platform.c | |||
| @@ -84,7 +84,7 @@ static int i2c_pca_pf_waitforcompletion(void *pd) | |||
| 84 | unsigned long timeout; | 84 | unsigned long timeout; |
| 85 | 85 | ||
| 86 | if (i2c->irq) { | 86 | if (i2c->irq) { |
| 87 | ret = wait_event_interruptible_timeout(i2c->wait, | 87 | ret = wait_event_timeout(i2c->wait, |
| 88 | i2c->algo_data.read_byte(i2c, I2C_PCA_CON) | 88 | i2c->algo_data.read_byte(i2c, I2C_PCA_CON) |
| 89 | & I2C_PCA_CON_SI, i2c->adap.timeout); | 89 | & I2C_PCA_CON_SI, i2c->adap.timeout); |
| 90 | } else { | 90 | } else { |
| @@ -122,7 +122,7 @@ static irqreturn_t i2c_pca_pf_handler(int this_irq, void *dev_id) | |||
| 122 | if ((i2c->algo_data.read_byte(i2c, I2C_PCA_CON) & I2C_PCA_CON_SI) == 0) | 122 | if ((i2c->algo_data.read_byte(i2c, I2C_PCA_CON) & I2C_PCA_CON_SI) == 0) |
| 123 | return IRQ_NONE; | 123 | return IRQ_NONE; |
| 124 | 124 | ||
| 125 | wake_up_interruptible(&i2c->wait); | 125 | wake_up(&i2c->wait); |
| 126 | 126 | ||
| 127 | return IRQ_HANDLED; | 127 | return IRQ_HANDLED; |
| 128 | } | 128 | } |
diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c index 1e245e9cad31..e56e4b6823ca 100644 --- a/drivers/i2c/busses/i2c-piix4.c +++ b/drivers/i2c/busses/i2c-piix4.c | |||
| @@ -324,12 +324,12 @@ static int piix4_transaction(void) | |||
| 324 | else | 324 | else |
| 325 | msleep(1); | 325 | msleep(1); |
| 326 | 326 | ||
| 327 | while ((timeout++ < MAX_TIMEOUT) && | 327 | while ((++timeout < MAX_TIMEOUT) && |
| 328 | ((temp = inb_p(SMBHSTSTS)) & 0x01)) | 328 | ((temp = inb_p(SMBHSTSTS)) & 0x01)) |
| 329 | msleep(1); | 329 | msleep(1); |
| 330 | 330 | ||
| 331 | /* If the SMBus is still busy, we give up */ | 331 | /* If the SMBus is still busy, we give up */ |
| 332 | if (timeout >= MAX_TIMEOUT) { | 332 | if (timeout == MAX_TIMEOUT) { |
| 333 | dev_err(&piix4_adapter.dev, "SMBus Timeout!\n"); | 333 | dev_err(&piix4_adapter.dev, "SMBus Timeout!\n"); |
| 334 | result = -ETIMEDOUT; | 334 | result = -ETIMEDOUT; |
| 335 | } | 335 | } |
diff --git a/drivers/i2c/busses/i2c-viapro.c b/drivers/i2c/busses/i2c-viapro.c index e4b1543015af..a84a909e1234 100644 --- a/drivers/i2c/busses/i2c-viapro.c +++ b/drivers/i2c/busses/i2c-viapro.c | |||
| @@ -165,10 +165,10 @@ static int vt596_transaction(u8 size) | |||
| 165 | do { | 165 | do { |
| 166 | msleep(1); | 166 | msleep(1); |
| 167 | temp = inb_p(SMBHSTSTS); | 167 | temp = inb_p(SMBHSTSTS); |
| 168 | } while ((temp & 0x01) && (timeout++ < MAX_TIMEOUT)); | 168 | } while ((temp & 0x01) && (++timeout < MAX_TIMEOUT)); |
| 169 | 169 | ||
| 170 | /* If the SMBus is still busy, we give up */ | 170 | /* If the SMBus is still busy, we give up */ |
| 171 | if (timeout >= MAX_TIMEOUT) { | 171 | if (timeout == MAX_TIMEOUT) { |
| 172 | result = -ETIMEDOUT; | 172 | result = -ETIMEDOUT; |
| 173 | dev_err(&vt596_adapter.dev, "SMBus timeout!\n"); | 173 | dev_err(&vt596_adapter.dev, "SMBus timeout!\n"); |
| 174 | } | 174 | } |
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 0ac2f90ab840..10be7b5fbe97 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
| @@ -248,7 +248,7 @@ static const struct attribute_group *i2c_dev_attr_groups[] = { | |||
| 248 | NULL | 248 | NULL |
| 249 | }; | 249 | }; |
| 250 | 250 | ||
| 251 | const static struct dev_pm_ops i2c_device_pm_ops = { | 251 | static const struct dev_pm_ops i2c_device_pm_ops = { |
| 252 | .suspend = i2c_device_pm_suspend, | 252 | .suspend = i2c_device_pm_suspend, |
| 253 | .resume = i2c_device_pm_resume, | 253 | .resume = i2c_device_pm_resume, |
| 254 | }; | 254 | }; |
| @@ -843,6 +843,9 @@ int i2c_del_adapter(struct i2c_adapter *adap) | |||
| 843 | adap->dev.parent); | 843 | adap->dev.parent); |
| 844 | #endif | 844 | #endif |
| 845 | 845 | ||
| 846 | /* device name is gone after device_unregister */ | ||
| 847 | dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name); | ||
| 848 | |||
| 846 | /* clean up the sysfs representation */ | 849 | /* clean up the sysfs representation */ |
| 847 | init_completion(&adap->dev_released); | 850 | init_completion(&adap->dev_released); |
| 848 | device_unregister(&adap->dev); | 851 | device_unregister(&adap->dev); |
| @@ -855,8 +858,6 @@ int i2c_del_adapter(struct i2c_adapter *adap) | |||
| 855 | idr_remove(&i2c_adapter_idr, adap->nr); | 858 | idr_remove(&i2c_adapter_idr, adap->nr); |
| 856 | mutex_unlock(&core_lock); | 859 | mutex_unlock(&core_lock); |
| 857 | 860 | ||
| 858 | dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name); | ||
| 859 | |||
| 860 | /* Clear the device structure in case this adapter is ever going to be | 861 | /* Clear the device structure in case this adapter is ever going to be |
| 861 | added again */ | 862 | added again */ |
| 862 | memset(&adap->dev, 0, sizeof(adap->dev)); | 863 | memset(&adap->dev, 0, sizeof(adap->dev)); |
diff --git a/drivers/infiniband/hw/ipath/ipath_fs.c b/drivers/infiniband/hw/ipath/ipath_fs.c index b3684060465e..100da8542bba 100644 --- a/drivers/infiniband/hw/ipath/ipath_fs.c +++ b/drivers/infiniband/hw/ipath/ipath_fs.c | |||
| @@ -346,10 +346,8 @@ static int ipathfs_fill_super(struct super_block *sb, void *data, | |||
| 346 | list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) { | 346 | list_for_each_entry_safe(dd, tmp, &ipath_dev_list, ipath_list) { |
| 347 | spin_unlock_irqrestore(&ipath_devs_lock, flags); | 347 | spin_unlock_irqrestore(&ipath_devs_lock, flags); |
| 348 | ret = create_device_files(sb, dd); | 348 | ret = create_device_files(sb, dd); |
| 349 | if (ret) { | 349 | if (ret) |
| 350 | deactivate_locked_super(sb); | ||
| 351 | goto bail; | 350 | goto bail; |
| 352 | } | ||
| 353 | spin_lock_irqsave(&ipath_devs_lock, flags); | 351 | spin_lock_irqsave(&ipath_devs_lock, flags); |
| 354 | } | 352 | } |
| 355 | 353 | ||
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index dee6706038aa..258c639571b5 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c | |||
| @@ -59,7 +59,8 @@ static void evdev_pass_event(struct evdev_client *client, | |||
| 59 | client->head &= EVDEV_BUFFER_SIZE - 1; | 59 | client->head &= EVDEV_BUFFER_SIZE - 1; |
| 60 | spin_unlock(&client->buffer_lock); | 60 | spin_unlock(&client->buffer_lock); |
| 61 | 61 | ||
| 62 | kill_fasync(&client->fasync, SIGIO, POLL_IN); | 62 | if (event->type == EV_SYN) |
| 63 | kill_fasync(&client->fasync, SIGIO, POLL_IN); | ||
| 63 | } | 64 | } |
| 64 | 65 | ||
| 65 | /* | 66 | /* |
diff --git a/drivers/input/input.c b/drivers/input/input.c index ab060710688f..86cb2d2196ff 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/mutex.h> | 24 | #include <linux/mutex.h> |
| 25 | #include <linux/rcupdate.h> | 25 | #include <linux/rcupdate.h> |
| 26 | #include <linux/smp_lock.h> | 26 | #include <linux/smp_lock.h> |
| 27 | #include "input-compat.h" | ||
| 27 | 28 | ||
| 28 | MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>"); | 29 | MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>"); |
| 29 | MODULE_DESCRIPTION("Input core"); | 30 | MODULE_DESCRIPTION("Input core"); |
| @@ -45,6 +46,7 @@ static unsigned int input_abs_bypass_init_data[] __initdata = { | |||
| 45 | ABS_MT_TOOL_TYPE, | 46 | ABS_MT_TOOL_TYPE, |
| 46 | ABS_MT_BLOB_ID, | 47 | ABS_MT_BLOB_ID, |
| 47 | ABS_MT_TRACKING_ID, | 48 | ABS_MT_TRACKING_ID, |
| 49 | ABS_MT_PRESSURE, | ||
| 48 | 0 | 50 | 0 |
| 49 | }; | 51 | }; |
| 50 | static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)]; | 52 | static unsigned long input_abs_bypass[BITS_TO_LONGS(ABS_CNT)]; |
| @@ -764,6 +766,40 @@ static int input_attach_handler(struct input_dev *dev, struct input_handler *han | |||
| 764 | return error; | 766 | return error; |
| 765 | } | 767 | } |
| 766 | 768 | ||
| 769 | #ifdef CONFIG_COMPAT | ||
| 770 | |||
| 771 | static int input_bits_to_string(char *buf, int buf_size, | ||
| 772 | unsigned long bits, bool skip_empty) | ||
| 773 | { | ||
| 774 | int len = 0; | ||
| 775 | |||
| 776 | if (INPUT_COMPAT_TEST) { | ||
| 777 | u32 dword = bits >> 32; | ||
| 778 | if (dword || !skip_empty) | ||
| 779 | len += snprintf(buf, buf_size, "%x ", dword); | ||
| 780 | |||
| 781 | dword = bits & 0xffffffffUL; | ||
| 782 | if (dword || !skip_empty || len) | ||
| 783 | len += snprintf(buf + len, max(buf_size - len, 0), | ||
| 784 | "%x", dword); | ||
| 785 | } else { | ||
| 786 | if (bits || !skip_empty) | ||
| 787 | len += snprintf(buf, buf_size, "%lx", bits); | ||
| 788 | } | ||
| 789 | |||
| 790 | return len; | ||
| 791 | } | ||
| 792 | |||
| 793 | #else /* !CONFIG_COMPAT */ | ||
| 794 | |||
| 795 | static int input_bits_to_string(char *buf, int buf_size, | ||
| 796 | unsigned long bits, bool skip_empty) | ||
| 797 | { | ||
| 798 | return bits || !skip_empty ? | ||
| 799 | snprintf(buf, buf_size, "%lx", bits) : 0; | ||
| 800 | } | ||
| 801 | |||
| 802 | #endif | ||
| 767 | 803 | ||
| 768 | #ifdef CONFIG_PROC_FS | 804 | #ifdef CONFIG_PROC_FS |
| 769 | 805 | ||
| @@ -832,14 +868,25 @@ static void input_seq_print_bitmap(struct seq_file *seq, const char *name, | |||
| 832 | unsigned long *bitmap, int max) | 868 | unsigned long *bitmap, int max) |
| 833 | { | 869 | { |
| 834 | int i; | 870 | int i; |
| 835 | 871 | bool skip_empty = true; | |
| 836 | for (i = BITS_TO_LONGS(max) - 1; i > 0; i--) | 872 | char buf[18]; |
| 837 | if (bitmap[i]) | ||
| 838 | break; | ||
| 839 | 873 | ||
| 840 | seq_printf(seq, "B: %s=", name); | 874 | seq_printf(seq, "B: %s=", name); |
| 841 | for (; i >= 0; i--) | 875 | |
| 842 | seq_printf(seq, "%lx%s", bitmap[i], i > 0 ? " " : ""); | 876 | for (i = BITS_TO_LONGS(max) - 1; i >= 0; i--) { |
| 877 | if (input_bits_to_string(buf, sizeof(buf), | ||
| 878 | bitmap[i], skip_empty)) { | ||
| 879 | skip_empty = false; | ||
| 880 | seq_printf(seq, "%s%s", buf, i > 0 ? " " : ""); | ||
| 881 | } | ||
| 882 | } | ||
| 883 | |||
| 884 | /* | ||
| 885 | * If no output was produced print a single 0. | ||
| 886 | */ | ||
| 887 | if (skip_empty) | ||
| 888 | seq_puts(seq, "0"); | ||
| 889 | |||
| 843 | seq_putc(seq, '\n'); | 890 | seq_putc(seq, '\n'); |
| 844 | } | 891 | } |
| 845 | 892 | ||
| @@ -1128,14 +1175,23 @@ static int input_print_bitmap(char *buf, int buf_size, unsigned long *bitmap, | |||
| 1128 | { | 1175 | { |
| 1129 | int i; | 1176 | int i; |
| 1130 | int len = 0; | 1177 | int len = 0; |
| 1178 | bool skip_empty = true; | ||
| 1179 | |||
| 1180 | for (i = BITS_TO_LONGS(max) - 1; i >= 0; i--) { | ||
| 1181 | len += input_bits_to_string(buf + len, max(buf_size - len, 0), | ||
| 1182 | bitmap[i], skip_empty); | ||
| 1183 | if (len) { | ||
| 1184 | skip_empty = false; | ||
| 1185 | if (i > 0) | ||
| 1186 | len += snprintf(buf + len, max(buf_size - len, 0), " "); | ||
| 1187 | } | ||
| 1188 | } | ||
| 1131 | 1189 | ||
| 1132 | for (i = BITS_TO_LONGS(max) - 1; i > 0; i--) | 1190 | /* |
| 1133 | if (bitmap[i]) | 1191 | * If no output was produced print a single 0. |
| 1134 | break; | 1192 | */ |
| 1135 | 1193 | if (len == 0) | |
| 1136 | for (; i >= 0; i--) | 1194 | len = snprintf(buf, buf_size, "%d", 0); |
| 1137 | len += snprintf(buf + len, max(buf_size - len, 0), | ||
| 1138 | "%lx%s", bitmap[i], i > 0 ? " " : ""); | ||
| 1139 | 1195 | ||
| 1140 | if (add_cr) | 1196 | if (add_cr) |
| 1141 | len += snprintf(buf + len, max(buf_size - len, 0), "\n"); | 1197 | len += snprintf(buf + len, max(buf_size - len, 0), "\n"); |
| @@ -1150,7 +1206,8 @@ static ssize_t input_dev_show_cap_##bm(struct device *dev, \ | |||
| 1150 | { \ | 1206 | { \ |
| 1151 | struct input_dev *input_dev = to_input_dev(dev); \ | 1207 | struct input_dev *input_dev = to_input_dev(dev); \ |
| 1152 | int len = input_print_bitmap(buf, PAGE_SIZE, \ | 1208 | int len = input_print_bitmap(buf, PAGE_SIZE, \ |
| 1153 | input_dev->bm##bit, ev##_MAX, 1); \ | 1209 | input_dev->bm##bit, ev##_MAX, \ |
| 1210 | true); \ | ||
| 1154 | return min_t(int, len, PAGE_SIZE); \ | 1211 | return min_t(int, len, PAGE_SIZE); \ |
| 1155 | } \ | 1212 | } \ |
| 1156 | static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL) | 1213 | static DEVICE_ATTR(bm, S_IRUGO, input_dev_show_cap_##bm, NULL) |
| @@ -1214,7 +1271,7 @@ static int input_add_uevent_bm_var(struct kobj_uevent_env *env, | |||
| 1214 | 1271 | ||
| 1215 | len = input_print_bitmap(&env->buf[env->buflen - 1], | 1272 | len = input_print_bitmap(&env->buf[env->buflen - 1], |
| 1216 | sizeof(env->buf) - env->buflen, | 1273 | sizeof(env->buf) - env->buflen, |
| 1217 | bitmap, max, 0); | 1274 | bitmap, max, false); |
| 1218 | if (len >= (sizeof(env->buf) - env->buflen)) | 1275 | if (len >= (sizeof(env->buf) - env->buflen)) |
| 1219 | return -ENOMEM; | 1276 | return -ENOMEM; |
| 1220 | 1277 | ||
diff --git a/drivers/input/joystick/gf2k.c b/drivers/input/joystick/gf2k.c index 67c207f5b1a1..45ac70eae0aa 100644 --- a/drivers/input/joystick/gf2k.c +++ b/drivers/input/joystick/gf2k.c | |||
| @@ -277,7 +277,7 @@ static int gf2k_connect(struct gameport *gameport, struct gameport_driver *drv) | |||
| 277 | } | 277 | } |
| 278 | 278 | ||
| 279 | #ifdef RESET_WORKS | 279 | #ifdef RESET_WORKS |
| 280 | if ((gf2k->id != (GB(19,2,0) | GB(15,3,2) | GB(12,3,5))) || | 280 | if ((gf2k->id != (GB(19,2,0) | GB(15,3,2) | GB(12,3,5))) && |
| 281 | (gf2k->id != (GB(31,2,0) | GB(27,3,2) | GB(24,3,5)))) { | 281 | (gf2k->id != (GB(31,2,0) | GB(27,3,2) | GB(24,3,5)))) { |
| 282 | err = -ENODEV; | 282 | err = -ENODEV; |
| 283 | goto fail2; | 283 | goto fail2; |
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 482cb1204e43..8a28fb7846dc 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c | |||
| @@ -446,7 +446,7 @@ static void xpad_irq_in(struct urb *urb) | |||
| 446 | } | 446 | } |
| 447 | 447 | ||
| 448 | exit: | 448 | exit: |
| 449 | retval = usb_submit_urb (urb, GFP_ATOMIC); | 449 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
| 450 | if (retval) | 450 | if (retval) |
| 451 | err ("%s - usb_submit_urb failed with result %d", | 451 | err ("%s - usb_submit_urb failed with result %d", |
| 452 | __func__, retval); | 452 | __func__, retval); |
| @@ -571,7 +571,7 @@ static int xpad_play_effect(struct input_dev *dev, void *data, | |||
| 571 | xpad->odata[6] = 0x00; | 571 | xpad->odata[6] = 0x00; |
| 572 | xpad->odata[7] = 0x00; | 572 | xpad->odata[7] = 0x00; |
| 573 | xpad->irq_out->transfer_buffer_length = 8; | 573 | xpad->irq_out->transfer_buffer_length = 8; |
| 574 | usb_submit_urb(xpad->irq_out, GFP_KERNEL); | 574 | usb_submit_urb(xpad->irq_out, GFP_ATOMIC); |
| 575 | } | 575 | } |
| 576 | 576 | ||
| 577 | return 0; | 577 | return 0; |
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 1f5e2ce327d6..7b4056292eaf 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
| @@ -225,8 +225,10 @@ struct atkbd { | |||
| 225 | 225 | ||
| 226 | struct delayed_work event_work; | 226 | struct delayed_work event_work; |
| 227 | unsigned long event_jiffies; | 227 | unsigned long event_jiffies; |
| 228 | struct mutex event_mutex; | ||
| 229 | unsigned long event_mask; | 228 | unsigned long event_mask; |
| 229 | |||
| 230 | /* Serializes reconnect(), attr->set() and event work */ | ||
| 231 | struct mutex mutex; | ||
| 230 | }; | 232 | }; |
| 231 | 233 | ||
| 232 | /* | 234 | /* |
| @@ -577,7 +579,7 @@ static void atkbd_event_work(struct work_struct *work) | |||
| 577 | { | 579 | { |
| 578 | struct atkbd *atkbd = container_of(work, struct atkbd, event_work.work); | 580 | struct atkbd *atkbd = container_of(work, struct atkbd, event_work.work); |
| 579 | 581 | ||
| 580 | mutex_lock(&atkbd->event_mutex); | 582 | mutex_lock(&atkbd->mutex); |
| 581 | 583 | ||
| 582 | if (!atkbd->enabled) { | 584 | if (!atkbd->enabled) { |
| 583 | /* | 585 | /* |
| @@ -596,7 +598,7 @@ static void atkbd_event_work(struct work_struct *work) | |||
| 596 | atkbd_set_repeat_rate(atkbd); | 598 | atkbd_set_repeat_rate(atkbd); |
| 597 | } | 599 | } |
| 598 | 600 | ||
| 599 | mutex_unlock(&atkbd->event_mutex); | 601 | mutex_unlock(&atkbd->mutex); |
| 600 | } | 602 | } |
| 601 | 603 | ||
| 602 | /* | 604 | /* |
| @@ -612,7 +614,7 @@ static void atkbd_schedule_event_work(struct atkbd *atkbd, int event_bit) | |||
| 612 | 614 | ||
| 613 | atkbd->event_jiffies = jiffies; | 615 | atkbd->event_jiffies = jiffies; |
| 614 | set_bit(event_bit, &atkbd->event_mask); | 616 | set_bit(event_bit, &atkbd->event_mask); |
| 615 | wmb(); | 617 | mb(); |
| 616 | schedule_delayed_work(&atkbd->event_work, delay); | 618 | schedule_delayed_work(&atkbd->event_work, delay); |
| 617 | } | 619 | } |
| 618 | 620 | ||
| @@ -849,13 +851,20 @@ static void atkbd_disconnect(struct serio *serio) | |||
| 849 | { | 851 | { |
| 850 | struct atkbd *atkbd = serio_get_drvdata(serio); | 852 | struct atkbd *atkbd = serio_get_drvdata(serio); |
| 851 | 853 | ||
| 854 | sysfs_remove_group(&serio->dev.kobj, &atkbd_attribute_group); | ||
| 855 | |||
| 852 | atkbd_disable(atkbd); | 856 | atkbd_disable(atkbd); |
| 853 | 857 | ||
| 854 | /* make sure we don't have a command in flight */ | 858 | input_unregister_device(atkbd->dev); |
| 859 | |||
| 860 | /* | ||
| 861 | * Make sure we don't have a command in flight. | ||
| 862 | * Note that since atkbd->enabled is false event work will keep | ||
| 863 | * rescheduling itself until it gets canceled and will not try | ||
| 864 | * accessing freed input device or serio port. | ||
| 865 | */ | ||
| 855 | cancel_delayed_work_sync(&atkbd->event_work); | 866 | cancel_delayed_work_sync(&atkbd->event_work); |
| 856 | 867 | ||
| 857 | sysfs_remove_group(&serio->dev.kobj, &atkbd_attribute_group); | ||
| 858 | input_unregister_device(atkbd->dev); | ||
| 859 | serio_close(serio); | 868 | serio_close(serio); |
| 860 | serio_set_drvdata(serio, NULL); | 869 | serio_set_drvdata(serio, NULL); |
| 861 | kfree(atkbd); | 870 | kfree(atkbd); |
| @@ -1087,7 +1096,7 @@ static int atkbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 1087 | atkbd->dev = dev; | 1096 | atkbd->dev = dev; |
| 1088 | ps2_init(&atkbd->ps2dev, serio); | 1097 | ps2_init(&atkbd->ps2dev, serio); |
| 1089 | INIT_DELAYED_WORK(&atkbd->event_work, atkbd_event_work); | 1098 | INIT_DELAYED_WORK(&atkbd->event_work, atkbd_event_work); |
| 1090 | mutex_init(&atkbd->event_mutex); | 1099 | mutex_init(&atkbd->mutex); |
| 1091 | 1100 | ||
| 1092 | switch (serio->id.type) { | 1101 | switch (serio->id.type) { |
| 1093 | 1102 | ||
| @@ -1160,19 +1169,23 @@ static int atkbd_reconnect(struct serio *serio) | |||
| 1160 | { | 1169 | { |
| 1161 | struct atkbd *atkbd = serio_get_drvdata(serio); | 1170 | struct atkbd *atkbd = serio_get_drvdata(serio); |
| 1162 | struct serio_driver *drv = serio->drv; | 1171 | struct serio_driver *drv = serio->drv; |
| 1172 | int retval = -1; | ||
| 1163 | 1173 | ||
| 1164 | if (!atkbd || !drv) { | 1174 | if (!atkbd || !drv) { |
| 1165 | printk(KERN_DEBUG "atkbd: reconnect request, but serio is disconnected, ignoring...\n"); | 1175 | printk(KERN_DEBUG "atkbd: reconnect request, but serio is disconnected, ignoring...\n"); |
| 1166 | return -1; | 1176 | return -1; |
| 1167 | } | 1177 | } |
| 1168 | 1178 | ||
| 1179 | mutex_lock(&atkbd->mutex); | ||
| 1180 | |||
| 1169 | atkbd_disable(atkbd); | 1181 | atkbd_disable(atkbd); |
| 1170 | 1182 | ||
| 1171 | if (atkbd->write) { | 1183 | if (atkbd->write) { |
| 1172 | if (atkbd_probe(atkbd)) | 1184 | if (atkbd_probe(atkbd)) |
| 1173 | return -1; | 1185 | goto out; |
| 1186 | |||
| 1174 | if (atkbd->set != atkbd_select_set(atkbd, atkbd->set, atkbd->extra)) | 1187 | if (atkbd->set != atkbd_select_set(atkbd, atkbd->set, atkbd->extra)) |
| 1175 | return -1; | 1188 | goto out; |
| 1176 | 1189 | ||
| 1177 | atkbd_activate(atkbd); | 1190 | atkbd_activate(atkbd); |
| 1178 | 1191 | ||
| @@ -1190,8 +1203,11 @@ static int atkbd_reconnect(struct serio *serio) | |||
| 1190 | } | 1203 | } |
| 1191 | 1204 | ||
| 1192 | atkbd_enable(atkbd); | 1205 | atkbd_enable(atkbd); |
| 1206 | retval = 0; | ||
| 1193 | 1207 | ||
| 1194 | return 0; | 1208 | out: |
| 1209 | mutex_unlock(&atkbd->mutex); | ||
| 1210 | return retval; | ||
| 1195 | } | 1211 | } |
| 1196 | 1212 | ||
| 1197 | static struct serio_device_id atkbd_serio_ids[] = { | 1213 | static struct serio_device_id atkbd_serio_ids[] = { |
| @@ -1235,47 +1251,28 @@ static ssize_t atkbd_attr_show_helper(struct device *dev, char *buf, | |||
| 1235 | ssize_t (*handler)(struct atkbd *, char *)) | 1251 | ssize_t (*handler)(struct atkbd *, char *)) |
| 1236 | { | 1252 | { |
| 1237 | struct serio *serio = to_serio_port(dev); | 1253 | struct serio *serio = to_serio_port(dev); |
| 1238 | int retval; | 1254 | struct atkbd *atkbd = serio_get_drvdata(serio); |
| 1239 | |||
| 1240 | retval = serio_pin_driver(serio); | ||
| 1241 | if (retval) | ||
| 1242 | return retval; | ||
| 1243 | |||
| 1244 | if (serio->drv != &atkbd_drv) { | ||
| 1245 | retval = -ENODEV; | ||
| 1246 | goto out; | ||
| 1247 | } | ||
| 1248 | |||
| 1249 | retval = handler((struct atkbd *)serio_get_drvdata(serio), buf); | ||
| 1250 | 1255 | ||
| 1251 | out: | 1256 | return handler(atkbd, buf); |
| 1252 | serio_unpin_driver(serio); | ||
| 1253 | return retval; | ||
| 1254 | } | 1257 | } |
| 1255 | 1258 | ||
| 1256 | static ssize_t atkbd_attr_set_helper(struct device *dev, const char *buf, size_t count, | 1259 | static ssize_t atkbd_attr_set_helper(struct device *dev, const char *buf, size_t count, |
| 1257 | ssize_t (*handler)(struct atkbd *, const char *, size_t)) | 1260 | ssize_t (*handler)(struct atkbd *, const char *, size_t)) |
| 1258 | { | 1261 | { |
| 1259 | struct serio *serio = to_serio_port(dev); | 1262 | struct serio *serio = to_serio_port(dev); |
| 1260 | struct atkbd *atkbd; | 1263 | struct atkbd *atkbd = serio_get_drvdata(serio); |
| 1261 | int retval; | 1264 | int retval; |
| 1262 | 1265 | ||
| 1263 | retval = serio_pin_driver(serio); | 1266 | retval = mutex_lock_interruptible(&atkbd->mutex); |
| 1264 | if (retval) | 1267 | if (retval) |
| 1265 | return retval; | 1268 | return retval; |
| 1266 | 1269 | ||
| 1267 | if (serio->drv != &atkbd_drv) { | ||
| 1268 | retval = -ENODEV; | ||
| 1269 | goto out; | ||
| 1270 | } | ||
| 1271 | |||
| 1272 | atkbd = serio_get_drvdata(serio); | ||
| 1273 | atkbd_disable(atkbd); | 1270 | atkbd_disable(atkbd); |
| 1274 | retval = handler(atkbd, buf, count); | 1271 | retval = handler(atkbd, buf, count); |
| 1275 | atkbd_enable(atkbd); | 1272 | atkbd_enable(atkbd); |
| 1276 | 1273 | ||
| 1277 | out: | 1274 | mutex_unlock(&atkbd->mutex); |
| 1278 | serio_unpin_driver(serio); | 1275 | |
| 1279 | return retval; | 1276 | return retval; |
| 1280 | } | 1277 | } |
| 1281 | 1278 | ||
diff --git a/drivers/input/keyboard/davinci_keyscan.c b/drivers/input/keyboard/davinci_keyscan.c index 6e52d855f637..d410d7a52f1d 100644 --- a/drivers/input/keyboard/davinci_keyscan.c +++ b/drivers/input/keyboard/davinci_keyscan.c | |||
| @@ -174,6 +174,14 @@ static int __init davinci_ks_probe(struct platform_device *pdev) | |||
| 174 | struct davinci_ks_platform_data *pdata = pdev->dev.platform_data; | 174 | struct davinci_ks_platform_data *pdata = pdev->dev.platform_data; |
| 175 | int error, i; | 175 | int error, i; |
| 176 | 176 | ||
| 177 | if (pdata->device_enable) { | ||
| 178 | error = pdata->device_enable(dev); | ||
| 179 | if (error < 0) { | ||
| 180 | dev_dbg(dev, "device enable function failed\n"); | ||
| 181 | return error; | ||
| 182 | } | ||
| 183 | } | ||
| 184 | |||
| 177 | if (!pdata->keymap) { | 185 | if (!pdata->keymap) { |
| 178 | dev_dbg(dev, "no keymap from pdata\n"); | 186 | dev_dbg(dev, "no keymap from pdata\n"); |
| 179 | return -EINVAL; | 187 | return -EINVAL; |
diff --git a/drivers/input/misc/winbond-cir.c b/drivers/input/misc/winbond-cir.c index 33309fe44e20..c8f5a9a3fa14 100644 --- a/drivers/input/misc/winbond-cir.c +++ b/drivers/input/misc/winbond-cir.c | |||
| @@ -768,7 +768,7 @@ wbcir_parse_rc6(struct device *dev, struct wbcir_data *data) | |||
| 768 | return; | 768 | return; |
| 769 | } | 769 | } |
| 770 | 770 | ||
| 771 | dev_info(dev, "IR-RC6 ad 0x%02X cm 0x%02X cu 0x%04X " | 771 | dev_dbg(dev, "IR-RC6 ad 0x%02X cm 0x%02X cu 0x%04X " |
| 772 | "toggle %u mode %u scan 0x%08X\n", | 772 | "toggle %u mode %u scan 0x%08X\n", |
| 773 | address, | 773 | address, |
| 774 | command, | 774 | command, |
diff --git a/drivers/input/mouse/bcm5974.c b/drivers/input/mouse/bcm5974.c index 0d1d33468b43..4f8fe0886b2a 100644 --- a/drivers/input/mouse/bcm5974.c +++ b/drivers/input/mouse/bcm5974.c | |||
| @@ -139,6 +139,7 @@ struct tp_finger { | |||
| 139 | /* trackpad finger data size, empirically at least ten fingers */ | 139 | /* trackpad finger data size, empirically at least ten fingers */ |
| 140 | #define SIZEOF_FINGER sizeof(struct tp_finger) | 140 | #define SIZEOF_FINGER sizeof(struct tp_finger) |
| 141 | #define SIZEOF_ALL_FINGERS (16 * SIZEOF_FINGER) | 141 | #define SIZEOF_ALL_FINGERS (16 * SIZEOF_FINGER) |
| 142 | #define MAX_FINGER_ORIENTATION 16384 | ||
| 142 | 143 | ||
| 143 | /* device-specific parameters */ | 144 | /* device-specific parameters */ |
| 144 | struct bcm5974_param { | 145 | struct bcm5974_param { |
| @@ -284,6 +285,26 @@ static void setup_events_to_report(struct input_dev *input_dev, | |||
| 284 | input_set_abs_params(input_dev, ABS_Y, | 285 | input_set_abs_params(input_dev, ABS_Y, |
| 285 | 0, cfg->y.dim, cfg->y.fuzz, 0); | 286 | 0, cfg->y.dim, cfg->y.fuzz, 0); |
| 286 | 287 | ||
| 288 | /* finger touch area */ | ||
| 289 | input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, | ||
| 290 | cfg->w.devmin, cfg->w.devmax, 0, 0); | ||
| 291 | input_set_abs_params(input_dev, ABS_MT_TOUCH_MINOR, | ||
| 292 | cfg->w.devmin, cfg->w.devmax, 0, 0); | ||
| 293 | /* finger approach area */ | ||
| 294 | input_set_abs_params(input_dev, ABS_MT_WIDTH_MAJOR, | ||
| 295 | cfg->w.devmin, cfg->w.devmax, 0, 0); | ||
| 296 | input_set_abs_params(input_dev, ABS_MT_WIDTH_MINOR, | ||
| 297 | cfg->w.devmin, cfg->w.devmax, 0, 0); | ||
| 298 | /* finger orientation */ | ||
| 299 | input_set_abs_params(input_dev, ABS_MT_ORIENTATION, | ||
| 300 | -MAX_FINGER_ORIENTATION, | ||
| 301 | MAX_FINGER_ORIENTATION, 0, 0); | ||
| 302 | /* finger position */ | ||
| 303 | input_set_abs_params(input_dev, ABS_MT_POSITION_X, | ||
| 304 | cfg->x.devmin, cfg->x.devmax, 0, 0); | ||
| 305 | input_set_abs_params(input_dev, ABS_MT_POSITION_Y, | ||
| 306 | cfg->y.devmin, cfg->y.devmax, 0, 0); | ||
| 307 | |||
| 287 | __set_bit(EV_KEY, input_dev->evbit); | 308 | __set_bit(EV_KEY, input_dev->evbit); |
| 288 | __set_bit(BTN_TOUCH, input_dev->keybit); | 309 | __set_bit(BTN_TOUCH, input_dev->keybit); |
| 289 | __set_bit(BTN_TOOL_FINGER, input_dev->keybit); | 310 | __set_bit(BTN_TOOL_FINGER, input_dev->keybit); |
| @@ -310,13 +331,29 @@ static int report_bt_state(struct bcm5974 *dev, int size) | |||
| 310 | return 0; | 331 | return 0; |
| 311 | } | 332 | } |
| 312 | 333 | ||
| 334 | static void report_finger_data(struct input_dev *input, | ||
| 335 | const struct bcm5974_config *cfg, | ||
| 336 | const struct tp_finger *f) | ||
| 337 | { | ||
| 338 | input_report_abs(input, ABS_MT_TOUCH_MAJOR, raw2int(f->force_major)); | ||
| 339 | input_report_abs(input, ABS_MT_TOUCH_MINOR, raw2int(f->force_minor)); | ||
| 340 | input_report_abs(input, ABS_MT_WIDTH_MAJOR, raw2int(f->size_major)); | ||
| 341 | input_report_abs(input, ABS_MT_WIDTH_MINOR, raw2int(f->size_minor)); | ||
| 342 | input_report_abs(input, ABS_MT_ORIENTATION, | ||
| 343 | MAX_FINGER_ORIENTATION - raw2int(f->orientation)); | ||
| 344 | input_report_abs(input, ABS_MT_POSITION_X, raw2int(f->abs_x)); | ||
| 345 | input_report_abs(input, ABS_MT_POSITION_Y, | ||
| 346 | cfg->y.devmin + cfg->y.devmax - raw2int(f->abs_y)); | ||
| 347 | input_mt_sync(input); | ||
| 348 | } | ||
| 349 | |||
| 313 | /* report trackpad data as logical trackpad state */ | 350 | /* report trackpad data as logical trackpad state */ |
| 314 | static int report_tp_state(struct bcm5974 *dev, int size) | 351 | static int report_tp_state(struct bcm5974 *dev, int size) |
| 315 | { | 352 | { |
| 316 | const struct bcm5974_config *c = &dev->cfg; | 353 | const struct bcm5974_config *c = &dev->cfg; |
| 317 | const struct tp_finger *f; | 354 | const struct tp_finger *f; |
| 318 | struct input_dev *input = dev->input; | 355 | struct input_dev *input = dev->input; |
| 319 | int raw_p, raw_w, raw_x, raw_y, raw_n; | 356 | int raw_p, raw_w, raw_x, raw_y, raw_n, i; |
| 320 | int ptest, origin, ibt = 0, nmin = 0, nmax = 0; | 357 | int ptest, origin, ibt = 0, nmin = 0, nmax = 0; |
| 321 | int abs_p = 0, abs_w = 0, abs_x = 0, abs_y = 0; | 358 | int abs_p = 0, abs_w = 0, abs_x = 0, abs_y = 0; |
| 322 | 359 | ||
| @@ -329,6 +366,11 @@ static int report_tp_state(struct bcm5974 *dev, int size) | |||
| 329 | 366 | ||
| 330 | /* always track the first finger; when detached, start over */ | 367 | /* always track the first finger; when detached, start over */ |
| 331 | if (raw_n) { | 368 | if (raw_n) { |
| 369 | |||
| 370 | /* report raw trackpad data */ | ||
| 371 | for (i = 0; i < raw_n; i++) | ||
| 372 | report_finger_data(input, c, &f[i]); | ||
| 373 | |||
| 332 | raw_p = raw2int(f->force_major); | 374 | raw_p = raw2int(f->force_major); |
| 333 | raw_w = raw2int(f->size_major); | 375 | raw_w = raw2int(f->size_major); |
| 334 | raw_x = raw2int(f->abs_x); | 376 | raw_x = raw2int(f->abs_x); |
diff --git a/drivers/input/mouse/lifebook.c b/drivers/input/mouse/lifebook.c index 6d7aa10d10f0..7c1d7d420ae3 100644 --- a/drivers/input/mouse/lifebook.c +++ b/drivers/input/mouse/lifebook.c | |||
| @@ -53,6 +53,12 @@ static const struct dmi_system_id __initconst lifebook_dmi_table[] = { | |||
| 53 | { | 53 | { |
| 54 | /* LifeBook B */ | 54 | /* LifeBook B */ |
| 55 | .matches = { | 55 | .matches = { |
| 56 | DMI_MATCH(DMI_PRODUCT_NAME, "Lifebook B Series"), | ||
| 57 | }, | ||
| 58 | }, | ||
| 59 | { | ||
| 60 | /* LifeBook B */ | ||
| 61 | .matches = { | ||
| 56 | DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"), | 62 | DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"), |
| 57 | }, | 63 | }, |
| 58 | }, | 64 | }, |
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c index 401ac6b6edd4..9774bdfaa482 100644 --- a/drivers/input/mouse/psmouse-base.c +++ b/drivers/input/mouse/psmouse-base.c | |||
| @@ -627,8 +627,15 @@ static int psmouse_extensions(struct psmouse *psmouse, | |||
| 627 | synaptics_hardware = true; | 627 | synaptics_hardware = true; |
| 628 | 628 | ||
| 629 | if (max_proto > PSMOUSE_IMEX) { | 629 | if (max_proto > PSMOUSE_IMEX) { |
| 630 | if (!set_properties || synaptics_init(psmouse) == 0) | 630 | /* |
| 631 | * Try activating protocol, but check if support is enabled first, since | ||
| 632 | * we try detecting Synaptics even when protocol is disabled. | ||
| 633 | */ | ||
| 634 | if (synaptics_supported() && | ||
| 635 | (!set_properties || synaptics_init(psmouse) == 0)) { | ||
| 631 | return PSMOUSE_SYNAPTICS; | 636 | return PSMOUSE_SYNAPTICS; |
| 637 | } | ||
| 638 | |||
| 632 | /* | 639 | /* |
| 633 | * Some Synaptics touchpads can emulate extended protocols (like IMPS/2). | 640 | * Some Synaptics touchpads can emulate extended protocols (like IMPS/2). |
| 634 | * Unfortunately Logitech/Genius probes confuse some firmware versions so | 641 | * Unfortunately Logitech/Genius probes confuse some firmware versions so |
| @@ -683,19 +690,6 @@ static int psmouse_extensions(struct psmouse *psmouse, | |||
| 683 | max_proto = PSMOUSE_IMEX; | 690 | max_proto = PSMOUSE_IMEX; |
| 684 | } | 691 | } |
| 685 | 692 | ||
| 686 | /* | ||
| 687 | * Try Finger Sensing Pad | ||
| 688 | */ | ||
| 689 | if (max_proto > PSMOUSE_IMEX) { | ||
| 690 | if (fsp_detect(psmouse, set_properties) == 0) { | ||
| 691 | if (!set_properties || fsp_init(psmouse) == 0) | ||
| 692 | return PSMOUSE_FSP; | ||
| 693 | /* | ||
| 694 | * Init failed, try basic relative protocols | ||
| 695 | */ | ||
| 696 | max_proto = PSMOUSE_IMEX; | ||
| 697 | } | ||
| 698 | } | ||
| 699 | 693 | ||
| 700 | if (max_proto > PSMOUSE_IMEX) { | 694 | if (max_proto > PSMOUSE_IMEX) { |
| 701 | if (genius_detect(psmouse, set_properties) == 0) | 695 | if (genius_detect(psmouse, set_properties) == 0) |
| @@ -712,6 +706,21 @@ static int psmouse_extensions(struct psmouse *psmouse, | |||
| 712 | } | 706 | } |
| 713 | 707 | ||
| 714 | /* | 708 | /* |
| 709 | * Try Finger Sensing Pad. We do it here because its probe upsets | ||
| 710 | * Trackpoint devices (causing TP_READ_ID command to time out). | ||
| 711 | */ | ||
| 712 | if (max_proto > PSMOUSE_IMEX) { | ||
| 713 | if (fsp_detect(psmouse, set_properties) == 0) { | ||
| 714 | if (!set_properties || fsp_init(psmouse) == 0) | ||
| 715 | return PSMOUSE_FSP; | ||
| 716 | /* | ||
| 717 | * Init failed, try basic relative protocols | ||
| 718 | */ | ||
| 719 | max_proto = PSMOUSE_IMEX; | ||
| 720 | } | ||
| 721 | } | ||
| 722 | |||
| 723 | /* | ||
| 715 | * Reset to defaults in case the device got confused by extended | 724 | * Reset to defaults in case the device got confused by extended |
| 716 | * protocol probes. Note that we follow up with full reset because | 725 | * protocol probes. Note that we follow up with full reset because |
| 717 | * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS. | 726 | * some mice put themselves to sleep when they see PSMOUSE_RESET_DIS. |
| @@ -1450,24 +1459,10 @@ ssize_t psmouse_attr_show_helper(struct device *dev, struct device_attribute *de | |||
| 1450 | struct serio *serio = to_serio_port(dev); | 1459 | struct serio *serio = to_serio_port(dev); |
| 1451 | struct psmouse_attribute *attr = to_psmouse_attr(devattr); | 1460 | struct psmouse_attribute *attr = to_psmouse_attr(devattr); |
| 1452 | struct psmouse *psmouse; | 1461 | struct psmouse *psmouse; |
| 1453 | int retval; | ||
| 1454 | |||
| 1455 | retval = serio_pin_driver(serio); | ||
| 1456 | if (retval) | ||
| 1457 | return retval; | ||
| 1458 | |||
| 1459 | if (serio->drv != &psmouse_drv) { | ||
| 1460 | retval = -ENODEV; | ||
| 1461 | goto out; | ||
| 1462 | } | ||
| 1463 | 1462 | ||
| 1464 | psmouse = serio_get_drvdata(serio); | 1463 | psmouse = serio_get_drvdata(serio); |
| 1465 | 1464 | ||
| 1466 | retval = attr->show(psmouse, attr->data, buf); | 1465 | return attr->show(psmouse, attr->data, buf); |
| 1467 | |||
| 1468 | out: | ||
| 1469 | serio_unpin_driver(serio); | ||
| 1470 | return retval; | ||
| 1471 | } | 1466 | } |
| 1472 | 1467 | ||
| 1473 | ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr, | 1468 | ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *devattr, |
| @@ -1478,18 +1473,9 @@ ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *dev | |||
| 1478 | struct psmouse *psmouse, *parent = NULL; | 1473 | struct psmouse *psmouse, *parent = NULL; |
| 1479 | int retval; | 1474 | int retval; |
| 1480 | 1475 | ||
| 1481 | retval = serio_pin_driver(serio); | ||
| 1482 | if (retval) | ||
| 1483 | return retval; | ||
| 1484 | |||
| 1485 | if (serio->drv != &psmouse_drv) { | ||
| 1486 | retval = -ENODEV; | ||
| 1487 | goto out_unpin; | ||
| 1488 | } | ||
| 1489 | |||
| 1490 | retval = mutex_lock_interruptible(&psmouse_mutex); | 1476 | retval = mutex_lock_interruptible(&psmouse_mutex); |
| 1491 | if (retval) | 1477 | if (retval) |
| 1492 | goto out_unpin; | 1478 | goto out; |
| 1493 | 1479 | ||
| 1494 | psmouse = serio_get_drvdata(serio); | 1480 | psmouse = serio_get_drvdata(serio); |
| 1495 | 1481 | ||
| @@ -1519,8 +1505,7 @@ ssize_t psmouse_attr_set_helper(struct device *dev, struct device_attribute *dev | |||
| 1519 | 1505 | ||
| 1520 | out_unlock: | 1506 | out_unlock: |
| 1521 | mutex_unlock(&psmouse_mutex); | 1507 | mutex_unlock(&psmouse_mutex); |
| 1522 | out_unpin: | 1508 | out: |
| 1523 | serio_unpin_driver(serio); | ||
| 1524 | return retval; | 1509 | return retval; |
| 1525 | } | 1510 | } |
| 1526 | 1511 | ||
| @@ -1582,9 +1567,7 @@ static ssize_t psmouse_attr_set_protocol(struct psmouse *psmouse, void *data, co | |||
| 1582 | } | 1567 | } |
| 1583 | 1568 | ||
| 1584 | mutex_unlock(&psmouse_mutex); | 1569 | mutex_unlock(&psmouse_mutex); |
| 1585 | serio_unpin_driver(serio); | ||
| 1586 | serio_unregister_child_port(serio); | 1570 | serio_unregister_child_port(serio); |
| 1587 | serio_pin_driver_uninterruptible(serio); | ||
| 1588 | mutex_lock(&psmouse_mutex); | 1571 | mutex_lock(&psmouse_mutex); |
| 1589 | 1572 | ||
| 1590 | if (serio->drv != &psmouse_drv) { | 1573 | if (serio->drv != &psmouse_drv) { |
diff --git a/drivers/input/mouse/sentelic.c b/drivers/input/mouse/sentelic.c index 77b9fd0b3fbf..81a6b81cb2fe 100644 --- a/drivers/input/mouse/sentelic.c +++ b/drivers/input/mouse/sentelic.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | * Finger Sensing Pad PS/2 mouse driver. | 2 | * Finger Sensing Pad PS/2 mouse driver. |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005-2007 Asia Vital Components Co., Ltd. | 4 | * Copyright (C) 2005-2007 Asia Vital Components Co., Ltd. |
| 5 | * Copyright (C) 2005-2009 Tai-hwa Liang, Sentelic Corporation. | 5 | * Copyright (C) 2005-2010 Tai-hwa Liang, Sentelic Corporation. |
| 6 | * | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or | 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License | 8 | * modify it under the terms of the GNU General Public License |
| @@ -658,9 +658,9 @@ static psmouse_ret_t fsp_process_byte(struct psmouse *psmouse) | |||
| 658 | if (packet[3] & BIT(1)) | 658 | if (packet[3] & BIT(1)) |
| 659 | button_status |= 0x0f; /* wheel up */ | 659 | button_status |= 0x0f; /* wheel up */ |
| 660 | if (packet[3] & BIT(2)) | 660 | if (packet[3] & BIT(2)) |
| 661 | button_status |= BIT(5);/* horizontal left */ | 661 | button_status |= BIT(4);/* horizontal left */ |
| 662 | if (packet[3] & BIT(3)) | 662 | if (packet[3] & BIT(3)) |
| 663 | button_status |= BIT(4);/* horizontal right */ | 663 | button_status |= BIT(5);/* horizontal right */ |
| 664 | /* push back to packet queue */ | 664 | /* push back to packet queue */ |
| 665 | if (button_status != 0) | 665 | if (button_status != 0) |
| 666 | packet[3] = button_status; | 666 | packet[3] = button_status; |
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index 05689e732191..d3f5243fa093 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c | |||
| @@ -743,6 +743,11 @@ int synaptics_init(struct psmouse *psmouse) | |||
| 743 | return -1; | 743 | return -1; |
| 744 | } | 744 | } |
| 745 | 745 | ||
| 746 | bool synaptics_supported(void) | ||
| 747 | { | ||
| 748 | return true; | ||
| 749 | } | ||
| 750 | |||
| 746 | #else /* CONFIG_MOUSE_PS2_SYNAPTICS */ | 751 | #else /* CONFIG_MOUSE_PS2_SYNAPTICS */ |
| 747 | 752 | ||
| 748 | void __init synaptics_module_init(void) | 753 | void __init synaptics_module_init(void) |
| @@ -754,5 +759,10 @@ int synaptics_init(struct psmouse *psmouse) | |||
| 754 | return -ENOSYS; | 759 | return -ENOSYS; |
| 755 | } | 760 | } |
| 756 | 761 | ||
| 762 | bool synaptics_supported(void) | ||
| 763 | { | ||
| 764 | return false; | ||
| 765 | } | ||
| 766 | |||
| 757 | #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */ | 767 | #endif /* CONFIG_MOUSE_PS2_SYNAPTICS */ |
| 758 | 768 | ||
diff --git a/drivers/input/mouse/synaptics.h b/drivers/input/mouse/synaptics.h index 838e7f2c9b30..f0f40a331dc8 100644 --- a/drivers/input/mouse/synaptics.h +++ b/drivers/input/mouse/synaptics.h | |||
| @@ -109,5 +109,6 @@ void synaptics_module_init(void); | |||
| 109 | int synaptics_detect(struct psmouse *psmouse, bool set_properties); | 109 | int synaptics_detect(struct psmouse *psmouse, bool set_properties); |
| 110 | int synaptics_init(struct psmouse *psmouse); | 110 | int synaptics_init(struct psmouse *psmouse); |
| 111 | void synaptics_reset(struct psmouse *psmouse); | 111 | void synaptics_reset(struct psmouse *psmouse); |
| 112 | bool synaptics_supported(void); | ||
| 112 | 113 | ||
| 113 | #endif /* _SYNAPTICS_H */ | 114 | #endif /* _SYNAPTICS_H */ |
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 64b688daf48a..2a5982e532f8 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h | |||
| @@ -524,6 +524,13 @@ static const struct dmi_system_id __initconst i8042_dmi_laptop_table[] = { | |||
| 524 | */ | 524 | */ |
| 525 | static const struct dmi_system_id __initconst i8042_dmi_dritek_table[] = { | 525 | static const struct dmi_system_id __initconst i8042_dmi_dritek_table[] = { |
| 526 | { | 526 | { |
| 527 | /* Acer Aspire 5610 */ | ||
| 528 | .matches = { | ||
| 529 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | ||
| 530 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"), | ||
| 531 | }, | ||
| 532 | }, | ||
| 533 | { | ||
| 527 | /* Acer Aspire 5630 */ | 534 | /* Acer Aspire 5630 */ |
| 528 | .matches = { | 535 | .matches = { |
| 529 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | 536 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
diff --git a/drivers/input/touchscreen/ad7879.c b/drivers/input/touchscreen/ad7879.c index c21e6d3a8844..794d070c6900 100644 --- a/drivers/input/touchscreen/ad7879.c +++ b/drivers/input/touchscreen/ad7879.c | |||
| @@ -47,6 +47,7 @@ | |||
| 47 | #include <linux/workqueue.h> | 47 | #include <linux/workqueue.h> |
| 48 | #include <linux/spi/spi.h> | 48 | #include <linux/spi/spi.h> |
| 49 | #include <linux/i2c.h> | 49 | #include <linux/i2c.h> |
| 50 | #include <linux/gpio.h> | ||
| 50 | 51 | ||
| 51 | #include <linux/spi/ad7879.h> | 52 | #include <linux/spi/ad7879.h> |
| 52 | 53 | ||
| @@ -132,7 +133,9 @@ struct ad7879 { | |||
| 132 | struct input_dev *input; | 133 | struct input_dev *input; |
| 133 | struct work_struct work; | 134 | struct work_struct work; |
| 134 | struct timer_list timer; | 135 | struct timer_list timer; |
| 135 | 136 | #ifdef CONFIG_GPIOLIB | |
| 137 | struct gpio_chip gc; | ||
| 138 | #endif | ||
| 136 | struct mutex mutex; | 139 | struct mutex mutex; |
| 137 | unsigned disabled:1; /* P: mutex */ | 140 | unsigned disabled:1; /* P: mutex */ |
| 138 | 141 | ||
| @@ -150,11 +153,9 @@ struct ad7879 { | |||
| 150 | u8 median; | 153 | u8 median; |
| 151 | u16 x_plate_ohms; | 154 | u16 x_plate_ohms; |
| 152 | u16 pressure_max; | 155 | u16 pressure_max; |
| 153 | u16 gpio_init; | ||
| 154 | u16 cmd_crtl1; | 156 | u16 cmd_crtl1; |
| 155 | u16 cmd_crtl2; | 157 | u16 cmd_crtl2; |
| 156 | u16 cmd_crtl3; | 158 | u16 cmd_crtl3; |
| 157 | unsigned gpio:1; | ||
| 158 | }; | 159 | }; |
| 159 | 160 | ||
| 160 | static int ad7879_read(bus_device *, u8); | 161 | static int ad7879_read(bus_device *, u8); |
| @@ -237,24 +238,6 @@ static irqreturn_t ad7879_irq(int irq, void *handle) | |||
| 237 | 238 | ||
| 238 | static void ad7879_setup(struct ad7879 *ts) | 239 | static void ad7879_setup(struct ad7879 *ts) |
| 239 | { | 240 | { |
| 240 | ts->cmd_crtl3 = AD7879_YPLUS_BIT | | ||
| 241 | AD7879_XPLUS_BIT | | ||
| 242 | AD7879_Z2_BIT | | ||
| 243 | AD7879_Z1_BIT | | ||
| 244 | AD7879_TEMPMASK_BIT | | ||
| 245 | AD7879_AUXVBATMASK_BIT | | ||
| 246 | AD7879_GPIOALERTMASK_BIT; | ||
| 247 | |||
| 248 | ts->cmd_crtl2 = AD7879_PM(AD7879_PM_DYN) | AD7879_DFR | | ||
| 249 | AD7879_AVG(ts->averaging) | | ||
| 250 | AD7879_MFS(ts->median) | | ||
| 251 | AD7879_FCD(ts->first_conversion_delay) | | ||
| 252 | ts->gpio_init; | ||
| 253 | |||
| 254 | ts->cmd_crtl1 = AD7879_MODE_INT | AD7879_MODE_SEQ1 | | ||
| 255 | AD7879_ACQ(ts->acquisition_time) | | ||
| 256 | AD7879_TMR(ts->pen_down_acc_interval); | ||
| 257 | |||
| 258 | ad7879_write(ts->bus, AD7879_REG_CTRL2, ts->cmd_crtl2); | 241 | ad7879_write(ts->bus, AD7879_REG_CTRL2, ts->cmd_crtl2); |
| 259 | ad7879_write(ts->bus, AD7879_REG_CTRL3, ts->cmd_crtl3); | 242 | ad7879_write(ts->bus, AD7879_REG_CTRL3, ts->cmd_crtl3); |
| 260 | ad7879_write(ts->bus, AD7879_REG_CTRL1, ts->cmd_crtl1); | 243 | ad7879_write(ts->bus, AD7879_REG_CTRL1, ts->cmd_crtl1); |
| @@ -324,48 +307,132 @@ static ssize_t ad7879_disable_store(struct device *dev, | |||
| 324 | 307 | ||
| 325 | static DEVICE_ATTR(disable, 0664, ad7879_disable_show, ad7879_disable_store); | 308 | static DEVICE_ATTR(disable, 0664, ad7879_disable_show, ad7879_disable_store); |
| 326 | 309 | ||
| 327 | static ssize_t ad7879_gpio_show(struct device *dev, | 310 | static struct attribute *ad7879_attributes[] = { |
| 328 | struct device_attribute *attr, char *buf) | 311 | &dev_attr_disable.attr, |
| 312 | NULL | ||
| 313 | }; | ||
| 314 | |||
| 315 | static const struct attribute_group ad7879_attr_group = { | ||
| 316 | .attrs = ad7879_attributes, | ||
| 317 | }; | ||
| 318 | |||
| 319 | #ifdef CONFIG_GPIOLIB | ||
| 320 | static int ad7879_gpio_direction_input(struct gpio_chip *chip, | ||
| 321 | unsigned gpio) | ||
| 329 | { | 322 | { |
| 330 | struct ad7879 *ts = dev_get_drvdata(dev); | 323 | struct ad7879 *ts = container_of(chip, struct ad7879, gc); |
| 324 | int err; | ||
| 331 | 325 | ||
| 332 | return sprintf(buf, "%u\n", ts->gpio); | 326 | mutex_lock(&ts->mutex); |
| 327 | ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIODIR | AD7879_GPIOPOL; | ||
| 328 | err = ad7879_write(ts->bus, AD7879_REG_CTRL2, ts->cmd_crtl2); | ||
| 329 | mutex_unlock(&ts->mutex); | ||
| 330 | |||
| 331 | return err; | ||
| 333 | } | 332 | } |
| 334 | 333 | ||
| 335 | static ssize_t ad7879_gpio_store(struct device *dev, | 334 | static int ad7879_gpio_direction_output(struct gpio_chip *chip, |
| 336 | struct device_attribute *attr, | 335 | unsigned gpio, int level) |
| 337 | const char *buf, size_t count) | ||
| 338 | { | 336 | { |
| 339 | struct ad7879 *ts = dev_get_drvdata(dev); | 337 | struct ad7879 *ts = container_of(chip, struct ad7879, gc); |
| 340 | unsigned long val; | 338 | int err; |
| 341 | int error; | ||
| 342 | 339 | ||
| 343 | error = strict_strtoul(buf, 10, &val); | 340 | mutex_lock(&ts->mutex); |
| 344 | if (error) | 341 | ts->cmd_crtl2 &= ~AD7879_GPIODIR; |
| 345 | return error; | 342 | ts->cmd_crtl2 |= AD7879_GPIO_EN | AD7879_GPIOPOL; |
| 343 | if (level) | ||
| 344 | ts->cmd_crtl2 |= AD7879_GPIO_DATA; | ||
| 345 | else | ||
| 346 | ts->cmd_crtl2 &= ~AD7879_GPIO_DATA; | ||
| 347 | |||
| 348 | err = ad7879_write(ts->bus, AD7879_REG_CTRL2, ts->cmd_crtl2); | ||
| 349 | mutex_unlock(&ts->mutex); | ||
| 350 | |||
| 351 | return err; | ||
| 352 | } | ||
| 353 | |||
| 354 | static int ad7879_gpio_get_value(struct gpio_chip *chip, unsigned gpio) | ||
| 355 | { | ||
| 356 | struct ad7879 *ts = container_of(chip, struct ad7879, gc); | ||
| 357 | u16 val; | ||
| 346 | 358 | ||
| 347 | mutex_lock(&ts->mutex); | 359 | mutex_lock(&ts->mutex); |
| 348 | ts->gpio = !!val; | 360 | val = ad7879_read(ts->bus, AD7879_REG_CTRL2); |
| 349 | error = ad7879_write(ts->bus, AD7879_REG_CTRL2, | ||
| 350 | ts->gpio ? | ||
| 351 | ts->cmd_crtl2 & ~AD7879_GPIO_DATA : | ||
| 352 | ts->cmd_crtl2 | AD7879_GPIO_DATA); | ||
| 353 | mutex_unlock(&ts->mutex); | 361 | mutex_unlock(&ts->mutex); |
| 354 | 362 | ||
| 355 | return error ? : count; | 363 | return !!(val & AD7879_GPIO_DATA); |
| 356 | } | 364 | } |
| 357 | 365 | ||
| 358 | static DEVICE_ATTR(gpio, 0664, ad7879_gpio_show, ad7879_gpio_store); | 366 | static void ad7879_gpio_set_value(struct gpio_chip *chip, |
| 367 | unsigned gpio, int value) | ||
| 368 | { | ||
| 369 | struct ad7879 *ts = container_of(chip, struct ad7879, gc); | ||
| 359 | 370 | ||
| 360 | static struct attribute *ad7879_attributes[] = { | 371 | mutex_lock(&ts->mutex); |
| 361 | &dev_attr_disable.attr, | 372 | if (value) |
| 362 | &dev_attr_gpio.attr, | 373 | ts->cmd_crtl2 |= AD7879_GPIO_DATA; |
| 363 | NULL | 374 | else |
| 364 | }; | 375 | ts->cmd_crtl2 &= ~AD7879_GPIO_DATA; |
| 365 | 376 | ||
| 366 | static const struct attribute_group ad7879_attr_group = { | 377 | ad7879_write(ts->bus, AD7879_REG_CTRL2, ts->cmd_crtl2); |
| 367 | .attrs = ad7879_attributes, | 378 | mutex_unlock(&ts->mutex); |
| 368 | }; | 379 | } |
| 380 | |||
| 381 | static int __devinit ad7879_gpio_add(struct device *dev) | ||
| 382 | { | ||
| 383 | struct ad7879 *ts = dev_get_drvdata(dev); | ||
| 384 | struct ad7879_platform_data *pdata = dev->platform_data; | ||
| 385 | int ret = 0; | ||
| 386 | |||
| 387 | if (pdata->gpio_export) { | ||
| 388 | ts->gc.direction_input = ad7879_gpio_direction_input; | ||
| 389 | ts->gc.direction_output = ad7879_gpio_direction_output; | ||
| 390 | ts->gc.get = ad7879_gpio_get_value; | ||
| 391 | ts->gc.set = ad7879_gpio_set_value; | ||
| 392 | ts->gc.can_sleep = 1; | ||
| 393 | ts->gc.base = pdata->gpio_base; | ||
| 394 | ts->gc.ngpio = 1; | ||
| 395 | ts->gc.label = "AD7879-GPIO"; | ||
| 396 | ts->gc.owner = THIS_MODULE; | ||
| 397 | ts->gc.dev = dev; | ||
| 398 | |||
| 399 | ret = gpiochip_add(&ts->gc); | ||
| 400 | if (ret) | ||
| 401 | dev_err(dev, "failed to register gpio %d\n", | ||
| 402 | ts->gc.base); | ||
| 403 | } | ||
| 404 | |||
| 405 | return ret; | ||
| 406 | } | ||
| 407 | |||
| 408 | /* | ||
| 409 | * We mark ad7879_gpio_remove inline so there is a chance the code | ||
| 410 | * gets discarded when not needed. We can't do __devinit/__devexit | ||
| 411 | * markup since it is used in both probe and remove methods. | ||
| 412 | */ | ||
| 413 | static inline void ad7879_gpio_remove(struct device *dev) | ||
| 414 | { | ||
| 415 | struct ad7879 *ts = dev_get_drvdata(dev); | ||
| 416 | struct ad7879_platform_data *pdata = dev->platform_data; | ||
| 417 | int ret; | ||
| 418 | |||
| 419 | if (pdata->gpio_export) { | ||
| 420 | ret = gpiochip_remove(&ts->gc); | ||
| 421 | if (ret) | ||
| 422 | dev_err(dev, "failed to remove gpio %d\n", | ||
| 423 | ts->gc.base); | ||
| 424 | } | ||
| 425 | } | ||
| 426 | #else | ||
| 427 | static inline int ad7879_gpio_add(struct device *dev) | ||
| 428 | { | ||
| 429 | return 0; | ||
| 430 | } | ||
| 431 | |||
| 432 | static inline void ad7879_gpio_remove(struct device *dev) | ||
| 433 | { | ||
| 434 | } | ||
| 435 | #endif | ||
| 369 | 436 | ||
| 370 | static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts) | 437 | static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts) |
| 371 | { | 438 | { |
| @@ -403,12 +470,6 @@ static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts) | |||
| 403 | ts->pen_down_acc_interval = pdata->pen_down_acc_interval; | 470 | ts->pen_down_acc_interval = pdata->pen_down_acc_interval; |
| 404 | ts->median = pdata->median; | 471 | ts->median = pdata->median; |
| 405 | 472 | ||
| 406 | if (pdata->gpio_output) | ||
| 407 | ts->gpio_init = AD7879_GPIO_EN | | ||
| 408 | (pdata->gpio_default ? 0 : AD7879_GPIO_DATA); | ||
| 409 | else | ||
| 410 | ts->gpio_init = AD7879_GPIO_EN | AD7879_GPIODIR; | ||
| 411 | |||
| 412 | snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&bus->dev)); | 473 | snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&bus->dev)); |
| 413 | 474 | ||
| 414 | input_dev->name = "AD7879 Touchscreen"; | 475 | input_dev->name = "AD7879 Touchscreen"; |
| @@ -446,6 +507,23 @@ static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts) | |||
| 446 | goto err_free_mem; | 507 | goto err_free_mem; |
| 447 | } | 508 | } |
| 448 | 509 | ||
| 510 | ts->cmd_crtl3 = AD7879_YPLUS_BIT | | ||
| 511 | AD7879_XPLUS_BIT | | ||
| 512 | AD7879_Z2_BIT | | ||
| 513 | AD7879_Z1_BIT | | ||
| 514 | AD7879_TEMPMASK_BIT | | ||
| 515 | AD7879_AUXVBATMASK_BIT | | ||
| 516 | AD7879_GPIOALERTMASK_BIT; | ||
| 517 | |||
| 518 | ts->cmd_crtl2 = AD7879_PM(AD7879_PM_DYN) | AD7879_DFR | | ||
| 519 | AD7879_AVG(ts->averaging) | | ||
| 520 | AD7879_MFS(ts->median) | | ||
| 521 | AD7879_FCD(ts->first_conversion_delay); | ||
| 522 | |||
| 523 | ts->cmd_crtl1 = AD7879_MODE_INT | AD7879_MODE_SEQ1 | | ||
| 524 | AD7879_ACQ(ts->acquisition_time) | | ||
| 525 | AD7879_TMR(ts->pen_down_acc_interval); | ||
| 526 | |||
| 449 | ad7879_setup(ts); | 527 | ad7879_setup(ts); |
| 450 | 528 | ||
| 451 | err = request_irq(bus->irq, ad7879_irq, | 529 | err = request_irq(bus->irq, ad7879_irq, |
| @@ -460,15 +538,21 @@ static int __devinit ad7879_construct(bus_device *bus, struct ad7879 *ts) | |||
| 460 | if (err) | 538 | if (err) |
| 461 | goto err_free_irq; | 539 | goto err_free_irq; |
| 462 | 540 | ||
| 463 | err = input_register_device(input_dev); | 541 | err = ad7879_gpio_add(&bus->dev); |
| 464 | if (err) | 542 | if (err) |
| 465 | goto err_remove_attr; | 543 | goto err_remove_attr; |
| 466 | 544 | ||
| 545 | err = input_register_device(input_dev); | ||
| 546 | if (err) | ||
| 547 | goto err_remove_gpio; | ||
| 548 | |||
| 467 | dev_info(&bus->dev, "Rev.%d touchscreen, irq %d\n", | 549 | dev_info(&bus->dev, "Rev.%d touchscreen, irq %d\n", |
| 468 | revid >> 8, bus->irq); | 550 | revid >> 8, bus->irq); |
| 469 | 551 | ||
| 470 | return 0; | 552 | return 0; |
| 471 | 553 | ||
| 554 | err_remove_gpio: | ||
| 555 | ad7879_gpio_remove(&bus->dev); | ||
| 472 | err_remove_attr: | 556 | err_remove_attr: |
| 473 | sysfs_remove_group(&bus->dev.kobj, &ad7879_attr_group); | 557 | sysfs_remove_group(&bus->dev.kobj, &ad7879_attr_group); |
| 474 | err_free_irq: | 558 | err_free_irq: |
| @@ -481,6 +565,7 @@ err_free_mem: | |||
| 481 | 565 | ||
| 482 | static int __devexit ad7879_destroy(bus_device *bus, struct ad7879 *ts) | 566 | static int __devexit ad7879_destroy(bus_device *bus, struct ad7879 *ts) |
| 483 | { | 567 | { |
| 568 | ad7879_gpio_remove(&bus->dev); | ||
| 484 | ad7879_disable(ts); | 569 | ad7879_disable(ts); |
| 485 | sysfs_remove_group(&ts->bus->dev.kobj, &ad7879_attr_group); | 570 | sysfs_remove_group(&ts->bus->dev.kobj, &ad7879_attr_group); |
| 486 | free_irq(ts->bus->irq, ts); | 571 | free_irq(ts->bus->irq, ts); |
diff --git a/drivers/isdn/hardware/mISDN/hfcmulti.c b/drivers/isdn/hardware/mISDN/hfcmulti.c index a6624ad252c5..1a1420d7a828 100644 --- a/drivers/isdn/hardware/mISDN/hfcmulti.c +++ b/drivers/isdn/hardware/mISDN/hfcmulti.c | |||
| @@ -3152,7 +3152,7 @@ static void | |||
| 3152 | hfcmulti_pcm(struct hfc_multi *hc, int ch, int slot_tx, int bank_tx, | 3152 | hfcmulti_pcm(struct hfc_multi *hc, int ch, int slot_tx, int bank_tx, |
| 3153 | int slot_rx, int bank_rx) | 3153 | int slot_rx, int bank_rx) |
| 3154 | { | 3154 | { |
| 3155 | if (slot_rx < 0 || slot_rx < 0 || bank_tx < 0 || bank_rx < 0) { | 3155 | if (slot_tx < 0 || slot_rx < 0 || bank_tx < 0 || bank_rx < 0) { |
| 3156 | /* disable PCM */ | 3156 | /* disable PCM */ |
| 3157 | mode_hfcmulti(hc, ch, hc->chan[ch].protocol, -1, 0, -1, 0); | 3157 | mode_hfcmulti(hc, ch, hc->chan[ch].protocol, -1, 0, -1, 0); |
| 3158 | return; | 3158 | return; |
diff --git a/drivers/macintosh/smu.c b/drivers/macintosh/smu.c index 96faa799b82a..f96feeb6b9ce 100644 --- a/drivers/macintosh/smu.c +++ b/drivers/macintosh/smu.c | |||
| @@ -660,7 +660,7 @@ static int smu_platform_probe(struct of_device* dev, | |||
| 660 | return 0; | 660 | return 0; |
| 661 | } | 661 | } |
| 662 | 662 | ||
| 663 | static struct of_device_id smu_platform_match[] = | 663 | static const struct of_device_id smu_platform_match[] = |
| 664 | { | 664 | { |
| 665 | { | 665 | { |
| 666 | .type = "smu", | 666 | .type = "smu", |
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index ea32c7e5a9af..454bc501df3c 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
| @@ -2211,7 +2211,7 @@ static int fcu_of_remove(struct of_device* dev) | |||
| 2211 | return 0; | 2211 | return 0; |
| 2212 | } | 2212 | } |
| 2213 | 2213 | ||
| 2214 | static struct of_device_id fcu_match[] = | 2214 | static const struct of_device_id fcu_match[] = |
| 2215 | { | 2215 | { |
| 2216 | { | 2216 | { |
| 2217 | .type = "fcu", | 2217 | .type = "fcu", |
diff --git a/drivers/macintosh/therm_windtunnel.c b/drivers/macintosh/therm_windtunnel.c index 3fbe41b0ac07..ba48fd76396e 100644 --- a/drivers/macintosh/therm_windtunnel.c +++ b/drivers/macintosh/therm_windtunnel.c | |||
| @@ -457,7 +457,7 @@ therm_of_remove( struct of_device *dev ) | |||
| 457 | return 0; | 457 | return 0; |
| 458 | } | 458 | } |
| 459 | 459 | ||
| 460 | static struct of_device_id therm_of_match[] = {{ | 460 | static const struct of_device_id therm_of_match[] = {{ |
| 461 | .name = "fan", | 461 | .name = "fan", |
| 462 | .compatible = "adm1030" | 462 | .compatible = "adm1030" |
| 463 | }, {} | 463 | }, {} |
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index be625475cf6d..4b22feb01a0c 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c | |||
| @@ -503,16 +503,15 @@ int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev, | |||
| 503 | return 0; | 503 | return 0; |
| 504 | } | 504 | } |
| 505 | 505 | ||
| 506 | if (blk_stack_limits(limits, &q->limits, start << 9) < 0) | 506 | if (bdev_stack_limits(limits, bdev, start) < 0) |
| 507 | DMWARN("%s: target device %s is misaligned: " | 507 | DMWARN("%s: adding target device %s caused an alignment inconsistency: " |
| 508 | "physical_block_size=%u, logical_block_size=%u, " | 508 | "physical_block_size=%u, logical_block_size=%u, " |
| 509 | "alignment_offset=%u, start=%llu", | 509 | "alignment_offset=%u, start=%llu", |
| 510 | dm_device_name(ti->table->md), bdevname(bdev, b), | 510 | dm_device_name(ti->table->md), bdevname(bdev, b), |
| 511 | q->limits.physical_block_size, | 511 | q->limits.physical_block_size, |
| 512 | q->limits.logical_block_size, | 512 | q->limits.logical_block_size, |
| 513 | q->limits.alignment_offset, | 513 | q->limits.alignment_offset, |
| 514 | (unsigned long long) start << 9); | 514 | (unsigned long long) start << SECTOR_SHIFT); |
| 515 | |||
| 516 | 515 | ||
| 517 | /* | 516 | /* |
| 518 | * Check if merge fn is supported. | 517 | * Check if merge fn is supported. |
| @@ -1026,9 +1025,9 @@ combine_limits: | |||
| 1026 | * for the table. | 1025 | * for the table. |
| 1027 | */ | 1026 | */ |
| 1028 | if (blk_stack_limits(limits, &ti_limits, 0) < 0) | 1027 | if (blk_stack_limits(limits, &ti_limits, 0) < 0) |
| 1029 | DMWARN("%s: target device " | 1028 | DMWARN("%s: adding target device " |
| 1030 | "(start sect %llu len %llu) " | 1029 | "(start sect %llu len %llu) " |
| 1031 | "is misaligned", | 1030 | "caused an alignment inconsistency", |
| 1032 | dm_device_name(table->md), | 1031 | dm_device_name(table->md), |
| 1033 | (unsigned long long) ti->begin, | 1032 | (unsigned long long) ti->begin, |
| 1034 | (unsigned long long) ti->len); | 1033 | (unsigned long long) ti->len); |
| @@ -1080,15 +1079,6 @@ void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q, | |||
| 1080 | struct queue_limits *limits) | 1079 | struct queue_limits *limits) |
| 1081 | { | 1080 | { |
| 1082 | /* | 1081 | /* |
| 1083 | * Each target device in the table has a data area that should normally | ||
| 1084 | * be aligned such that the DM device's alignment_offset is 0. | ||
| 1085 | * FIXME: Propagate alignment_offsets up the stack and warn of | ||
| 1086 | * sub-optimal or inconsistent settings. | ||
| 1087 | */ | ||
| 1088 | limits->alignment_offset = 0; | ||
| 1089 | limits->misaligned = 0; | ||
| 1090 | |||
| 1091 | /* | ||
| 1092 | * Copy table's limits to the DM device's request_queue | 1082 | * Copy table's limits to the DM device's request_queue |
| 1093 | */ | 1083 | */ |
| 1094 | q->limits = *limits; | 1084 | q->limits = *limits; |
diff --git a/drivers/media/IR/ir-keytable.c b/drivers/media/IR/ir-keytable.c index bff7a5356037..b521ed9d6e2e 100644 --- a/drivers/media/IR/ir-keytable.c +++ b/drivers/media/IR/ir-keytable.c | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | */ | 13 | */ |
| 14 | 14 | ||
| 15 | 15 | ||
| 16 | #include <linux/usb/input.h> | 16 | #include <linux/input.h> |
| 17 | #include <media/ir-common.h> | 17 | #include <media/ir-common.h> |
| 18 | 18 | ||
| 19 | #define IR_TAB_MIN_SIZE 32 | 19 | #define IR_TAB_MIN_SIZE 32 |
diff --git a/drivers/media/common/saa7146_video.c b/drivers/media/common/saa7146_video.c index becbaadb3b77..5ed75263340a 100644 --- a/drivers/media/common/saa7146_video.c +++ b/drivers/media/common/saa7146_video.c | |||
| @@ -1333,9 +1333,9 @@ static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb) | |||
| 1333 | 1333 | ||
| 1334 | DEB_CAP(("vbuf:%p\n",vb)); | 1334 | DEB_CAP(("vbuf:%p\n",vb)); |
| 1335 | 1335 | ||
| 1336 | release_all_pagetables(dev, buf); | ||
| 1337 | |||
| 1338 | saa7146_dma_free(dev,q,buf); | 1336 | saa7146_dma_free(dev,q,buf); |
| 1337 | |||
| 1338 | release_all_pagetables(dev, buf); | ||
| 1339 | } | 1339 | } |
| 1340 | 1340 | ||
| 1341 | static struct videobuf_queue_ops video_qops = { | 1341 | static struct videobuf_queue_ops video_qops = { |
diff --git a/drivers/media/common/tuners/tda8290.c b/drivers/media/common/tuners/tda8290.c index c190b0dedee4..2833137fa819 100644 --- a/drivers/media/common/tuners/tda8290.c +++ b/drivers/media/common/tuners/tda8290.c | |||
| @@ -144,7 +144,8 @@ static void set_audio(struct dvb_frontend *fe, | |||
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | if (params->mode == V4L2_TUNER_RADIO) { | 146 | if (params->mode == V4L2_TUNER_RADIO) { |
| 147 | priv->tda8290_easy_mode = 0x01; /* Start with MN values */ | 147 | /* Set TDA8295 to FM radio; Start TDA8290 with MN values */ |
| 148 | priv->tda8290_easy_mode = (priv->ver & TDA8295) ? 0x80 : 0x01; | ||
| 148 | tuner_dbg("setting to radio FM\n"); | 149 | tuner_dbg("setting to radio FM\n"); |
| 149 | } else { | 150 | } else { |
| 150 | tuner_dbg("setting tda829x to system %s\n", mode); | 151 | tuner_dbg("setting tda829x to system %s\n", mode); |
| @@ -672,16 +673,19 @@ static int tda8290_probe(struct tuner_i2c_props *i2c_props) | |||
| 672 | static int tda8295_probe(struct tuner_i2c_props *i2c_props) | 673 | static int tda8295_probe(struct tuner_i2c_props *i2c_props) |
| 673 | { | 674 | { |
| 674 | #define TDA8295_ID 0x8a | 675 | #define TDA8295_ID 0x8a |
| 676 | #define TDA8295C2_ID 0x8b | ||
| 675 | unsigned char tda8295_id[] = { 0x2f, 0x00 }; | 677 | unsigned char tda8295_id[] = { 0x2f, 0x00 }; |
| 676 | 678 | ||
| 677 | /* detect tda8295 */ | 679 | /* detect tda8295 */ |
| 678 | tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1); | 680 | tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1); |
| 679 | tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1); | 681 | tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1); |
| 680 | 682 | ||
| 681 | if (tda8295_id[1] == TDA8295_ID) { | 683 | if ((tda8295_id[1] & 0xfe) == TDA8295_ID) { |
| 682 | if (debug) | 684 | if (debug) |
| 683 | printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n", | 685 | printk(KERN_DEBUG "%s: %s detected @ %d-%04x\n", |
| 684 | __func__, i2c_adapter_id(i2c_props->adap), | 686 | __func__, (tda8295_id[1] == TDA8295_ID) ? |
| 687 | "tda8295c1" : "tda8295c2", | ||
| 688 | i2c_adapter_id(i2c_props->adap), | ||
| 685 | i2c_props->addr); | 689 | i2c_props->addr); |
| 686 | return 0; | 690 | return 0; |
| 687 | } | 691 | } |
diff --git a/drivers/media/dvb/Kconfig b/drivers/media/dvb/Kconfig index 35d0817126e9..cf8f65f309da 100644 --- a/drivers/media/dvb/Kconfig +++ b/drivers/media/dvb/Kconfig | |||
| @@ -72,6 +72,10 @@ comment "Supported Earthsoft PT1 Adapters" | |||
| 72 | depends on DVB_CORE && PCI && I2C | 72 | depends on DVB_CORE && PCI && I2C |
| 73 | source "drivers/media/dvb/pt1/Kconfig" | 73 | source "drivers/media/dvb/pt1/Kconfig" |
| 74 | 74 | ||
| 75 | comment "Supported Mantis Adapters" | ||
| 76 | depends on DVB_CORE && PCI && I2C | ||
| 77 | source "drivers/media/dvb/mantis/Kconfig" | ||
| 78 | |||
| 75 | comment "Supported DVB Frontends" | 79 | comment "Supported DVB Frontends" |
| 76 | depends on DVB_CORE | 80 | depends on DVB_CORE |
| 77 | source "drivers/media/dvb/frontends/Kconfig" | 81 | source "drivers/media/dvb/frontends/Kconfig" |
diff --git a/drivers/media/dvb/Makefile b/drivers/media/dvb/Makefile index 16d262ddb45d..c12922c3659b 100644 --- a/drivers/media/dvb/Makefile +++ b/drivers/media/dvb/Makefile | |||
| @@ -2,6 +2,18 @@ | |||
| 2 | # Makefile for the kernel multimedia device drivers. | 2 | # Makefile for the kernel multimedia device drivers. |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | obj-y := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ dvb-usb/ pluto2/ siano/ dm1105/ pt1/ | 5 | obj-y := dvb-core/ \ |
| 6 | frontends/ \ | ||
| 7 | ttpci/ \ | ||
| 8 | ttusb-dec/ \ | ||
| 9 | ttusb-budget/ \ | ||
| 10 | b2c2/ \ | ||
| 11 | bt8xx/ \ | ||
| 12 | dvb-usb/ \ | ||
| 13 | pluto2/ \ | ||
| 14 | siano/ \ | ||
| 15 | dm1105/ \ | ||
| 16 | pt1/ \ | ||
| 17 | mantis/ | ||
| 6 | 18 | ||
| 7 | obj-$(CONFIG_DVB_FIREDTV) += firewire/ | 19 | obj-$(CONFIG_DVB_FIREDTV) += firewire/ |
diff --git a/drivers/media/dvb/dvb-core/dmxdev.c b/drivers/media/dvb/dvb-core/dmxdev.c index c37790ad92d0..9ddc57909d49 100644 --- a/drivers/media/dvb/dvb-core/dmxdev.c +++ b/drivers/media/dvb/dvb-core/dmxdev.c | |||
| @@ -761,7 +761,6 @@ static int dvb_demux_open(struct inode *inode, struct file *file) | |||
| 761 | dvb_ringbuffer_init(&dmxdevfilter->buffer, NULL, 8192); | 761 | dvb_ringbuffer_init(&dmxdevfilter->buffer, NULL, 8192); |
| 762 | dmxdevfilter->type = DMXDEV_TYPE_NONE; | 762 | dmxdevfilter->type = DMXDEV_TYPE_NONE; |
| 763 | dvb_dmxdev_filter_state_set(dmxdevfilter, DMXDEV_STATE_ALLOCATED); | 763 | dvb_dmxdev_filter_state_set(dmxdevfilter, DMXDEV_STATE_ALLOCATED); |
| 764 | INIT_LIST_HEAD(&dmxdevfilter->feed.ts); | ||
| 765 | init_timer(&dmxdevfilter->timer); | 764 | init_timer(&dmxdevfilter->timer); |
| 766 | 765 | ||
| 767 | dvbdev->users++; | 766 | dvbdev->users++; |
| @@ -887,6 +886,7 @@ static int dvb_dmxdev_pes_filter_set(struct dmxdev *dmxdev, | |||
| 887 | dmxdevfilter->type = DMXDEV_TYPE_PES; | 886 | dmxdevfilter->type = DMXDEV_TYPE_PES; |
| 888 | memcpy(&dmxdevfilter->params, params, | 887 | memcpy(&dmxdevfilter->params, params, |
| 889 | sizeof(struct dmx_pes_filter_params)); | 888 | sizeof(struct dmx_pes_filter_params)); |
| 889 | INIT_LIST_HEAD(&dmxdevfilter->feed.ts); | ||
| 890 | 890 | ||
| 891 | dvb_dmxdev_filter_state_set(dmxdevfilter, DMXDEV_STATE_SET); | 891 | dvb_dmxdev_filter_state_set(dmxdevfilter, DMXDEV_STATE_SET); |
| 892 | 892 | ||
diff --git a/drivers/media/dvb/dvb-core/dvb_demux.c b/drivers/media/dvb/dvb-core/dvb_demux.c index b78cfb7d1897..67f189b7aa1f 100644 --- a/drivers/media/dvb/dvb-core/dvb_demux.c +++ b/drivers/media/dvb/dvb-core/dvb_demux.c | |||
| @@ -426,16 +426,7 @@ static void dvb_dmx_swfilter_packet(struct dvb_demux *demux, const u8 *buf) | |||
| 426 | }; | 426 | }; |
| 427 | }; | 427 | }; |
| 428 | 428 | ||
| 429 | if (dvb_demux_tscheck) { | 429 | if (demux->cnt_storage) { |
| 430 | if (!demux->cnt_storage) | ||
| 431 | demux->cnt_storage = vmalloc(MAX_PID + 1); | ||
| 432 | |||
| 433 | if (!demux->cnt_storage) { | ||
| 434 | printk(KERN_WARNING "Couldn't allocate memory for TS/TEI check. Disabling it\n"); | ||
| 435 | dvb_demux_tscheck = 0; | ||
| 436 | goto no_dvb_demux_tscheck; | ||
| 437 | } | ||
| 438 | |||
| 439 | /* check pkt counter */ | 430 | /* check pkt counter */ |
| 440 | if (pid < MAX_PID) { | 431 | if (pid < MAX_PID) { |
| 441 | if (buf[1] & 0x80) | 432 | if (buf[1] & 0x80) |
| @@ -454,7 +445,6 @@ static void dvb_dmx_swfilter_packet(struct dvb_demux *demux, const u8 *buf) | |||
| 454 | }; | 445 | }; |
| 455 | /* end check */ | 446 | /* end check */ |
| 456 | }; | 447 | }; |
| 457 | no_dvb_demux_tscheck: | ||
| 458 | 448 | ||
| 459 | list_for_each_entry(feed, &demux->feed_list, list_head) { | 449 | list_for_each_entry(feed, &demux->feed_list, list_head) { |
| 460 | if ((feed->pid != pid) && (feed->pid != 0x2000)) | 450 | if ((feed->pid != pid) && (feed->pid != 0x2000)) |
| @@ -1246,6 +1236,7 @@ int dvb_dmx_init(struct dvb_demux *dvbdemux) | |||
| 1246 | dvbdemux->feed = vmalloc(dvbdemux->feednum * sizeof(struct dvb_demux_feed)); | 1236 | dvbdemux->feed = vmalloc(dvbdemux->feednum * sizeof(struct dvb_demux_feed)); |
| 1247 | if (!dvbdemux->feed) { | 1237 | if (!dvbdemux->feed) { |
| 1248 | vfree(dvbdemux->filter); | 1238 | vfree(dvbdemux->filter); |
| 1239 | dvbdemux->filter = NULL; | ||
| 1249 | return -ENOMEM; | 1240 | return -ENOMEM; |
| 1250 | } | 1241 | } |
| 1251 | for (i = 0; i < dvbdemux->filternum; i++) { | 1242 | for (i = 0; i < dvbdemux->filternum; i++) { |
| @@ -1257,6 +1248,13 @@ int dvb_dmx_init(struct dvb_demux *dvbdemux) | |||
| 1257 | dvbdemux->feed[i].index = i; | 1248 | dvbdemux->feed[i].index = i; |
| 1258 | } | 1249 | } |
| 1259 | 1250 | ||
| 1251 | if (dvb_demux_tscheck) { | ||
| 1252 | dvbdemux->cnt_storage = vmalloc(MAX_PID + 1); | ||
| 1253 | |||
| 1254 | if (!dvbdemux->cnt_storage) | ||
| 1255 | printk(KERN_WARNING "Couldn't allocate memory for TS/TEI check. Disabling it\n"); | ||
| 1256 | } | ||
| 1257 | |||
| 1260 | INIT_LIST_HEAD(&dvbdemux->frontend_list); | 1258 | INIT_LIST_HEAD(&dvbdemux->frontend_list); |
| 1261 | 1259 | ||
| 1262 | for (i = 0; i < DMX_TS_PES_OTHER; i++) { | 1260 | for (i = 0; i < DMX_TS_PES_OTHER; i++) { |
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index a3b8b697349b..cd7f9b7cbffa 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
| @@ -208,6 +208,14 @@ config DVB_DS3000 | |||
| 208 | help | 208 | help |
| 209 | A DVB-S/S2 tuner module. Say Y when you want to support this frontend. | 209 | A DVB-S/S2 tuner module. Say Y when you want to support this frontend. |
| 210 | 210 | ||
| 211 | config DVB_MB86A16 | ||
| 212 | tristate "Fujitsu MB86A16 based" | ||
| 213 | depends on DVB_CORE && I2C | ||
| 214 | default m if DVB_FE_CUSTOMISE | ||
| 215 | help | ||
| 216 | A DVB-S/DSS Direct Conversion reveiver. | ||
| 217 | Say Y when you want to support this frontend. | ||
| 218 | |||
| 211 | comment "DVB-T (terrestrial) frontends" | 219 | comment "DVB-T (terrestrial) frontends" |
| 212 | depends on DVB_CORE | 220 | depends on DVB_CORE |
| 213 | 221 | ||
| @@ -587,6 +595,17 @@ config DVB_ATBM8830 | |||
| 587 | help | 595 | help |
| 588 | A DMB-TH tuner module. Say Y when you want to support this frontend. | 596 | A DMB-TH tuner module. Say Y when you want to support this frontend. |
| 589 | 597 | ||
| 598 | config DVB_TDA665x | ||
| 599 | tristate "TDA665x tuner" | ||
| 600 | depends on DVB_CORE && I2C | ||
| 601 | default m if DVB_FE_CUSTOMISE | ||
| 602 | help | ||
| 603 | Support for tuner modules based on Philips TDA6650/TDA6651 chips. | ||
| 604 | Say Y when you want to support this chip. | ||
| 605 | |||
| 606 | Currently supported tuners: | ||
| 607 | * Panasonic ENV57H12D5 (ET-50DT) | ||
| 608 | |||
| 590 | comment "Tools to develop new frontends" | 609 | comment "Tools to develop new frontends" |
| 591 | 610 | ||
| 592 | config DVB_DUMMY_FE | 611 | config DVB_DUMMY_FE |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index 47575cc7b699..874e8ada4d1d 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
| @@ -64,6 +64,7 @@ obj-$(CONFIG_DVB_TDA10048) += tda10048.o | |||
| 64 | obj-$(CONFIG_DVB_TUNER_CX24113) += cx24113.o | 64 | obj-$(CONFIG_DVB_TUNER_CX24113) += cx24113.o |
| 65 | obj-$(CONFIG_DVB_S5H1411) += s5h1411.o | 65 | obj-$(CONFIG_DVB_S5H1411) += s5h1411.o |
| 66 | obj-$(CONFIG_DVB_LGS8GL5) += lgs8gl5.o | 66 | obj-$(CONFIG_DVB_LGS8GL5) += lgs8gl5.o |
| 67 | obj-$(CONFIG_DVB_TDA665x) += tda665x.o | ||
| 67 | obj-$(CONFIG_DVB_LGS8GXX) += lgs8gxx.o | 68 | obj-$(CONFIG_DVB_LGS8GXX) += lgs8gxx.o |
| 68 | obj-$(CONFIG_DVB_ATBM8830) += atbm8830.o | 69 | obj-$(CONFIG_DVB_ATBM8830) += atbm8830.o |
| 69 | obj-$(CONFIG_DVB_DUMMY_FE) += dvb_dummy_fe.o | 70 | obj-$(CONFIG_DVB_DUMMY_FE) += dvb_dummy_fe.o |
| @@ -80,3 +81,4 @@ obj-$(CONFIG_DVB_STV6110x) += stv6110x.o | |||
| 80 | obj-$(CONFIG_DVB_ISL6423) += isl6423.o | 81 | obj-$(CONFIG_DVB_ISL6423) += isl6423.o |
| 81 | obj-$(CONFIG_DVB_EC100) += ec100.o | 82 | obj-$(CONFIG_DVB_EC100) += ec100.o |
| 82 | obj-$(CONFIG_DVB_DS3000) += ds3000.o | 83 | obj-$(CONFIG_DVB_DS3000) += ds3000.o |
| 84 | obj-$(CONFIG_DVB_MB86A16) += mb86a16.o | ||
diff --git a/drivers/media/dvb/frontends/dib8000.h b/drivers/media/dvb/frontends/dib8000.h index d99619ae983c..b1ee20799639 100644 --- a/drivers/media/dvb/frontends/dib8000.h +++ b/drivers/media/dvb/frontends/dib8000.h | |||
| @@ -100,7 +100,7 @@ static inline int dib8000_set_tune_state(struct dvb_frontend *fe, enum frontend_ | |||
| 100 | static inline enum frontend_tune_state dib8000_get_tune_state(struct dvb_frontend *fe) | 100 | static inline enum frontend_tune_state dib8000_get_tune_state(struct dvb_frontend *fe) |
| 101 | { | 101 | { |
| 102 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | 102 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
| 103 | return CT_SHUTDOWN, | 103 | return CT_SHUTDOWN; |
| 104 | } | 104 | } |
| 105 | static inline void dib8000_pwm_agc_reset(struct dvb_frontend *fe) | 105 | static inline void dib8000_pwm_agc_reset(struct dvb_frontend *fe) |
| 106 | { | 106 | { |
diff --git a/drivers/media/dvb/frontends/lgdt3305.h b/drivers/media/dvb/frontends/lgdt3305.h index 4fa6e52d1fe8..9cb11c9cae53 100644 --- a/drivers/media/dvb/frontends/lgdt3305.h +++ b/drivers/media/dvb/frontends/lgdt3305.h | |||
| @@ -54,13 +54,13 @@ struct lgdt3305_config { | |||
| 54 | u16 usref_qam256; /* default: 0x2a80 */ | 54 | u16 usref_qam256; /* default: 0x2a80 */ |
| 55 | 55 | ||
| 56 | /* disable i2c repeater - 0:repeater enabled 1:repeater disabled */ | 56 | /* disable i2c repeater - 0:repeater enabled 1:repeater disabled */ |
| 57 | int deny_i2c_rptr:1; | 57 | unsigned int deny_i2c_rptr:1; |
| 58 | 58 | ||
| 59 | /* spectral inversion - 0:disabled 1:enabled */ | 59 | /* spectral inversion - 0:disabled 1:enabled */ |
| 60 | int spectral_inversion:1; | 60 | unsigned int spectral_inversion:1; |
| 61 | 61 | ||
| 62 | /* use RF AGC loop - 0:disabled 1:enabled */ | 62 | /* use RF AGC loop - 0:disabled 1:enabled */ |
| 63 | int rf_agc_loop:1; | 63 | unsigned int rf_agc_loop:1; |
| 64 | 64 | ||
| 65 | enum lgdt3305_mpeg_mode mpeg_mode; | 65 | enum lgdt3305_mpeg_mode mpeg_mode; |
| 66 | enum lgdt3305_tp_clock_edge tpclk_edge; | 66 | enum lgdt3305_tp_clock_edge tpclk_edge; |
diff --git a/drivers/media/dvb/frontends/mb86a16.c b/drivers/media/dvb/frontends/mb86a16.c new file mode 100644 index 000000000000..d05f7500e0c5 --- /dev/null +++ b/drivers/media/dvb/frontends/mb86a16.c | |||
| @@ -0,0 +1,1878 @@ | |||
| 1 | /* | ||
| 2 | Fujitsu MB86A16 DVB-S/DSS DC Receiver driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/init.h> | ||
| 22 | #include <linux/kernel.h> | ||
| 23 | #include <linux/module.h> | ||
| 24 | #include <linux/moduleparam.h> | ||
| 25 | |||
| 26 | #include "dvb_frontend.h" | ||
| 27 | #include "mb86a16.h" | ||
| 28 | #include "mb86a16_priv.h" | ||
| 29 | |||
| 30 | unsigned int verbose = 5; | ||
| 31 | module_param(verbose, int, 0644); | ||
| 32 | |||
| 33 | #define ABS(x) ((x) < 0 ? (-x) : (x)) | ||
| 34 | |||
| 35 | struct mb86a16_state { | ||
| 36 | struct i2c_adapter *i2c_adap; | ||
| 37 | const struct mb86a16_config *config; | ||
| 38 | struct dvb_frontend frontend; | ||
| 39 | |||
| 40 | /* tuning parameters */ | ||
| 41 | int frequency; | ||
| 42 | int srate; | ||
| 43 | |||
| 44 | /* Internal stuff */ | ||
| 45 | int master_clk; | ||
| 46 | int deci; | ||
| 47 | int csel; | ||
| 48 | int rsel; | ||
| 49 | }; | ||
| 50 | |||
| 51 | #define MB86A16_ERROR 0 | ||
| 52 | #define MB86A16_NOTICE 1 | ||
| 53 | #define MB86A16_INFO 2 | ||
| 54 | #define MB86A16_DEBUG 3 | ||
| 55 | |||
| 56 | #define dprintk(x, y, z, format, arg...) do { \ | ||
| 57 | if (z) { \ | ||
| 58 | if ((x > MB86A16_ERROR) && (x > y)) \ | ||
| 59 | printk(KERN_ERR "%s: " format "\n", __func__, ##arg); \ | ||
| 60 | else if ((x > MB86A16_NOTICE) && (x > y)) \ | ||
| 61 | printk(KERN_NOTICE "%s: " format "\n", __func__, ##arg); \ | ||
| 62 | else if ((x > MB86A16_INFO) && (x > y)) \ | ||
| 63 | printk(KERN_INFO "%s: " format "\n", __func__, ##arg); \ | ||
| 64 | else if ((x > MB86A16_DEBUG) && (x > y)) \ | ||
| 65 | printk(KERN_DEBUG "%s: " format "\n", __func__, ##arg); \ | ||
| 66 | } else { \ | ||
| 67 | if (x > y) \ | ||
| 68 | printk(format, ##arg); \ | ||
| 69 | } \ | ||
| 70 | } while (0) | ||
| 71 | |||
| 72 | #define TRACE_IN dprintk(verbose, MB86A16_DEBUG, 1, "-->()") | ||
| 73 | #define TRACE_OUT dprintk(verbose, MB86A16_DEBUG, 1, "()-->") | ||
| 74 | |||
| 75 | static int mb86a16_write(struct mb86a16_state *state, u8 reg, u8 val) | ||
| 76 | { | ||
| 77 | int ret; | ||
| 78 | u8 buf[] = { reg, val }; | ||
| 79 | |||
| 80 | struct i2c_msg msg = { | ||
| 81 | .addr = state->config->demod_address, | ||
| 82 | .flags = 0, | ||
| 83 | .buf = buf, | ||
| 84 | .len = 2 | ||
| 85 | }; | ||
| 86 | |||
| 87 | dprintk(verbose, MB86A16_DEBUG, 1, | ||
| 88 | "writing to [0x%02x],Reg[0x%02x],Data[0x%02x]", | ||
| 89 | state->config->demod_address, buf[0], buf[1]); | ||
| 90 | |||
| 91 | ret = i2c_transfer(state->i2c_adap, &msg, 1); | ||
| 92 | |||
| 93 | return (ret != 1) ? -EREMOTEIO : 0; | ||
| 94 | } | ||
| 95 | |||
| 96 | static int mb86a16_read(struct mb86a16_state *state, u8 reg, u8 *val) | ||
| 97 | { | ||
| 98 | int ret; | ||
| 99 | u8 b0[] = { reg }; | ||
| 100 | u8 b1[] = { 0 }; | ||
| 101 | |||
| 102 | struct i2c_msg msg[] = { | ||
| 103 | { | ||
| 104 | .addr = state->config->demod_address, | ||
| 105 | .flags = 0, | ||
| 106 | .buf = b0, | ||
| 107 | .len = 1 | ||
| 108 | }, { | ||
| 109 | .addr = state->config->demod_address, | ||
| 110 | .flags = I2C_M_RD, | ||
| 111 | .buf = b1, | ||
| 112 | .len = 1 | ||
| 113 | } | ||
| 114 | }; | ||
| 115 | ret = i2c_transfer(state->i2c_adap, msg, 2); | ||
| 116 | if (ret != 2) { | ||
| 117 | dprintk(verbose, MB86A16_ERROR, 1, "read error(reg=0x%02x, ret=0x%i)", | ||
| 118 | reg, ret); | ||
| 119 | |||
| 120 | return -EREMOTEIO; | ||
| 121 | } | ||
| 122 | *val = b1[0]; | ||
| 123 | |||
| 124 | return ret; | ||
| 125 | } | ||
| 126 | |||
| 127 | static int CNTM_set(struct mb86a16_state *state, | ||
| 128 | unsigned char timint1, | ||
| 129 | unsigned char timint2, | ||
| 130 | unsigned char cnext) | ||
| 131 | { | ||
| 132 | unsigned char val; | ||
| 133 | |||
| 134 | val = (timint1 << 4) | (timint2 << 2) | cnext; | ||
| 135 | if (mb86a16_write(state, MB86A16_CNTMR, val) < 0) | ||
| 136 | goto err; | ||
| 137 | |||
| 138 | return 0; | ||
| 139 | |||
| 140 | err: | ||
| 141 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 142 | return -EREMOTEIO; | ||
| 143 | } | ||
| 144 | |||
| 145 | static int smrt_set(struct mb86a16_state *state, int rate) | ||
| 146 | { | ||
| 147 | int tmp ; | ||
| 148 | int m ; | ||
| 149 | unsigned char STOFS0, STOFS1; | ||
| 150 | |||
| 151 | m = 1 << state->deci; | ||
| 152 | tmp = (8192 * state->master_clk - 2 * m * rate * 8192 + state->master_clk / 2) / state->master_clk; | ||
| 153 | |||
| 154 | STOFS0 = tmp & 0x0ff; | ||
| 155 | STOFS1 = (tmp & 0xf00) >> 8; | ||
| 156 | |||
| 157 | if (mb86a16_write(state, MB86A16_SRATE1, (state->deci << 2) | | ||
| 158 | (state->csel << 1) | | ||
| 159 | state->rsel) < 0) | ||
| 160 | goto err; | ||
| 161 | if (mb86a16_write(state, MB86A16_SRATE2, STOFS0) < 0) | ||
| 162 | goto err; | ||
| 163 | if (mb86a16_write(state, MB86A16_SRATE3, STOFS1) < 0) | ||
| 164 | goto err; | ||
| 165 | |||
| 166 | return 0; | ||
| 167 | err: | ||
| 168 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 169 | return -1; | ||
| 170 | } | ||
| 171 | |||
| 172 | static int srst(struct mb86a16_state *state) | ||
| 173 | { | ||
| 174 | if (mb86a16_write(state, MB86A16_RESET, 0x04) < 0) | ||
| 175 | goto err; | ||
| 176 | |||
| 177 | return 0; | ||
| 178 | err: | ||
| 179 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 180 | return -EREMOTEIO; | ||
| 181 | |||
| 182 | } | ||
| 183 | |||
| 184 | static int afcex_data_set(struct mb86a16_state *state, | ||
| 185 | unsigned char AFCEX_L, | ||
| 186 | unsigned char AFCEX_H) | ||
| 187 | { | ||
| 188 | if (mb86a16_write(state, MB86A16_AFCEXL, AFCEX_L) < 0) | ||
| 189 | goto err; | ||
| 190 | if (mb86a16_write(state, MB86A16_AFCEXH, AFCEX_H) < 0) | ||
| 191 | goto err; | ||
| 192 | |||
| 193 | return 0; | ||
| 194 | err: | ||
| 195 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 196 | |||
| 197 | return -1; | ||
| 198 | } | ||
| 199 | |||
| 200 | static int afcofs_data_set(struct mb86a16_state *state, | ||
| 201 | unsigned char AFCEX_L, | ||
| 202 | unsigned char AFCEX_H) | ||
| 203 | { | ||
| 204 | if (mb86a16_write(state, 0x58, AFCEX_L) < 0) | ||
| 205 | goto err; | ||
| 206 | if (mb86a16_write(state, 0x59, AFCEX_H) < 0) | ||
| 207 | goto err; | ||
| 208 | |||
| 209 | return 0; | ||
| 210 | err: | ||
| 211 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 212 | return -EREMOTEIO; | ||
| 213 | } | ||
| 214 | |||
| 215 | static int stlp_set(struct mb86a16_state *state, | ||
| 216 | unsigned char STRAS, | ||
| 217 | unsigned char STRBS) | ||
| 218 | { | ||
| 219 | if (mb86a16_write(state, MB86A16_STRFILTCOEF1, (STRBS << 3) | (STRAS)) < 0) | ||
| 220 | goto err; | ||
| 221 | |||
| 222 | return 0; | ||
| 223 | err: | ||
| 224 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 225 | return -EREMOTEIO; | ||
| 226 | } | ||
| 227 | |||
| 228 | static int Vi_set(struct mb86a16_state *state, unsigned char ETH, unsigned char VIA) | ||
| 229 | { | ||
| 230 | if (mb86a16_write(state, MB86A16_VISET2, 0x04) < 0) | ||
| 231 | goto err; | ||
| 232 | if (mb86a16_write(state, MB86A16_VISET3, 0xf5) < 0) | ||
| 233 | goto err; | ||
| 234 | |||
| 235 | return 0; | ||
| 236 | err: | ||
| 237 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 238 | return -EREMOTEIO; | ||
| 239 | } | ||
| 240 | |||
| 241 | static int initial_set(struct mb86a16_state *state) | ||
| 242 | { | ||
| 243 | if (stlp_set(state, 5, 7)) | ||
| 244 | goto err; | ||
| 245 | |||
| 246 | udelay(100); | ||
| 247 | if (afcex_data_set(state, 0, 0)) | ||
| 248 | goto err; | ||
| 249 | |||
| 250 | udelay(100); | ||
| 251 | if (afcofs_data_set(state, 0, 0)) | ||
| 252 | goto err; | ||
| 253 | |||
| 254 | udelay(100); | ||
| 255 | if (mb86a16_write(state, MB86A16_CRLFILTCOEF1, 0x16) < 0) | ||
| 256 | goto err; | ||
| 257 | if (mb86a16_write(state, 0x2f, 0x21) < 0) | ||
| 258 | goto err; | ||
| 259 | if (mb86a16_write(state, MB86A16_VIMAG, 0x38) < 0) | ||
| 260 | goto err; | ||
| 261 | if (mb86a16_write(state, MB86A16_FAGCS1, 0x00) < 0) | ||
| 262 | goto err; | ||
| 263 | if (mb86a16_write(state, MB86A16_FAGCS2, 0x1c) < 0) | ||
| 264 | goto err; | ||
| 265 | if (mb86a16_write(state, MB86A16_FAGCS3, 0x20) < 0) | ||
| 266 | goto err; | ||
| 267 | if (mb86a16_write(state, MB86A16_FAGCS4, 0x1e) < 0) | ||
| 268 | goto err; | ||
| 269 | if (mb86a16_write(state, MB86A16_FAGCS5, 0x23) < 0) | ||
| 270 | goto err; | ||
| 271 | if (mb86a16_write(state, 0x54, 0xff) < 0) | ||
| 272 | goto err; | ||
| 273 | if (mb86a16_write(state, MB86A16_TSOUT, 0x00) < 0) | ||
| 274 | goto err; | ||
| 275 | |||
| 276 | return 0; | ||
| 277 | |||
| 278 | err: | ||
| 279 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 280 | return -EREMOTEIO; | ||
| 281 | } | ||
| 282 | |||
| 283 | static int S01T_set(struct mb86a16_state *state, | ||
| 284 | unsigned char s1t, | ||
| 285 | unsigned s0t) | ||
| 286 | { | ||
| 287 | if (mb86a16_write(state, 0x33, (s1t << 3) | s0t) < 0) | ||
| 288 | goto err; | ||
| 289 | |||
| 290 | return 0; | ||
| 291 | err: | ||
| 292 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 293 | return -EREMOTEIO; | ||
| 294 | } | ||
| 295 | |||
| 296 | |||
| 297 | static int EN_set(struct mb86a16_state *state, | ||
| 298 | int cren, | ||
| 299 | int afcen) | ||
| 300 | { | ||
| 301 | unsigned char val; | ||
| 302 | |||
| 303 | val = 0x7a | (cren << 7) | (afcen << 2); | ||
| 304 | if (mb86a16_write(state, 0x49, val) < 0) | ||
| 305 | goto err; | ||
| 306 | |||
| 307 | return 0; | ||
| 308 | err: | ||
| 309 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 310 | return -EREMOTEIO; | ||
| 311 | } | ||
| 312 | |||
| 313 | static int AFCEXEN_set(struct mb86a16_state *state, | ||
| 314 | int afcexen, | ||
| 315 | int smrt) | ||
| 316 | { | ||
| 317 | unsigned char AFCA ; | ||
| 318 | |||
| 319 | if (smrt > 18875) | ||
| 320 | AFCA = 4; | ||
| 321 | else if (smrt > 9375) | ||
| 322 | AFCA = 3; | ||
| 323 | else if (smrt > 2250) | ||
| 324 | AFCA = 2; | ||
| 325 | else | ||
| 326 | AFCA = 1; | ||
| 327 | |||
| 328 | if (mb86a16_write(state, 0x2a, 0x02 | (afcexen << 5) | (AFCA << 2)) < 0) | ||
| 329 | goto err; | ||
| 330 | |||
| 331 | return 0; | ||
| 332 | |||
| 333 | err: | ||
| 334 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 335 | return -EREMOTEIO; | ||
| 336 | } | ||
| 337 | |||
| 338 | static int DAGC_data_set(struct mb86a16_state *state, | ||
| 339 | unsigned char DAGCA, | ||
| 340 | unsigned char DAGCW) | ||
| 341 | { | ||
| 342 | if (mb86a16_write(state, 0x2d, (DAGCA << 3) | DAGCW) < 0) | ||
| 343 | goto err; | ||
| 344 | |||
| 345 | return 0; | ||
| 346 | |||
| 347 | err: | ||
| 348 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 349 | return -EREMOTEIO; | ||
| 350 | } | ||
| 351 | |||
| 352 | static void smrt_info_get(struct mb86a16_state *state, int rate) | ||
| 353 | { | ||
| 354 | if (rate >= 37501) { | ||
| 355 | state->deci = 0; state->csel = 0; state->rsel = 0; | ||
| 356 | } else if (rate >= 30001) { | ||
| 357 | state->deci = 0; state->csel = 0; state->rsel = 1; | ||
| 358 | } else if (rate >= 26251) { | ||
| 359 | state->deci = 0; state->csel = 1; state->rsel = 0; | ||
| 360 | } else if (rate >= 22501) { | ||
| 361 | state->deci = 0; state->csel = 1; state->rsel = 1; | ||
| 362 | } else if (rate >= 18751) { | ||
| 363 | state->deci = 1; state->csel = 0; state->rsel = 0; | ||
| 364 | } else if (rate >= 15001) { | ||
| 365 | state->deci = 1; state->csel = 0; state->rsel = 1; | ||
| 366 | } else if (rate >= 13126) { | ||
| 367 | state->deci = 1; state->csel = 1; state->rsel = 0; | ||
| 368 | } else if (rate >= 11251) { | ||
| 369 | state->deci = 1; state->csel = 1; state->rsel = 1; | ||
| 370 | } else if (rate >= 9376) { | ||
| 371 | state->deci = 2; state->csel = 0; state->rsel = 0; | ||
| 372 | } else if (rate >= 7501) { | ||
| 373 | state->deci = 2; state->csel = 0; state->rsel = 1; | ||
| 374 | } else if (rate >= 6563) { | ||
| 375 | state->deci = 2; state->csel = 1; state->rsel = 0; | ||
| 376 | } else if (rate >= 5626) { | ||
| 377 | state->deci = 2; state->csel = 1; state->rsel = 1; | ||
| 378 | } else if (rate >= 4688) { | ||
| 379 | state->deci = 3; state->csel = 0; state->rsel = 0; | ||
| 380 | } else if (rate >= 3751) { | ||
| 381 | state->deci = 3; state->csel = 0; state->rsel = 1; | ||
| 382 | } else if (rate >= 3282) { | ||
| 383 | state->deci = 3; state->csel = 1; state->rsel = 0; | ||
| 384 | } else if (rate >= 2814) { | ||
| 385 | state->deci = 3; state->csel = 1; state->rsel = 1; | ||
| 386 | } else if (rate >= 2344) { | ||
| 387 | state->deci = 4; state->csel = 0; state->rsel = 0; | ||
| 388 | } else if (rate >= 1876) { | ||
| 389 | state->deci = 4; state->csel = 0; state->rsel = 1; | ||
| 390 | } else if (rate >= 1641) { | ||
| 391 | state->deci = 4; state->csel = 1; state->rsel = 0; | ||
| 392 | } else if (rate >= 1407) { | ||
| 393 | state->deci = 4; state->csel = 1; state->rsel = 1; | ||
| 394 | } else if (rate >= 1172) { | ||
| 395 | state->deci = 5; state->csel = 0; state->rsel = 0; | ||
| 396 | } else if (rate >= 939) { | ||
| 397 | state->deci = 5; state->csel = 0; state->rsel = 1; | ||
| 398 | } else if (rate >= 821) { | ||
| 399 | state->deci = 5; state->csel = 1; state->rsel = 0; | ||
| 400 | } else { | ||
| 401 | state->deci = 5; state->csel = 1; state->rsel = 1; | ||
| 402 | } | ||
| 403 | |||
| 404 | if (state->csel == 0) | ||
| 405 | state->master_clk = 92000; | ||
| 406 | else | ||
| 407 | state->master_clk = 61333; | ||
| 408 | |||
| 409 | } | ||
| 410 | |||
| 411 | static int signal_det(struct mb86a16_state *state, | ||
| 412 | int smrt, | ||
| 413 | unsigned char *SIG) | ||
| 414 | { | ||
| 415 | |||
| 416 | int ret ; | ||
| 417 | int smrtd ; | ||
| 418 | int wait_sym ; | ||
| 419 | |||
| 420 | u32 wait_t; | ||
| 421 | unsigned char S[3] ; | ||
| 422 | int i ; | ||
| 423 | |||
| 424 | if (*SIG > 45) { | ||
| 425 | if (CNTM_set(state, 2, 1, 2) < 0) { | ||
| 426 | dprintk(verbose, MB86A16_ERROR, 1, "CNTM set Error"); | ||
| 427 | return -1; | ||
| 428 | } | ||
| 429 | wait_sym = 40000; | ||
| 430 | } else { | ||
| 431 | if (CNTM_set(state, 3, 1, 2) < 0) { | ||
| 432 | dprintk(verbose, MB86A16_ERROR, 1, "CNTM set Error"); | ||
| 433 | return -1; | ||
| 434 | } | ||
| 435 | wait_sym = 80000; | ||
| 436 | } | ||
| 437 | for (i = 0; i < 3; i++) { | ||
| 438 | if (i == 0) | ||
| 439 | smrtd = smrt * 98 / 100; | ||
| 440 | else if (i == 1) | ||
| 441 | smrtd = smrt; | ||
| 442 | else | ||
| 443 | smrtd = smrt * 102 / 100; | ||
| 444 | smrt_info_get(state, smrtd); | ||
| 445 | smrt_set(state, smrtd); | ||
| 446 | srst(state); | ||
| 447 | wait_t = (wait_sym + 99 * smrtd / 100) / smrtd; | ||
| 448 | if (wait_t == 0) | ||
| 449 | wait_t = 1; | ||
| 450 | msleep_interruptible(10); | ||
| 451 | if (mb86a16_read(state, 0x37, &(S[i])) != 2) { | ||
| 452 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 453 | return -EREMOTEIO; | ||
| 454 | } | ||
| 455 | } | ||
| 456 | if ((S[1] > S[0] * 112 / 100) && | ||
| 457 | (S[1] > S[2] * 112 / 100)) { | ||
| 458 | |||
| 459 | ret = 1; | ||
| 460 | } else { | ||
| 461 | ret = 0; | ||
| 462 | } | ||
| 463 | *SIG = S[1]; | ||
| 464 | |||
| 465 | if (CNTM_set(state, 0, 1, 2) < 0) { | ||
| 466 | dprintk(verbose, MB86A16_ERROR, 1, "CNTM set Error"); | ||
| 467 | return -1; | ||
| 468 | } | ||
| 469 | |||
| 470 | return ret; | ||
| 471 | } | ||
| 472 | |||
| 473 | static int rf_val_set(struct mb86a16_state *state, | ||
| 474 | int f, | ||
| 475 | int smrt, | ||
| 476 | unsigned char R) | ||
| 477 | { | ||
| 478 | unsigned char C, F, B; | ||
| 479 | int M; | ||
| 480 | unsigned char rf_val[5]; | ||
| 481 | int ack = -1; | ||
| 482 | |||
| 483 | if (smrt > 37750) | ||
| 484 | C = 1; | ||
| 485 | else if (smrt > 18875) | ||
| 486 | C = 2; | ||
| 487 | else if (smrt > 5500) | ||
| 488 | C = 3; | ||
| 489 | else | ||
| 490 | C = 4; | ||
| 491 | |||
| 492 | if (smrt > 30500) | ||
| 493 | F = 3; | ||
| 494 | else if (smrt > 9375) | ||
| 495 | F = 1; | ||
| 496 | else if (smrt > 4625) | ||
| 497 | F = 0; | ||
| 498 | else | ||
| 499 | F = 2; | ||
| 500 | |||
| 501 | if (f < 1060) | ||
| 502 | B = 0; | ||
| 503 | else if (f < 1175) | ||
| 504 | B = 1; | ||
| 505 | else if (f < 1305) | ||
| 506 | B = 2; | ||
| 507 | else if (f < 1435) | ||
| 508 | B = 3; | ||
| 509 | else if (f < 1570) | ||
| 510 | B = 4; | ||
| 511 | else if (f < 1715) | ||
| 512 | B = 5; | ||
| 513 | else if (f < 1845) | ||
| 514 | B = 6; | ||
| 515 | else if (f < 1980) | ||
| 516 | B = 7; | ||
| 517 | else if (f < 2080) | ||
| 518 | B = 8; | ||
| 519 | else | ||
| 520 | B = 9; | ||
| 521 | |||
| 522 | M = f * (1 << R) / 2; | ||
| 523 | |||
| 524 | rf_val[0] = 0x01 | (C << 3) | (F << 1); | ||
| 525 | rf_val[1] = (R << 5) | ((M & 0x1f000) >> 12); | ||
| 526 | rf_val[2] = (M & 0x00ff0) >> 4; | ||
| 527 | rf_val[3] = ((M & 0x0000f) << 4) | B; | ||
| 528 | |||
| 529 | /* Frequency Set */ | ||
| 530 | if (mb86a16_write(state, 0x21, rf_val[0]) < 0) | ||
| 531 | ack = 0; | ||
| 532 | if (mb86a16_write(state, 0x22, rf_val[1]) < 0) | ||
| 533 | ack = 0; | ||
| 534 | if (mb86a16_write(state, 0x23, rf_val[2]) < 0) | ||
| 535 | ack = 0; | ||
| 536 | if (mb86a16_write(state, 0x24, rf_val[3]) < 0) | ||
| 537 | ack = 0; | ||
| 538 | if (mb86a16_write(state, 0x25, 0x01) < 0) | ||
| 539 | ack = 0; | ||
| 540 | if (ack == 0) { | ||
| 541 | dprintk(verbose, MB86A16_ERROR, 1, "RF Setup - I2C transfer error"); | ||
| 542 | return -EREMOTEIO; | ||
| 543 | } | ||
| 544 | |||
| 545 | return 0; | ||
| 546 | } | ||
| 547 | |||
| 548 | static int afcerr_chk(struct mb86a16_state *state) | ||
| 549 | { | ||
| 550 | unsigned char AFCM_L, AFCM_H ; | ||
| 551 | int AFCM ; | ||
| 552 | int afcm, afcerr ; | ||
| 553 | |||
| 554 | if (mb86a16_read(state, 0x0e, &AFCM_L) != 2) | ||
| 555 | goto err; | ||
| 556 | if (mb86a16_read(state, 0x0f, &AFCM_H) != 2) | ||
| 557 | goto err; | ||
| 558 | |||
| 559 | AFCM = (AFCM_H << 8) + AFCM_L; | ||
| 560 | |||
| 561 | if (AFCM > 2048) | ||
| 562 | afcm = AFCM - 4096; | ||
| 563 | else | ||
| 564 | afcm = AFCM; | ||
| 565 | afcerr = afcm * state->master_clk / 8192; | ||
| 566 | |||
| 567 | return afcerr; | ||
| 568 | |||
| 569 | err: | ||
| 570 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 571 | return -EREMOTEIO; | ||
| 572 | } | ||
| 573 | |||
| 574 | static int dagcm_val_get(struct mb86a16_state *state) | ||
| 575 | { | ||
| 576 | int DAGCM; | ||
| 577 | unsigned char DAGCM_H, DAGCM_L; | ||
| 578 | |||
| 579 | if (mb86a16_read(state, 0x45, &DAGCM_L) != 2) | ||
| 580 | goto err; | ||
| 581 | if (mb86a16_read(state, 0x46, &DAGCM_H) != 2) | ||
| 582 | goto err; | ||
| 583 | |||
| 584 | DAGCM = (DAGCM_H << 8) + DAGCM_L; | ||
| 585 | |||
| 586 | return DAGCM; | ||
| 587 | |||
| 588 | err: | ||
| 589 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 590 | return -EREMOTEIO; | ||
| 591 | } | ||
| 592 | |||
| 593 | static int mb86a16_read_status(struct dvb_frontend *fe, fe_status_t *status) | ||
| 594 | { | ||
| 595 | u8 stat, stat2; | ||
| 596 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 597 | |||
| 598 | *status = 0; | ||
| 599 | |||
| 600 | if (mb86a16_read(state, MB86A16_SIG1, &stat) != 2) | ||
| 601 | goto err; | ||
| 602 | if (mb86a16_read(state, MB86A16_SIG2, &stat2) != 2) | ||
| 603 | goto err; | ||
| 604 | if ((stat > 25) && (stat2 > 25)) | ||
| 605 | *status |= FE_HAS_SIGNAL; | ||
| 606 | if ((stat > 45) && (stat2 > 45)) | ||
| 607 | *status |= FE_HAS_CARRIER; | ||
| 608 | |||
| 609 | if (mb86a16_read(state, MB86A16_STATUS, &stat) != 2) | ||
| 610 | goto err; | ||
| 611 | |||
| 612 | if (stat & 0x01) | ||
| 613 | *status |= FE_HAS_SYNC; | ||
| 614 | if (stat & 0x01) | ||
| 615 | *status |= FE_HAS_VITERBI; | ||
| 616 | |||
| 617 | if (mb86a16_read(state, MB86A16_FRAMESYNC, &stat) != 2) | ||
| 618 | goto err; | ||
| 619 | |||
| 620 | if ((stat & 0x0f) && (*status & FE_HAS_VITERBI)) | ||
| 621 | *status |= FE_HAS_LOCK; | ||
| 622 | |||
| 623 | return 0; | ||
| 624 | |||
| 625 | err: | ||
| 626 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 627 | return -EREMOTEIO; | ||
| 628 | } | ||
| 629 | |||
| 630 | static int sync_chk(struct mb86a16_state *state, | ||
| 631 | unsigned char *VIRM) | ||
| 632 | { | ||
| 633 | unsigned char val; | ||
| 634 | int sync; | ||
| 635 | |||
| 636 | if (mb86a16_read(state, 0x0d, &val) != 2) | ||
| 637 | goto err; | ||
| 638 | |||
| 639 | dprintk(verbose, MB86A16_INFO, 1, "Status = %02x,", val); | ||
| 640 | sync = val & 0x01; | ||
| 641 | *VIRM = (val & 0x1c) >> 2; | ||
| 642 | |||
| 643 | return sync; | ||
| 644 | err: | ||
| 645 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 646 | return -EREMOTEIO; | ||
| 647 | |||
| 648 | } | ||
| 649 | |||
| 650 | static int freqerr_chk(struct mb86a16_state *state, | ||
| 651 | int fTP, | ||
| 652 | int smrt, | ||
| 653 | int unit) | ||
| 654 | { | ||
| 655 | unsigned char CRM, AFCML, AFCMH; | ||
| 656 | unsigned char temp1, temp2, temp3; | ||
| 657 | int crm, afcm, AFCM; | ||
| 658 | int crrerr, afcerr; /* kHz */ | ||
| 659 | int frqerr; /* MHz */ | ||
| 660 | int afcen, afcexen = 0; | ||
| 661 | int R, M, fOSC, fOSC_OFS; | ||
| 662 | |||
| 663 | if (mb86a16_read(state, 0x43, &CRM) != 2) | ||
| 664 | goto err; | ||
| 665 | |||
| 666 | if (CRM > 127) | ||
| 667 | crm = CRM - 256; | ||
| 668 | else | ||
| 669 | crm = CRM; | ||
| 670 | |||
| 671 | crrerr = smrt * crm / 256; | ||
| 672 | if (mb86a16_read(state, 0x49, &temp1) != 2) | ||
| 673 | goto err; | ||
| 674 | |||
| 675 | afcen = (temp1 & 0x04) >> 2; | ||
| 676 | if (afcen == 0) { | ||
| 677 | if (mb86a16_read(state, 0x2a, &temp1) != 2) | ||
| 678 | goto err; | ||
| 679 | afcexen = (temp1 & 0x20) >> 5; | ||
| 680 | } | ||
| 681 | |||
| 682 | if (afcen == 1) { | ||
| 683 | if (mb86a16_read(state, 0x0e, &AFCML) != 2) | ||
| 684 | goto err; | ||
| 685 | if (mb86a16_read(state, 0x0f, &AFCMH) != 2) | ||
| 686 | goto err; | ||
| 687 | } else if (afcexen == 1) { | ||
| 688 | if (mb86a16_read(state, 0x2b, &AFCML) != 2) | ||
| 689 | goto err; | ||
| 690 | if (mb86a16_read(state, 0x2c, &AFCMH) != 2) | ||
| 691 | goto err; | ||
| 692 | } | ||
| 693 | if ((afcen == 1) || (afcexen == 1)) { | ||
| 694 | smrt_info_get(state, smrt); | ||
| 695 | AFCM = ((AFCMH & 0x01) << 8) + AFCML; | ||
| 696 | if (AFCM > 255) | ||
| 697 | afcm = AFCM - 512; | ||
| 698 | else | ||
| 699 | afcm = AFCM; | ||
| 700 | |||
| 701 | afcerr = afcm * state->master_clk / 8192; | ||
| 702 | } else | ||
| 703 | afcerr = 0; | ||
| 704 | |||
| 705 | if (mb86a16_read(state, 0x22, &temp1) != 2) | ||
| 706 | goto err; | ||
| 707 | if (mb86a16_read(state, 0x23, &temp2) != 2) | ||
| 708 | goto err; | ||
| 709 | if (mb86a16_read(state, 0x24, &temp3) != 2) | ||
| 710 | goto err; | ||
| 711 | |||
| 712 | R = (temp1 & 0xe0) >> 5; | ||
| 713 | M = ((temp1 & 0x1f) << 12) + (temp2 << 4) + (temp3 >> 4); | ||
| 714 | if (R == 0) | ||
| 715 | fOSC = 2 * M; | ||
| 716 | else | ||
| 717 | fOSC = M; | ||
| 718 | |||
| 719 | fOSC_OFS = fOSC - fTP; | ||
| 720 | |||
| 721 | if (unit == 0) { /* MHz */ | ||
| 722 | if (crrerr + afcerr + fOSC_OFS * 1000 >= 0) | ||
| 723 | frqerr = (crrerr + afcerr + fOSC_OFS * 1000 + 500) / 1000; | ||
| 724 | else | ||
| 725 | frqerr = (crrerr + afcerr + fOSC_OFS * 1000 - 500) / 1000; | ||
| 726 | } else { /* kHz */ | ||
| 727 | frqerr = crrerr + afcerr + fOSC_OFS * 1000; | ||
| 728 | } | ||
| 729 | |||
| 730 | return frqerr; | ||
| 731 | err: | ||
| 732 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 733 | return -EREMOTEIO; | ||
| 734 | } | ||
| 735 | |||
| 736 | static unsigned char vco_dev_get(struct mb86a16_state *state, int smrt) | ||
| 737 | { | ||
| 738 | unsigned char R; | ||
| 739 | |||
| 740 | if (smrt > 9375) | ||
| 741 | R = 0; | ||
| 742 | else | ||
| 743 | R = 1; | ||
| 744 | |||
| 745 | return R; | ||
| 746 | } | ||
| 747 | |||
| 748 | static void swp_info_get(struct mb86a16_state *state, | ||
| 749 | int fOSC_start, | ||
| 750 | int smrt, | ||
| 751 | int v, int R, | ||
| 752 | int swp_ofs, | ||
| 753 | int *fOSC, | ||
| 754 | int *afcex_freq, | ||
| 755 | unsigned char *AFCEX_L, | ||
| 756 | unsigned char *AFCEX_H) | ||
| 757 | { | ||
| 758 | int AFCEX ; | ||
| 759 | int crnt_swp_freq ; | ||
| 760 | |||
| 761 | crnt_swp_freq = fOSC_start * 1000 + v * swp_ofs; | ||
| 762 | |||
| 763 | if (R == 0) | ||
| 764 | *fOSC = (crnt_swp_freq + 1000) / 2000 * 2; | ||
| 765 | else | ||
| 766 | *fOSC = (crnt_swp_freq + 500) / 1000; | ||
| 767 | |||
| 768 | if (*fOSC >= crnt_swp_freq) | ||
| 769 | *afcex_freq = *fOSC * 1000 - crnt_swp_freq; | ||
| 770 | else | ||
| 771 | *afcex_freq = crnt_swp_freq - *fOSC * 1000; | ||
| 772 | |||
| 773 | AFCEX = *afcex_freq * 8192 / state->master_clk; | ||
| 774 | *AFCEX_L = AFCEX & 0x00ff; | ||
| 775 | *AFCEX_H = (AFCEX & 0x0f00) >> 8; | ||
| 776 | } | ||
| 777 | |||
| 778 | |||
| 779 | static int swp_freq_calcuation(struct mb86a16_state *state, int i, int v, int *V, int vmax, int vmin, | ||
| 780 | int SIGMIN, int fOSC, int afcex_freq, int swp_ofs, unsigned char *SIG1) | ||
| 781 | { | ||
| 782 | int swp_freq ; | ||
| 783 | |||
| 784 | if ((i % 2 == 1) && (v <= vmax)) { | ||
| 785 | /* positive v (case 1) */ | ||
| 786 | if ((v - 1 == vmin) && | ||
| 787 | (*(V + 30 + v) >= 0) && | ||
| 788 | (*(V + 30 + v - 1) >= 0) && | ||
| 789 | (*(V + 30 + v - 1) > *(V + 30 + v)) && | ||
| 790 | (*(V + 30 + v - 1) > SIGMIN)) { | ||
| 791 | |||
| 792 | swp_freq = fOSC * 1000 + afcex_freq - swp_ofs; | ||
| 793 | *SIG1 = *(V + 30 + v - 1); | ||
| 794 | } else if ((v == vmax) && | ||
| 795 | (*(V + 30 + v) >= 0) && | ||
| 796 | (*(V + 30 + v - 1) >= 0) && | ||
| 797 | (*(V + 30 + v) > *(V + 30 + v - 1)) && | ||
| 798 | (*(V + 30 + v) > SIGMIN)) { | ||
| 799 | /* (case 2) */ | ||
| 800 | swp_freq = fOSC * 1000 + afcex_freq; | ||
| 801 | *SIG1 = *(V + 30 + v); | ||
| 802 | } else if ((*(V + 30 + v) > 0) && | ||
| 803 | (*(V + 30 + v - 1) > 0) && | ||
| 804 | (*(V + 30 + v - 2) > 0) && | ||
| 805 | (*(V + 30 + v - 3) > 0) && | ||
| 806 | (*(V + 30 + v - 1) > *(V + 30 + v)) && | ||
| 807 | (*(V + 30 + v - 2) > *(V + 30 + v - 3)) && | ||
| 808 | ((*(V + 30 + v - 1) > SIGMIN) || | ||
| 809 | (*(V + 30 + v - 2) > SIGMIN))) { | ||
| 810 | /* (case 3) */ | ||
| 811 | if (*(V + 30 + v - 1) >= *(V + 30 + v - 2)) { | ||
| 812 | swp_freq = fOSC * 1000 + afcex_freq - swp_ofs; | ||
| 813 | *SIG1 = *(V + 30 + v - 1); | ||
| 814 | } else { | ||
| 815 | swp_freq = fOSC * 1000 + afcex_freq - swp_ofs * 2; | ||
| 816 | *SIG1 = *(V + 30 + v - 2); | ||
| 817 | } | ||
| 818 | } else if ((v == vmax) && | ||
| 819 | (*(V + 30 + v) >= 0) && | ||
| 820 | (*(V + 30 + v - 1) >= 0) && | ||
| 821 | (*(V + 30 + v - 2) >= 0) && | ||
| 822 | (*(V + 30 + v) > *(V + 30 + v - 2)) && | ||
| 823 | (*(V + 30 + v - 1) > *(V + 30 + v - 2)) && | ||
| 824 | ((*(V + 30 + v) > SIGMIN) || | ||
| 825 | (*(V + 30 + v - 1) > SIGMIN))) { | ||
| 826 | /* (case 4) */ | ||
| 827 | if (*(V + 30 + v) >= *(V + 30 + v - 1)) { | ||
| 828 | swp_freq = fOSC * 1000 + afcex_freq; | ||
| 829 | *SIG1 = *(V + 30 + v); | ||
| 830 | } else { | ||
| 831 | swp_freq = fOSC * 1000 + afcex_freq - swp_ofs; | ||
| 832 | *SIG1 = *(V + 30 + v - 1); | ||
| 833 | } | ||
| 834 | } else { | ||
| 835 | swp_freq = -1 ; | ||
| 836 | } | ||
| 837 | } else if ((i % 2 == 0) && (v >= vmin)) { | ||
| 838 | /* Negative v (case 1) */ | ||
| 839 | if ((*(V + 30 + v) > 0) && | ||
| 840 | (*(V + 30 + v + 1) > 0) && | ||
| 841 | (*(V + 30 + v + 2) > 0) && | ||
| 842 | (*(V + 30 + v + 1) > *(V + 30 + v)) && | ||
| 843 | (*(V + 30 + v + 1) > *(V + 30 + v + 2)) && | ||
| 844 | (*(V + 30 + v + 1) > SIGMIN)) { | ||
| 845 | |||
| 846 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs; | ||
| 847 | *SIG1 = *(V + 30 + v + 1); | ||
| 848 | } else if ((v + 1 == vmax) && | ||
| 849 | (*(V + 30 + v) >= 0) && | ||
| 850 | (*(V + 30 + v + 1) >= 0) && | ||
| 851 | (*(V + 30 + v + 1) > *(V + 30 + v)) && | ||
| 852 | (*(V + 30 + v + 1) > SIGMIN)) { | ||
| 853 | /* (case 2) */ | ||
| 854 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs; | ||
| 855 | *SIG1 = *(V + 30 + v); | ||
| 856 | } else if ((v == vmin) && | ||
| 857 | (*(V + 30 + v) > 0) && | ||
| 858 | (*(V + 30 + v + 1) > 0) && | ||
| 859 | (*(V + 30 + v + 2) > 0) && | ||
| 860 | (*(V + 30 + v) > *(V + 30 + v + 1)) && | ||
| 861 | (*(V + 30 + v) > *(V + 30 + v + 2)) && | ||
| 862 | (*(V + 30 + v) > SIGMIN)) { | ||
| 863 | /* (case 3) */ | ||
| 864 | swp_freq = fOSC * 1000 + afcex_freq; | ||
| 865 | *SIG1 = *(V + 30 + v); | ||
| 866 | } else if ((*(V + 30 + v) >= 0) && | ||
| 867 | (*(V + 30 + v + 1) >= 0) && | ||
| 868 | (*(V + 30 + v + 2) >= 0) && | ||
| 869 | (*(V + 30 + v + 3) >= 0) && | ||
| 870 | (*(V + 30 + v + 1) > *(V + 30 + v)) && | ||
| 871 | (*(V + 30 + v + 2) > *(V + 30 + v + 3)) && | ||
| 872 | ((*(V + 30 + v + 1) > SIGMIN) || | ||
| 873 | (*(V + 30 + v + 2) > SIGMIN))) { | ||
| 874 | /* (case 4) */ | ||
| 875 | if (*(V + 30 + v + 1) >= *(V + 30 + v + 2)) { | ||
| 876 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs; | ||
| 877 | *SIG1 = *(V + 30 + v + 1); | ||
| 878 | } else { | ||
| 879 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs * 2; | ||
| 880 | *SIG1 = *(V + 30 + v + 2); | ||
| 881 | } | ||
| 882 | } else if ((*(V + 30 + v) >= 0) && | ||
| 883 | (*(V + 30 + v + 1) >= 0) && | ||
| 884 | (*(V + 30 + v + 2) >= 0) && | ||
| 885 | (*(V + 30 + v + 3) >= 0) && | ||
| 886 | (*(V + 30 + v) > *(V + 30 + v + 2)) && | ||
| 887 | (*(V + 30 + v + 1) > *(V + 30 + v + 2)) && | ||
| 888 | (*(V + 30 + v) > *(V + 30 + v + 3)) && | ||
| 889 | (*(V + 30 + v + 1) > *(V + 30 + v + 3)) && | ||
| 890 | ((*(V + 30 + v) > SIGMIN) || | ||
| 891 | (*(V + 30 + v + 1) > SIGMIN))) { | ||
| 892 | /* (case 5) */ | ||
| 893 | if (*(V + 30 + v) >= *(V + 30 + v + 1)) { | ||
| 894 | swp_freq = fOSC * 1000 + afcex_freq; | ||
| 895 | *SIG1 = *(V + 30 + v); | ||
| 896 | } else { | ||
| 897 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs; | ||
| 898 | *SIG1 = *(V + 30 + v + 1); | ||
| 899 | } | ||
| 900 | } else if ((v + 2 == vmin) && | ||
| 901 | (*(V + 30 + v) >= 0) && | ||
| 902 | (*(V + 30 + v + 1) >= 0) && | ||
| 903 | (*(V + 30 + v + 2) >= 0) && | ||
| 904 | (*(V + 30 + v + 1) > *(V + 30 + v)) && | ||
| 905 | (*(V + 30 + v + 2) > *(V + 30 + v)) && | ||
| 906 | ((*(V + 30 + v + 1) > SIGMIN) || | ||
| 907 | (*(V + 30 + v + 2) > SIGMIN))) { | ||
| 908 | /* (case 6) */ | ||
| 909 | if (*(V + 30 + v + 1) >= *(V + 30 + v + 2)) { | ||
| 910 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs; | ||
| 911 | *SIG1 = *(V + 30 + v + 1); | ||
| 912 | } else { | ||
| 913 | swp_freq = fOSC * 1000 + afcex_freq + swp_ofs * 2; | ||
| 914 | *SIG1 = *(V + 30 + v + 2); | ||
| 915 | } | ||
| 916 | } else if ((vmax == 0) && (vmin == 0) && (*(V + 30 + v) > SIGMIN)) { | ||
| 917 | swp_freq = fOSC * 1000; | ||
| 918 | *SIG1 = *(V + 30 + v); | ||
| 919 | } else | ||
| 920 | swp_freq = -1; | ||
| 921 | } else | ||
| 922 | swp_freq = -1; | ||
| 923 | |||
| 924 | return swp_freq; | ||
| 925 | } | ||
| 926 | |||
| 927 | static void swp_info_get2(struct mb86a16_state *state, | ||
| 928 | int smrt, | ||
| 929 | int R, | ||
| 930 | int swp_freq, | ||
| 931 | int *afcex_freq, | ||
| 932 | int *fOSC, | ||
| 933 | unsigned char *AFCEX_L, | ||
| 934 | unsigned char *AFCEX_H) | ||
| 935 | { | ||
| 936 | int AFCEX ; | ||
| 937 | |||
| 938 | if (R == 0) | ||
| 939 | *fOSC = (swp_freq + 1000) / 2000 * 2; | ||
| 940 | else | ||
| 941 | *fOSC = (swp_freq + 500) / 1000; | ||
| 942 | |||
| 943 | if (*fOSC >= swp_freq) | ||
| 944 | *afcex_freq = *fOSC * 1000 - swp_freq; | ||
| 945 | else | ||
| 946 | *afcex_freq = swp_freq - *fOSC * 1000; | ||
| 947 | |||
| 948 | AFCEX = *afcex_freq * 8192 / state->master_clk; | ||
| 949 | *AFCEX_L = AFCEX & 0x00ff; | ||
| 950 | *AFCEX_H = (AFCEX & 0x0f00) >> 8; | ||
| 951 | } | ||
| 952 | |||
| 953 | static void afcex_info_get(struct mb86a16_state *state, | ||
| 954 | int afcex_freq, | ||
| 955 | unsigned char *AFCEX_L, | ||
| 956 | unsigned char *AFCEX_H) | ||
| 957 | { | ||
| 958 | int AFCEX ; | ||
| 959 | |||
| 960 | AFCEX = afcex_freq * 8192 / state->master_clk; | ||
| 961 | *AFCEX_L = AFCEX & 0x00ff; | ||
| 962 | *AFCEX_H = (AFCEX & 0x0f00) >> 8; | ||
| 963 | } | ||
| 964 | |||
| 965 | static int SEQ_set(struct mb86a16_state *state, unsigned char loop) | ||
| 966 | { | ||
| 967 | /* SLOCK0 = 0 */ | ||
| 968 | if (mb86a16_write(state, 0x32, 0x02 | (loop << 2)) < 0) { | ||
| 969 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 970 | return -EREMOTEIO; | ||
| 971 | } | ||
| 972 | |||
| 973 | return 0; | ||
| 974 | } | ||
| 975 | |||
| 976 | static int iq_vt_set(struct mb86a16_state *state, unsigned char IQINV) | ||
| 977 | { | ||
| 978 | /* Viterbi Rate, IQ Settings */ | ||
| 979 | if (mb86a16_write(state, 0x06, 0xdf | (IQINV << 5)) < 0) { | ||
| 980 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 981 | return -EREMOTEIO; | ||
| 982 | } | ||
| 983 | |||
| 984 | return 0; | ||
| 985 | } | ||
| 986 | |||
| 987 | static int FEC_srst(struct mb86a16_state *state) | ||
| 988 | { | ||
| 989 | if (mb86a16_write(state, MB86A16_RESET, 0x02) < 0) { | ||
| 990 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 991 | return -EREMOTEIO; | ||
| 992 | } | ||
| 993 | |||
| 994 | return 0; | ||
| 995 | } | ||
| 996 | |||
| 997 | static int S2T_set(struct mb86a16_state *state, unsigned char S2T) | ||
| 998 | { | ||
| 999 | if (mb86a16_write(state, 0x34, 0x70 | S2T) < 0) { | ||
| 1000 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1001 | return -EREMOTEIO; | ||
| 1002 | } | ||
| 1003 | |||
| 1004 | return 0; | ||
| 1005 | } | ||
| 1006 | |||
| 1007 | static int S45T_set(struct mb86a16_state *state, unsigned char S4T, unsigned char S5T) | ||
| 1008 | { | ||
| 1009 | if (mb86a16_write(state, 0x35, 0x00 | (S5T << 4) | S4T) < 0) { | ||
| 1010 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1011 | return -EREMOTEIO; | ||
| 1012 | } | ||
| 1013 | |||
| 1014 | return 0; | ||
| 1015 | } | ||
| 1016 | |||
| 1017 | |||
| 1018 | static int mb86a16_set_fe(struct mb86a16_state *state) | ||
| 1019 | { | ||
| 1020 | u8 agcval, cnmval; | ||
| 1021 | |||
| 1022 | int i, j; | ||
| 1023 | int fOSC = 0; | ||
| 1024 | int fOSC_start = 0; | ||
| 1025 | int wait_t; | ||
| 1026 | int fcp; | ||
| 1027 | int swp_ofs; | ||
| 1028 | int V[60]; | ||
| 1029 | u8 SIG1MIN; | ||
| 1030 | |||
| 1031 | unsigned char CREN, AFCEN, AFCEXEN; | ||
| 1032 | unsigned char SIG1; | ||
| 1033 | unsigned char TIMINT1, TIMINT2, TIMEXT; | ||
| 1034 | unsigned char S0T, S1T; | ||
| 1035 | unsigned char S2T; | ||
| 1036 | /* unsigned char S2T, S3T; */ | ||
| 1037 | unsigned char S4T, S5T; | ||
| 1038 | unsigned char AFCEX_L, AFCEX_H; | ||
| 1039 | unsigned char R; | ||
| 1040 | unsigned char VIRM; | ||
| 1041 | unsigned char ETH, VIA; | ||
| 1042 | unsigned char junk; | ||
| 1043 | |||
| 1044 | int loop; | ||
| 1045 | int ftemp; | ||
| 1046 | int v, vmax, vmin; | ||
| 1047 | int vmax_his, vmin_his; | ||
| 1048 | int swp_freq, prev_swp_freq[20]; | ||
| 1049 | int prev_freq_num; | ||
| 1050 | int signal_dupl; | ||
| 1051 | int afcex_freq; | ||
| 1052 | int signal; | ||
| 1053 | int afcerr; | ||
| 1054 | int temp_freq, delta_freq; | ||
| 1055 | int dagcm[4]; | ||
| 1056 | int smrt_d; | ||
| 1057 | /* int freq_err; */ | ||
| 1058 | int n; | ||
| 1059 | int ret = -1; | ||
| 1060 | int sync; | ||
| 1061 | |||
| 1062 | dprintk(verbose, MB86A16_INFO, 1, "freq=%d Mhz, symbrt=%d Ksps", state->frequency, state->srate); | ||
| 1063 | |||
| 1064 | fcp = 3000; | ||
| 1065 | swp_ofs = state->srate / 4; | ||
| 1066 | |||
| 1067 | for (i = 0; i < 60; i++) | ||
| 1068 | V[i] = -1; | ||
| 1069 | |||
| 1070 | for (i = 0; i < 20; i++) | ||
| 1071 | prev_swp_freq[i] = 0; | ||
| 1072 | |||
| 1073 | SIG1MIN = 25; | ||
| 1074 | |||
| 1075 | for (n = 0; ((n < 3) && (ret == -1)); n++) { | ||
| 1076 | SEQ_set(state, 0); | ||
| 1077 | iq_vt_set(state, 0); | ||
| 1078 | |||
| 1079 | CREN = 0; | ||
| 1080 | AFCEN = 0; | ||
| 1081 | AFCEXEN = 1; | ||
| 1082 | TIMINT1 = 0; | ||
| 1083 | TIMINT2 = 1; | ||
| 1084 | TIMEXT = 2; | ||
| 1085 | S1T = 0; | ||
| 1086 | S0T = 0; | ||
| 1087 | |||
| 1088 | if (initial_set(state) < 0) { | ||
| 1089 | dprintk(verbose, MB86A16_ERROR, 1, "initial set failed"); | ||
| 1090 | return -1; | ||
| 1091 | } | ||
| 1092 | if (DAGC_data_set(state, 3, 2) < 0) { | ||
| 1093 | dprintk(verbose, MB86A16_ERROR, 1, "DAGC data set error"); | ||
| 1094 | return -1; | ||
| 1095 | } | ||
| 1096 | if (EN_set(state, CREN, AFCEN) < 0) { | ||
| 1097 | dprintk(verbose, MB86A16_ERROR, 1, "EN set error"); | ||
| 1098 | return -1; /* (0, 0) */ | ||
| 1099 | } | ||
| 1100 | if (AFCEXEN_set(state, AFCEXEN, state->srate) < 0) { | ||
| 1101 | dprintk(verbose, MB86A16_ERROR, 1, "AFCEXEN set error"); | ||
| 1102 | return -1; /* (1, smrt) = (1, symbolrate) */ | ||
| 1103 | } | ||
| 1104 | if (CNTM_set(state, TIMINT1, TIMINT2, TIMEXT) < 0) { | ||
| 1105 | dprintk(verbose, MB86A16_ERROR, 1, "CNTM set error"); | ||
| 1106 | return -1; /* (0, 1, 2) */ | ||
| 1107 | } | ||
| 1108 | if (S01T_set(state, S1T, S0T) < 0) { | ||
| 1109 | dprintk(verbose, MB86A16_ERROR, 1, "S01T set error"); | ||
| 1110 | return -1; /* (0, 0) */ | ||
| 1111 | } | ||
| 1112 | smrt_info_get(state, state->srate); | ||
| 1113 | if (smrt_set(state, state->srate) < 0) { | ||
| 1114 | dprintk(verbose, MB86A16_ERROR, 1, "smrt info get error"); | ||
| 1115 | return -1; | ||
| 1116 | } | ||
| 1117 | |||
| 1118 | R = vco_dev_get(state, state->srate); | ||
| 1119 | if (R == 1) | ||
| 1120 | fOSC_start = state->frequency; | ||
| 1121 | |||
| 1122 | else if (R == 0) { | ||
| 1123 | if (state->frequency % 2 == 0) { | ||
| 1124 | fOSC_start = state->frequency; | ||
| 1125 | } else { | ||
| 1126 | fOSC_start = state->frequency + 1; | ||
| 1127 | if (fOSC_start > 2150) | ||
| 1128 | fOSC_start = state->frequency - 1; | ||
| 1129 | } | ||
| 1130 | } | ||
| 1131 | loop = 1; | ||
| 1132 | ftemp = fOSC_start * 1000; | ||
| 1133 | vmax = 0 ; | ||
| 1134 | while (loop == 1) { | ||
| 1135 | ftemp = ftemp + swp_ofs; | ||
| 1136 | vmax++; | ||
| 1137 | |||
| 1138 | /* Upper bound */ | ||
| 1139 | if (ftemp > 2150000) { | ||
| 1140 | loop = 0; | ||
| 1141 | vmax--; | ||
| 1142 | } else { | ||
| 1143 | if ((ftemp == 2150000) || | ||
| 1144 | (ftemp - state->frequency * 1000 >= fcp + state->srate / 4)) | ||
| 1145 | loop = 0; | ||
| 1146 | } | ||
| 1147 | } | ||
| 1148 | |||
| 1149 | loop = 1; | ||
| 1150 | ftemp = fOSC_start * 1000; | ||
| 1151 | vmin = 0 ; | ||
| 1152 | while (loop == 1) { | ||
| 1153 | ftemp = ftemp - swp_ofs; | ||
| 1154 | vmin--; | ||
| 1155 | |||
| 1156 | /* Lower bound */ | ||
| 1157 | if (ftemp < 950000) { | ||
| 1158 | loop = 0; | ||
| 1159 | vmin++; | ||
| 1160 | } else { | ||
| 1161 | if ((ftemp == 950000) || | ||
| 1162 | (state->frequency * 1000 - ftemp >= fcp + state->srate / 4)) | ||
| 1163 | loop = 0; | ||
| 1164 | } | ||
| 1165 | } | ||
| 1166 | |||
| 1167 | wait_t = (8000 + state->srate / 2) / state->srate; | ||
| 1168 | if (wait_t == 0) | ||
| 1169 | wait_t = 1; | ||
| 1170 | |||
| 1171 | i = 0; | ||
| 1172 | j = 0; | ||
| 1173 | prev_freq_num = 0; | ||
| 1174 | loop = 1; | ||
| 1175 | signal = 0; | ||
| 1176 | vmax_his = 0; | ||
| 1177 | vmin_his = 0; | ||
| 1178 | v = 0; | ||
| 1179 | |||
| 1180 | while (loop == 1) { | ||
| 1181 | swp_info_get(state, fOSC_start, state->srate, | ||
| 1182 | v, R, swp_ofs, &fOSC, | ||
| 1183 | &afcex_freq, &AFCEX_L, &AFCEX_H); | ||
| 1184 | |||
| 1185 | udelay(100); | ||
| 1186 | if (rf_val_set(state, fOSC, state->srate, R) < 0) { | ||
| 1187 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set error"); | ||
| 1188 | return -1; | ||
| 1189 | } | ||
| 1190 | udelay(100); | ||
| 1191 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1192 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set error"); | ||
| 1193 | return -1; | ||
| 1194 | } | ||
| 1195 | if (srst(state) < 0) { | ||
| 1196 | dprintk(verbose, MB86A16_ERROR, 1, "srst error"); | ||
| 1197 | return -1; | ||
| 1198 | } | ||
| 1199 | msleep_interruptible(wait_t); | ||
| 1200 | |||
| 1201 | if (mb86a16_read(state, 0x37, &SIG1) != 2) { | ||
| 1202 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1203 | return -1; | ||
| 1204 | } | ||
| 1205 | V[30 + v] = SIG1 ; | ||
| 1206 | swp_freq = swp_freq_calcuation(state, i, v, V, vmax, vmin, | ||
| 1207 | SIG1MIN, fOSC, afcex_freq, | ||
| 1208 | swp_ofs, &SIG1); /* changed */ | ||
| 1209 | |||
| 1210 | signal_dupl = 0; | ||
| 1211 | for (j = 0; j < prev_freq_num; j++) { | ||
| 1212 | if ((ABS(prev_swp_freq[j] - swp_freq)) < (swp_ofs * 3 / 2)) { | ||
| 1213 | signal_dupl = 1; | ||
| 1214 | dprintk(verbose, MB86A16_INFO, 1, "Probably Duplicate Signal, j = %d", j); | ||
| 1215 | } | ||
| 1216 | } | ||
| 1217 | if ((signal_dupl == 0) && (swp_freq > 0) && (ABS(swp_freq - state->frequency * 1000) < fcp + state->srate / 6)) { | ||
| 1218 | dprintk(verbose, MB86A16_DEBUG, 1, "------ Signal detect ------ [swp_freq=[%07d, srate=%05d]]", swp_freq, state->srate); | ||
| 1219 | prev_swp_freq[prev_freq_num] = swp_freq; | ||
| 1220 | prev_freq_num++; | ||
| 1221 | swp_info_get2(state, state->srate, R, swp_freq, | ||
| 1222 | &afcex_freq, &fOSC, | ||
| 1223 | &AFCEX_L, &AFCEX_H); | ||
| 1224 | |||
| 1225 | if (rf_val_set(state, fOSC, state->srate, R) < 0) { | ||
| 1226 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set error"); | ||
| 1227 | return -1; | ||
| 1228 | } | ||
| 1229 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1230 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set error"); | ||
| 1231 | return -1; | ||
| 1232 | } | ||
| 1233 | signal = signal_det(state, state->srate, &SIG1); | ||
| 1234 | if (signal == 1) { | ||
| 1235 | dprintk(verbose, MB86A16_ERROR, 1, "***** Signal Found *****"); | ||
| 1236 | loop = 0; | ||
| 1237 | } else { | ||
| 1238 | dprintk(verbose, MB86A16_ERROR, 1, "!!!!! No signal !!!!!, try again..."); | ||
| 1239 | smrt_info_get(state, state->srate); | ||
| 1240 | if (smrt_set(state, state->srate) < 0) { | ||
| 1241 | dprintk(verbose, MB86A16_ERROR, 1, "smrt set error"); | ||
| 1242 | return -1; | ||
| 1243 | } | ||
| 1244 | } | ||
| 1245 | } | ||
| 1246 | if (v > vmax) | ||
| 1247 | vmax_his = 1 ; | ||
| 1248 | if (v < vmin) | ||
| 1249 | vmin_his = 1 ; | ||
| 1250 | i++; | ||
| 1251 | |||
| 1252 | if ((i % 2 == 1) && (vmax_his == 1)) | ||
| 1253 | i++; | ||
| 1254 | if ((i % 2 == 0) && (vmin_his == 1)) | ||
| 1255 | i++; | ||
| 1256 | |||
| 1257 | if (i % 2 == 1) | ||
| 1258 | v = (i + 1) / 2; | ||
| 1259 | else | ||
| 1260 | v = -i / 2; | ||
| 1261 | |||
| 1262 | if ((vmax_his == 1) && (vmin_his == 1)) | ||
| 1263 | loop = 0 ; | ||
| 1264 | } | ||
| 1265 | |||
| 1266 | if (signal == 1) { | ||
| 1267 | dprintk(verbose, MB86A16_INFO, 1, " Start Freq Error Check"); | ||
| 1268 | S1T = 7 ; | ||
| 1269 | S0T = 1 ; | ||
| 1270 | CREN = 0 ; | ||
| 1271 | AFCEN = 1 ; | ||
| 1272 | AFCEXEN = 0 ; | ||
| 1273 | |||
| 1274 | if (S01T_set(state, S1T, S0T) < 0) { | ||
| 1275 | dprintk(verbose, MB86A16_ERROR, 1, "S01T set error"); | ||
| 1276 | return -1; | ||
| 1277 | } | ||
| 1278 | smrt_info_get(state, state->srate); | ||
| 1279 | if (smrt_set(state, state->srate) < 0) { | ||
| 1280 | dprintk(verbose, MB86A16_ERROR, 1, "smrt set error"); | ||
| 1281 | return -1; | ||
| 1282 | } | ||
| 1283 | if (EN_set(state, CREN, AFCEN) < 0) { | ||
| 1284 | dprintk(verbose, MB86A16_ERROR, 1, "EN set error"); | ||
| 1285 | return -1; | ||
| 1286 | } | ||
| 1287 | if (AFCEXEN_set(state, AFCEXEN, state->srate) < 0) { | ||
| 1288 | dprintk(verbose, MB86A16_ERROR, 1, "AFCEXEN set error"); | ||
| 1289 | return -1; | ||
| 1290 | } | ||
| 1291 | afcex_info_get(state, afcex_freq, &AFCEX_L, &AFCEX_H); | ||
| 1292 | if (afcofs_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1293 | dprintk(verbose, MB86A16_ERROR, 1, "AFCOFS data set error"); | ||
| 1294 | return -1; | ||
| 1295 | } | ||
| 1296 | if (srst(state) < 0) { | ||
| 1297 | dprintk(verbose, MB86A16_ERROR, 1, "srst error"); | ||
| 1298 | return -1; | ||
| 1299 | } | ||
| 1300 | /* delay 4~200 */ | ||
| 1301 | wait_t = 200000 / state->master_clk + 200000 / state->srate; | ||
| 1302 | msleep(wait_t); | ||
| 1303 | afcerr = afcerr_chk(state); | ||
| 1304 | if (afcerr == -1) | ||
| 1305 | return -1; | ||
| 1306 | |||
| 1307 | swp_freq = fOSC * 1000 + afcerr ; | ||
| 1308 | AFCEXEN = 1 ; | ||
| 1309 | if (state->srate >= 1500) | ||
| 1310 | smrt_d = state->srate / 3; | ||
| 1311 | else | ||
| 1312 | smrt_d = state->srate / 2; | ||
| 1313 | smrt_info_get(state, smrt_d); | ||
| 1314 | if (smrt_set(state, smrt_d) < 0) { | ||
| 1315 | dprintk(verbose, MB86A16_ERROR, 1, "smrt set error"); | ||
| 1316 | return -1; | ||
| 1317 | } | ||
| 1318 | if (AFCEXEN_set(state, AFCEXEN, smrt_d) < 0) { | ||
| 1319 | dprintk(verbose, MB86A16_ERROR, 1, "AFCEXEN set error"); | ||
| 1320 | return -1; | ||
| 1321 | } | ||
| 1322 | R = vco_dev_get(state, smrt_d); | ||
| 1323 | if (DAGC_data_set(state, 2, 0) < 0) { | ||
| 1324 | dprintk(verbose, MB86A16_ERROR, 1, "DAGC data set error"); | ||
| 1325 | return -1; | ||
| 1326 | } | ||
| 1327 | for (i = 0; i < 3; i++) { | ||
| 1328 | temp_freq = swp_freq + (i - 1) * state->srate / 8; | ||
| 1329 | swp_info_get2(state, smrt_d, R, temp_freq, &afcex_freq, &fOSC, &AFCEX_L, &AFCEX_H); | ||
| 1330 | if (rf_val_set(state, fOSC, smrt_d, R) < 0) { | ||
| 1331 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set error"); | ||
| 1332 | return -1; | ||
| 1333 | } | ||
| 1334 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1335 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set error"); | ||
| 1336 | return -1; | ||
| 1337 | } | ||
| 1338 | wait_t = 200000 / state->master_clk + 40000 / smrt_d; | ||
| 1339 | msleep(wait_t); | ||
| 1340 | dagcm[i] = dagcm_val_get(state); | ||
| 1341 | } | ||
| 1342 | if ((dagcm[0] > dagcm[1]) && | ||
| 1343 | (dagcm[0] > dagcm[2]) && | ||
| 1344 | (dagcm[0] - dagcm[1] > 2 * (dagcm[2] - dagcm[1]))) { | ||
| 1345 | |||
| 1346 | temp_freq = swp_freq - 2 * state->srate / 8; | ||
| 1347 | swp_info_get2(state, smrt_d, R, temp_freq, &afcex_freq, &fOSC, &AFCEX_L, &AFCEX_H); | ||
| 1348 | if (rf_val_set(state, fOSC, smrt_d, R) < 0) { | ||
| 1349 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set error"); | ||
| 1350 | return -1; | ||
| 1351 | } | ||
| 1352 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1353 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set"); | ||
| 1354 | return -1; | ||
| 1355 | } | ||
| 1356 | wait_t = 200000 / state->master_clk + 40000 / smrt_d; | ||
| 1357 | msleep(wait_t); | ||
| 1358 | dagcm[3] = dagcm_val_get(state); | ||
| 1359 | if (dagcm[3] > dagcm[1]) | ||
| 1360 | delta_freq = (dagcm[2] - dagcm[0] + dagcm[1] - dagcm[3]) * state->srate / 300; | ||
| 1361 | else | ||
| 1362 | delta_freq = 0; | ||
| 1363 | } else if ((dagcm[2] > dagcm[1]) && | ||
| 1364 | (dagcm[2] > dagcm[0]) && | ||
| 1365 | (dagcm[2] - dagcm[1] > 2 * (dagcm[0] - dagcm[1]))) { | ||
| 1366 | |||
| 1367 | temp_freq = swp_freq + 2 * state->srate / 8; | ||
| 1368 | swp_info_get2(state, smrt_d, R, temp_freq, &afcex_freq, &fOSC, &AFCEX_L, &AFCEX_H); | ||
| 1369 | if (rf_val_set(state, fOSC, smrt_d, R) < 0) { | ||
| 1370 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set"); | ||
| 1371 | return -1; | ||
| 1372 | } | ||
| 1373 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1374 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set"); | ||
| 1375 | return -1; | ||
| 1376 | } | ||
| 1377 | wait_t = 200000 / state->master_clk + 40000 / smrt_d; | ||
| 1378 | msleep(wait_t); | ||
| 1379 | dagcm[3] = dagcm_val_get(state); | ||
| 1380 | if (dagcm[3] > dagcm[1]) | ||
| 1381 | delta_freq = (dagcm[2] - dagcm[0] + dagcm[3] - dagcm[1]) * state->srate / 300; | ||
| 1382 | else | ||
| 1383 | delta_freq = 0 ; | ||
| 1384 | |||
| 1385 | } else { | ||
| 1386 | delta_freq = 0 ; | ||
| 1387 | } | ||
| 1388 | dprintk(verbose, MB86A16_INFO, 1, "SWEEP Frequency = %d", swp_freq); | ||
| 1389 | swp_freq += delta_freq; | ||
| 1390 | dprintk(verbose, MB86A16_INFO, 1, "Adjusting .., DELTA Freq = %d, SWEEP Freq=%d", delta_freq, swp_freq); | ||
| 1391 | if (ABS(state->frequency * 1000 - swp_freq) > 3800) { | ||
| 1392 | dprintk(verbose, MB86A16_INFO, 1, "NO -- SIGNAL !"); | ||
| 1393 | } else { | ||
| 1394 | |||
| 1395 | S1T = 0; | ||
| 1396 | S0T = 3; | ||
| 1397 | CREN = 1; | ||
| 1398 | AFCEN = 0; | ||
| 1399 | AFCEXEN = 1; | ||
| 1400 | |||
| 1401 | if (S01T_set(state, S1T, S0T) < 0) { | ||
| 1402 | dprintk(verbose, MB86A16_ERROR, 1, "S01T set error"); | ||
| 1403 | return -1; | ||
| 1404 | } | ||
| 1405 | if (DAGC_data_set(state, 0, 0) < 0) { | ||
| 1406 | dprintk(verbose, MB86A16_ERROR, 1, "DAGC data set error"); | ||
| 1407 | return -1; | ||
| 1408 | } | ||
| 1409 | R = vco_dev_get(state, state->srate); | ||
| 1410 | smrt_info_get(state, state->srate); | ||
| 1411 | if (smrt_set(state, state->srate) < 0) { | ||
| 1412 | dprintk(verbose, MB86A16_ERROR, 1, "smrt set error"); | ||
| 1413 | return -1; | ||
| 1414 | } | ||
| 1415 | if (EN_set(state, CREN, AFCEN) < 0) { | ||
| 1416 | dprintk(verbose, MB86A16_ERROR, 1, "EN set error"); | ||
| 1417 | return -1; | ||
| 1418 | } | ||
| 1419 | if (AFCEXEN_set(state, AFCEXEN, state->srate) < 0) { | ||
| 1420 | dprintk(verbose, MB86A16_ERROR, 1, "AFCEXEN set error"); | ||
| 1421 | return -1; | ||
| 1422 | } | ||
| 1423 | swp_info_get2(state, state->srate, R, swp_freq, &afcex_freq, &fOSC, &AFCEX_L, &AFCEX_H); | ||
| 1424 | if (rf_val_set(state, fOSC, state->srate, R) < 0) { | ||
| 1425 | dprintk(verbose, MB86A16_ERROR, 1, "rf val set error"); | ||
| 1426 | return -1; | ||
| 1427 | } | ||
| 1428 | if (afcex_data_set(state, AFCEX_L, AFCEX_H) < 0) { | ||
| 1429 | dprintk(verbose, MB86A16_ERROR, 1, "afcex data set error"); | ||
| 1430 | return -1; | ||
| 1431 | } | ||
| 1432 | if (srst(state) < 0) { | ||
| 1433 | dprintk(verbose, MB86A16_ERROR, 1, "srst error"); | ||
| 1434 | return -1; | ||
| 1435 | } | ||
| 1436 | wait_t = 7 + (10000 + state->srate / 2) / state->srate; | ||
| 1437 | if (wait_t == 0) | ||
| 1438 | wait_t = 1; | ||
| 1439 | msleep_interruptible(wait_t); | ||
| 1440 | if (mb86a16_read(state, 0x37, &SIG1) != 2) { | ||
| 1441 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1442 | return -EREMOTEIO; | ||
| 1443 | } | ||
| 1444 | |||
| 1445 | if (SIG1 > 110) { | ||
| 1446 | S2T = 4; S4T = 1; S5T = 6; ETH = 4; VIA = 6; | ||
| 1447 | wait_t = 7 + (917504 + state->srate / 2) / state->srate; | ||
| 1448 | } else if (SIG1 > 105) { | ||
| 1449 | S2T = 4; S4T = 2; S5T = 8; ETH = 7; VIA = 2; | ||
| 1450 | wait_t = 7 + (1048576 + state->srate / 2) / state->srate; | ||
| 1451 | } else if (SIG1 > 85) { | ||
| 1452 | S2T = 5; S4T = 2; S5T = 8; ETH = 7; VIA = 2; | ||
| 1453 | wait_t = 7 + (1310720 + state->srate / 2) / state->srate; | ||
| 1454 | } else if (SIG1 > 65) { | ||
| 1455 | S2T = 6; S4T = 2; S5T = 8; ETH = 7; VIA = 2; | ||
| 1456 | wait_t = 7 + (1572864 + state->srate / 2) / state->srate; | ||
| 1457 | } else { | ||
| 1458 | S2T = 7; S4T = 2; S5T = 8; ETH = 7; VIA = 2; | ||
| 1459 | wait_t = 7 + (2097152 + state->srate / 2) / state->srate; | ||
| 1460 | } | ||
| 1461 | wait_t *= 2; /* FOS */ | ||
| 1462 | S2T_set(state, S2T); | ||
| 1463 | S45T_set(state, S4T, S5T); | ||
| 1464 | Vi_set(state, ETH, VIA); | ||
| 1465 | srst(state); | ||
| 1466 | msleep_interruptible(wait_t); | ||
| 1467 | sync = sync_chk(state, &VIRM); | ||
| 1468 | dprintk(verbose, MB86A16_INFO, 1, "-------- Viterbi=[%d] SYNC=[%d] ---------", VIRM, sync); | ||
| 1469 | if (VIRM) { | ||
| 1470 | if (VIRM == 4) { | ||
| 1471 | /* 5/6 */ | ||
| 1472 | if (SIG1 > 110) | ||
| 1473 | wait_t = (786432 + state->srate / 2) / state->srate; | ||
| 1474 | else | ||
| 1475 | wait_t = (1572864 + state->srate / 2) / state->srate; | ||
| 1476 | if (state->srate < 5000) | ||
| 1477 | /* FIXME ! , should be a long wait ! */ | ||
| 1478 | msleep_interruptible(wait_t); | ||
| 1479 | else | ||
| 1480 | msleep_interruptible(wait_t); | ||
| 1481 | |||
| 1482 | if (sync_chk(state, &junk) == 0) { | ||
| 1483 | iq_vt_set(state, 1); | ||
| 1484 | FEC_srst(state); | ||
| 1485 | } | ||
| 1486 | } | ||
| 1487 | /* 1/2, 2/3, 3/4, 7/8 */ | ||
| 1488 | if (SIG1 > 110) | ||
| 1489 | wait_t = (786432 + state->srate / 2) / state->srate; | ||
| 1490 | else | ||
| 1491 | wait_t = (1572864 + state->srate / 2) / state->srate; | ||
| 1492 | msleep_interruptible(wait_t); | ||
| 1493 | SEQ_set(state, 1); | ||
| 1494 | } else { | ||
| 1495 | dprintk(verbose, MB86A16_INFO, 1, "NO -- SYNC"); | ||
| 1496 | SEQ_set(state, 1); | ||
| 1497 | ret = -1; | ||
| 1498 | } | ||
| 1499 | } | ||
| 1500 | } else { | ||
| 1501 | dprintk(verbose, MB86A16_INFO, 1, "NO -- SIGNAL"); | ||
| 1502 | ret = -1; | ||
| 1503 | } | ||
| 1504 | |||
| 1505 | sync = sync_chk(state, &junk); | ||
| 1506 | if (sync) { | ||
| 1507 | dprintk(verbose, MB86A16_INFO, 1, "******* SYNC *******"); | ||
| 1508 | freqerr_chk(state, state->frequency, state->srate, 1); | ||
| 1509 | ret = 0; | ||
| 1510 | break; | ||
| 1511 | } | ||
| 1512 | } | ||
| 1513 | |||
| 1514 | mb86a16_read(state, 0x15, &agcval); | ||
| 1515 | mb86a16_read(state, 0x26, &cnmval); | ||
| 1516 | dprintk(verbose, MB86A16_INFO, 1, "AGC = %02x CNM = %02x", agcval, cnmval); | ||
| 1517 | |||
| 1518 | return ret; | ||
| 1519 | } | ||
| 1520 | |||
| 1521 | static int mb86a16_send_diseqc_msg(struct dvb_frontend *fe, | ||
| 1522 | struct dvb_diseqc_master_cmd *cmd) | ||
| 1523 | { | ||
| 1524 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1525 | int i; | ||
| 1526 | u8 regs; | ||
| 1527 | |||
| 1528 | if (mb86a16_write(state, MB86A16_DCC1, MB86A16_DCC1_DISTA) < 0) | ||
| 1529 | goto err; | ||
| 1530 | if (mb86a16_write(state, MB86A16_DCCOUT, 0x00) < 0) | ||
| 1531 | goto err; | ||
| 1532 | if (mb86a16_write(state, MB86A16_TONEOUT2, 0x04) < 0) | ||
| 1533 | goto err; | ||
| 1534 | |||
| 1535 | regs = 0x18; | ||
| 1536 | |||
| 1537 | if (cmd->msg_len > 5 || cmd->msg_len < 4) | ||
| 1538 | return -EINVAL; | ||
| 1539 | |||
| 1540 | for (i = 0; i < cmd->msg_len; i++) { | ||
| 1541 | if (mb86a16_write(state, regs, cmd->msg[i]) < 0) | ||
| 1542 | goto err; | ||
| 1543 | |||
| 1544 | regs++; | ||
| 1545 | } | ||
| 1546 | i += 0x90; | ||
| 1547 | |||
| 1548 | msleep_interruptible(10); | ||
| 1549 | |||
| 1550 | if (mb86a16_write(state, MB86A16_DCC1, i) < 0) | ||
| 1551 | goto err; | ||
| 1552 | if (mb86a16_write(state, MB86A16_DCCOUT, MB86A16_DCCOUT_DISEN) < 0) | ||
| 1553 | goto err; | ||
| 1554 | |||
| 1555 | return 0; | ||
| 1556 | |||
| 1557 | err: | ||
| 1558 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1559 | return -EREMOTEIO; | ||
| 1560 | } | ||
| 1561 | |||
| 1562 | static int mb86a16_send_diseqc_burst(struct dvb_frontend *fe, fe_sec_mini_cmd_t burst) | ||
| 1563 | { | ||
| 1564 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1565 | |||
| 1566 | switch (burst) { | ||
| 1567 | case SEC_MINI_A: | ||
| 1568 | if (mb86a16_write(state, MB86A16_DCC1, MB86A16_DCC1_DISTA | | ||
| 1569 | MB86A16_DCC1_TBEN | | ||
| 1570 | MB86A16_DCC1_TBO) < 0) | ||
| 1571 | goto err; | ||
| 1572 | if (mb86a16_write(state, MB86A16_DCCOUT, MB86A16_DCCOUT_DISEN) < 0) | ||
| 1573 | goto err; | ||
| 1574 | break; | ||
| 1575 | case SEC_MINI_B: | ||
| 1576 | if (mb86a16_write(state, MB86A16_DCC1, MB86A16_DCC1_DISTA | | ||
| 1577 | MB86A16_DCC1_TBEN) < 0) | ||
| 1578 | goto err; | ||
| 1579 | if (mb86a16_write(state, MB86A16_DCCOUT, MB86A16_DCCOUT_DISEN) < 0) | ||
| 1580 | goto err; | ||
| 1581 | break; | ||
| 1582 | } | ||
| 1583 | |||
| 1584 | return 0; | ||
| 1585 | err: | ||
| 1586 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1587 | return -EREMOTEIO; | ||
| 1588 | } | ||
| 1589 | |||
| 1590 | static int mb86a16_set_tone(struct dvb_frontend *fe, fe_sec_tone_mode_t tone) | ||
| 1591 | { | ||
| 1592 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1593 | |||
| 1594 | switch (tone) { | ||
| 1595 | case SEC_TONE_ON: | ||
| 1596 | if (mb86a16_write(state, MB86A16_TONEOUT2, 0x00) < 0) | ||
| 1597 | goto err; | ||
| 1598 | if (mb86a16_write(state, MB86A16_DCC1, MB86A16_DCC1_DISTA | | ||
| 1599 | MB86A16_DCC1_CTOE) < 0) | ||
| 1600 | |||
| 1601 | goto err; | ||
| 1602 | if (mb86a16_write(state, MB86A16_DCCOUT, MB86A16_DCCOUT_DISEN) < 0) | ||
| 1603 | goto err; | ||
| 1604 | break; | ||
| 1605 | case SEC_TONE_OFF: | ||
| 1606 | if (mb86a16_write(state, MB86A16_TONEOUT2, 0x04) < 0) | ||
| 1607 | goto err; | ||
| 1608 | if (mb86a16_write(state, MB86A16_DCC1, MB86A16_DCC1_DISTA) < 0) | ||
| 1609 | goto err; | ||
| 1610 | if (mb86a16_write(state, MB86A16_DCCOUT, 0x00) < 0) | ||
| 1611 | goto err; | ||
| 1612 | break; | ||
| 1613 | default: | ||
| 1614 | return -EINVAL; | ||
| 1615 | } | ||
| 1616 | return 0; | ||
| 1617 | |||
| 1618 | err: | ||
| 1619 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1620 | return -EREMOTEIO; | ||
| 1621 | } | ||
| 1622 | |||
| 1623 | static enum dvbfe_search mb86a16_search(struct dvb_frontend *fe, | ||
| 1624 | struct dvb_frontend_parameters *p) | ||
| 1625 | { | ||
| 1626 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1627 | |||
| 1628 | state->frequency = p->frequency / 1000; | ||
| 1629 | state->srate = p->u.qpsk.symbol_rate / 1000; | ||
| 1630 | |||
| 1631 | if (!mb86a16_set_fe(state)) { | ||
| 1632 | dprintk(verbose, MB86A16_ERROR, 1, "Succesfully acquired LOCK"); | ||
| 1633 | return DVBFE_ALGO_SEARCH_SUCCESS; | ||
| 1634 | } | ||
| 1635 | |||
| 1636 | dprintk(verbose, MB86A16_ERROR, 1, "Lock acquisition failed!"); | ||
| 1637 | return DVBFE_ALGO_SEARCH_FAILED; | ||
| 1638 | } | ||
| 1639 | |||
| 1640 | static void mb86a16_release(struct dvb_frontend *fe) | ||
| 1641 | { | ||
| 1642 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1643 | kfree(state); | ||
| 1644 | } | ||
| 1645 | |||
| 1646 | static int mb86a16_init(struct dvb_frontend *fe) | ||
| 1647 | { | ||
| 1648 | return 0; | ||
| 1649 | } | ||
| 1650 | |||
| 1651 | static int mb86a16_sleep(struct dvb_frontend *fe) | ||
| 1652 | { | ||
| 1653 | return 0; | ||
| 1654 | } | ||
| 1655 | |||
| 1656 | static int mb86a16_read_ber(struct dvb_frontend *fe, u32 *ber) | ||
| 1657 | { | ||
| 1658 | u8 ber_mon, ber_tab, ber_lsb, ber_mid, ber_msb, ber_tim, ber_rst; | ||
| 1659 | u32 timer; | ||
| 1660 | |||
| 1661 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1662 | |||
| 1663 | *ber = 0; | ||
| 1664 | if (mb86a16_read(state, MB86A16_BERMON, &ber_mon) != 2) | ||
| 1665 | goto err; | ||
| 1666 | if (mb86a16_read(state, MB86A16_BERTAB, &ber_tab) != 2) | ||
| 1667 | goto err; | ||
| 1668 | if (mb86a16_read(state, MB86A16_BERLSB, &ber_lsb) != 2) | ||
| 1669 | goto err; | ||
| 1670 | if (mb86a16_read(state, MB86A16_BERMID, &ber_mid) != 2) | ||
| 1671 | goto err; | ||
| 1672 | if (mb86a16_read(state, MB86A16_BERMSB, &ber_msb) != 2) | ||
| 1673 | goto err; | ||
| 1674 | /* BER monitor invalid when BER_EN = 0 */ | ||
| 1675 | if (ber_mon & 0x04) { | ||
| 1676 | /* coarse, fast calculation */ | ||
| 1677 | *ber = ber_tab & 0x1f; | ||
| 1678 | dprintk(verbose, MB86A16_DEBUG, 1, "BER coarse=[0x%02x]", *ber); | ||
| 1679 | if (ber_mon & 0x01) { | ||
| 1680 | /* | ||
| 1681 | * BER_SEL = 1, The monitored BER is the estimated | ||
| 1682 | * value with a Reed-Solomon decoder error amount at | ||
| 1683 | * the deinterleaver output. | ||
| 1684 | * monitored BER is expressed as a 20 bit output in total | ||
| 1685 | */ | ||
| 1686 | ber_rst = ber_mon >> 3; | ||
| 1687 | *ber = (((ber_msb << 8) | ber_mid) << 8) | ber_lsb; | ||
| 1688 | if (ber_rst == 0) | ||
| 1689 | timer = 12500000; | ||
| 1690 | if (ber_rst == 1) | ||
| 1691 | timer = 25000000; | ||
| 1692 | if (ber_rst == 2) | ||
| 1693 | timer = 50000000; | ||
| 1694 | if (ber_rst == 3) | ||
| 1695 | timer = 100000000; | ||
| 1696 | |||
| 1697 | *ber /= timer; | ||
| 1698 | dprintk(verbose, MB86A16_DEBUG, 1, "BER fine=[0x%02x]", *ber); | ||
| 1699 | } else { | ||
| 1700 | /* | ||
| 1701 | * BER_SEL = 0, The monitored BER is the estimated | ||
| 1702 | * value with a Viterbi decoder error amount at the | ||
| 1703 | * QPSK demodulator output. | ||
| 1704 | * monitored BER is expressed as a 24 bit output in total | ||
| 1705 | */ | ||
| 1706 | ber_tim = ber_mon >> 1; | ||
| 1707 | *ber = (((ber_msb << 8) | ber_mid) << 8) | ber_lsb; | ||
| 1708 | if (ber_tim == 0) | ||
| 1709 | timer = 16; | ||
| 1710 | if (ber_tim == 1) | ||
| 1711 | timer = 24; | ||
| 1712 | |||
| 1713 | *ber /= 2 ^ timer; | ||
| 1714 | dprintk(verbose, MB86A16_DEBUG, 1, "BER fine=[0x%02x]", *ber); | ||
| 1715 | } | ||
| 1716 | } | ||
| 1717 | return 0; | ||
| 1718 | err: | ||
| 1719 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1720 | return -EREMOTEIO; | ||
| 1721 | } | ||
| 1722 | |||
| 1723 | static int mb86a16_read_signal_strength(struct dvb_frontend *fe, u16 *strength) | ||
| 1724 | { | ||
| 1725 | u8 agcm = 0; | ||
| 1726 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1727 | |||
| 1728 | *strength = 0; | ||
| 1729 | if (mb86a16_read(state, MB86A16_AGCM, &agcm) != 2) { | ||
| 1730 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1731 | return -EREMOTEIO; | ||
| 1732 | } | ||
| 1733 | |||
| 1734 | *strength = ((0xff - agcm) * 100) / 256; | ||
| 1735 | dprintk(verbose, MB86A16_DEBUG, 1, "Signal strength=[%d %%]", (u8) *strength); | ||
| 1736 | *strength = (0xffff - 0xff) + agcm; | ||
| 1737 | |||
| 1738 | return 0; | ||
| 1739 | } | ||
| 1740 | |||
| 1741 | struct cnr { | ||
| 1742 | u8 cn_reg; | ||
| 1743 | u8 cn_val; | ||
| 1744 | }; | ||
| 1745 | |||
| 1746 | static const struct cnr cnr_tab[] = { | ||
| 1747 | { 35, 2 }, | ||
| 1748 | { 40, 3 }, | ||
| 1749 | { 50, 4 }, | ||
| 1750 | { 60, 5 }, | ||
| 1751 | { 70, 6 }, | ||
| 1752 | { 80, 7 }, | ||
| 1753 | { 92, 8 }, | ||
| 1754 | { 103, 9 }, | ||
| 1755 | { 115, 10 }, | ||
| 1756 | { 138, 12 }, | ||
| 1757 | { 162, 15 }, | ||
| 1758 | { 180, 18 }, | ||
| 1759 | { 185, 19 }, | ||
| 1760 | { 189, 20 }, | ||
| 1761 | { 195, 22 }, | ||
| 1762 | { 199, 24 }, | ||
| 1763 | { 201, 25 }, | ||
| 1764 | { 202, 26 }, | ||
| 1765 | { 203, 27 }, | ||
| 1766 | { 205, 28 }, | ||
| 1767 | { 208, 30 } | ||
| 1768 | }; | ||
| 1769 | |||
| 1770 | static int mb86a16_read_snr(struct dvb_frontend *fe, u16 *snr) | ||
| 1771 | { | ||
| 1772 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1773 | int i = 0; | ||
| 1774 | int low_tide = 2, high_tide = 30, q_level; | ||
| 1775 | u8 cn; | ||
| 1776 | |||
| 1777 | *snr = 0; | ||
| 1778 | if (mb86a16_read(state, 0x26, &cn) != 2) { | ||
| 1779 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1780 | return -EREMOTEIO; | ||
| 1781 | } | ||
| 1782 | |||
| 1783 | for (i = 0; i < ARRAY_SIZE(cnr_tab); i++) { | ||
| 1784 | if (cn < cnr_tab[i].cn_reg) { | ||
| 1785 | *snr = cnr_tab[i].cn_val; | ||
| 1786 | break; | ||
| 1787 | } | ||
| 1788 | } | ||
| 1789 | q_level = (*snr * 100) / (high_tide - low_tide); | ||
| 1790 | dprintk(verbose, MB86A16_ERROR, 1, "SNR (Quality) = [%d dB], Level=%d %%", *snr, q_level); | ||
| 1791 | *snr = (0xffff - 0xff) + *snr; | ||
| 1792 | |||
| 1793 | return 0; | ||
| 1794 | } | ||
| 1795 | |||
| 1796 | static int mb86a16_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks) | ||
| 1797 | { | ||
| 1798 | u8 dist; | ||
| 1799 | struct mb86a16_state *state = fe->demodulator_priv; | ||
| 1800 | |||
| 1801 | if (mb86a16_read(state, MB86A16_DISTMON, &dist) != 2) { | ||
| 1802 | dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); | ||
| 1803 | return -EREMOTEIO; | ||
| 1804 | } | ||
| 1805 | *ucblocks = dist; | ||
| 1806 | |||
| 1807 | return 0; | ||
| 1808 | } | ||
| 1809 | |||
| 1810 | static enum dvbfe_algo mb86a16_frontend_algo(struct dvb_frontend *fe) | ||
| 1811 | { | ||
| 1812 | return DVBFE_ALGO_CUSTOM; | ||
| 1813 | } | ||
| 1814 | |||
| 1815 | static struct dvb_frontend_ops mb86a16_ops = { | ||
| 1816 | .info = { | ||
| 1817 | .name = "Fujitsu MB86A16 DVB-S", | ||
| 1818 | .type = FE_QPSK, | ||
| 1819 | .frequency_min = 950000, | ||
| 1820 | .frequency_max = 2150000, | ||
| 1821 | .frequency_stepsize = 3000, | ||
| 1822 | .frequency_tolerance = 0, | ||
| 1823 | .symbol_rate_min = 1000000, | ||
| 1824 | .symbol_rate_max = 45000000, | ||
| 1825 | .symbol_rate_tolerance = 500, | ||
| 1826 | .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | | ||
| 1827 | FE_CAN_FEC_3_4 | FE_CAN_FEC_5_6 | | ||
| 1828 | FE_CAN_FEC_7_8 | FE_CAN_QPSK | | ||
| 1829 | FE_CAN_FEC_AUTO | ||
| 1830 | }, | ||
| 1831 | .release = mb86a16_release, | ||
| 1832 | |||
| 1833 | .get_frontend_algo = mb86a16_frontend_algo, | ||
| 1834 | .search = mb86a16_search, | ||
| 1835 | .read_status = mb86a16_read_status, | ||
| 1836 | .init = mb86a16_init, | ||
| 1837 | .sleep = mb86a16_sleep, | ||
| 1838 | .read_status = mb86a16_read_status, | ||
| 1839 | |||
| 1840 | .read_ber = mb86a16_read_ber, | ||
| 1841 | .read_signal_strength = mb86a16_read_signal_strength, | ||
| 1842 | .read_snr = mb86a16_read_snr, | ||
| 1843 | .read_ucblocks = mb86a16_read_ucblocks, | ||
| 1844 | |||
| 1845 | .diseqc_send_master_cmd = mb86a16_send_diseqc_msg, | ||
| 1846 | .diseqc_send_burst = mb86a16_send_diseqc_burst, | ||
| 1847 | .set_tone = mb86a16_set_tone, | ||
| 1848 | }; | ||
| 1849 | |||
| 1850 | struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config, | ||
| 1851 | struct i2c_adapter *i2c_adap) | ||
| 1852 | { | ||
| 1853 | u8 dev_id = 0; | ||
| 1854 | struct mb86a16_state *state = NULL; | ||
| 1855 | |||
| 1856 | state = kmalloc(sizeof(struct mb86a16_state), GFP_KERNEL); | ||
| 1857 | if (state == NULL) | ||
| 1858 | goto error; | ||
| 1859 | |||
| 1860 | state->config = config; | ||
| 1861 | state->i2c_adap = i2c_adap; | ||
| 1862 | |||
| 1863 | mb86a16_read(state, 0x7f, &dev_id); | ||
| 1864 | if (dev_id != 0xfe) | ||
| 1865 | goto error; | ||
| 1866 | |||
| 1867 | memcpy(&state->frontend.ops, &mb86a16_ops, sizeof(struct dvb_frontend_ops)); | ||
| 1868 | state->frontend.demodulator_priv = state; | ||
| 1869 | state->frontend.ops.set_voltage = state->config->set_voltage; | ||
| 1870 | |||
| 1871 | return &state->frontend; | ||
| 1872 | error: | ||
| 1873 | kfree(state); | ||
| 1874 | return NULL; | ||
| 1875 | } | ||
| 1876 | EXPORT_SYMBOL(mb86a16_attach); | ||
| 1877 | MODULE_LICENSE("GPL"); | ||
| 1878 | MODULE_AUTHOR("Manu Abraham"); | ||
diff --git a/drivers/media/dvb/frontends/mb86a16.h b/drivers/media/dvb/frontends/mb86a16.h new file mode 100644 index 000000000000..6ea8c376394f --- /dev/null +++ b/drivers/media/dvb/frontends/mb86a16.h | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | Fujitsu MB86A16 DVB-S/DSS DC Receiver driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MB86A16_H | ||
| 22 | #define __MB86A16_H | ||
| 23 | |||
| 24 | #include <linux/dvb/frontend.h> | ||
| 25 | #include "dvb_frontend.h" | ||
| 26 | |||
| 27 | |||
| 28 | struct mb86a16_config { | ||
| 29 | u8 demod_address; | ||
| 30 | |||
| 31 | int (*set_voltage)(struct dvb_frontend *fe, fe_sec_voltage_t voltage); | ||
| 32 | }; | ||
| 33 | |||
| 34 | |||
| 35 | |||
| 36 | #if defined(CONFIG_DVB_MB86A16) || (defined(CONFIG_DVB_MB86A16_MODULE) && defined(MODULE)) | ||
| 37 | |||
| 38 | extern struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config, | ||
| 39 | struct i2c_adapter *i2c_adap); | ||
| 40 | |||
| 41 | #else | ||
| 42 | |||
| 43 | static inline struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config, | ||
| 44 | struct i2c_adapter *i2c_adap) | ||
| 45 | { | ||
| 46 | printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__); | ||
| 47 | return NULL; | ||
| 48 | } | ||
| 49 | |||
| 50 | #endif /* CONFIG_DVB_MB86A16 */ | ||
| 51 | |||
| 52 | #endif /* __MB86A16_H */ | ||
diff --git a/drivers/media/dvb/frontends/mb86a16_priv.h b/drivers/media/dvb/frontends/mb86a16_priv.h new file mode 100644 index 000000000000..360a35acfe84 --- /dev/null +++ b/drivers/media/dvb/frontends/mb86a16_priv.h | |||
| @@ -0,0 +1,151 @@ | |||
| 1 | /* | ||
| 2 | Fujitsu MB86A16 DVB-S/DSS DC Receiver driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MB86A16_PRIV_H | ||
| 22 | #define __MB86A16_PRIV_H | ||
| 23 | |||
| 24 | #define MB86A16_TSOUT 0x00 | ||
| 25 | #define MB86A16_TSOUT_HIZSEL (0x01 << 5) | ||
| 26 | #define MB86A16_TSOUT_HIZCNTI (0x01 << 4) | ||
| 27 | #define MB86A16_TSOUT_MODE (0x01 << 3) | ||
| 28 | #define MB86A16_TSOUT_ORDER (0x01 << 2) | ||
| 29 | #define MB86A16_TSOUT_ERROR (0x01 << 1) | ||
| 30 | #define Mb86A16_TSOUT_EDGE (0x01 << 0) | ||
| 31 | |||
| 32 | #define MB86A16_FEC 0x01 | ||
| 33 | #define MB86A16_FEC_FSYNC (0x01 << 5) | ||
| 34 | #define MB86A16_FEC_PCKB8 (0x01 << 4) | ||
| 35 | #define MB86A16_FEC_DVDS (0x01 << 3) | ||
| 36 | #define MB86A16_FEC_EREN (0x01 << 2) | ||
| 37 | #define Mb86A16_FEC_RSEN (0x01 << 1) | ||
| 38 | #define MB86A16_FEC_DIEN (0x01 << 0) | ||
| 39 | |||
| 40 | #define MB86A16_AGC 0x02 | ||
| 41 | #define MB86A16_AGC_AGMD (0x01 << 6) | ||
| 42 | #define MB86A16_AGC_AGCW (0x0f << 2) | ||
| 43 | #define MB86A16_AGC_AGCP (0x01 << 1) | ||
| 44 | #define MB86A16_AGC_AGCR (0x01 << 0) | ||
| 45 | |||
| 46 | #define MB86A16_SRATE1 0x03 | ||
| 47 | #define MB86A16_SRATE1_DECI (0x07 << 2) | ||
| 48 | #define MB86A16_SRATE1_CSEL (0x01 << 1) | ||
| 49 | #define MB86A16_SRATE1_RSEL (0x01 << 0) | ||
| 50 | |||
| 51 | #define MB86A16_SRATE2 0x04 | ||
| 52 | #define MB86A16_SRATE2_STOFSL (0xff << 0) | ||
| 53 | |||
| 54 | #define MB86A16_SRATE3 0x05 | ||
| 55 | #define MB86A16_SRATE2_STOFSH (0xff << 0) | ||
| 56 | |||
| 57 | #define MB86A16_VITERBI 0x06 | ||
| 58 | #define MB86A16_FRAMESYNC 0x07 | ||
| 59 | #define MB86A16_CRLFILTCOEF1 0x08 | ||
| 60 | #define MB86A16_CRLFILTCOEF2 0x09 | ||
| 61 | #define MB86A16_STRFILTCOEF1 0x0a | ||
| 62 | #define MB86A16_STRFILTCOEF2 0x0b | ||
| 63 | #define MB86A16_RESET 0x0c | ||
| 64 | #define MB86A16_STATUS 0x0d | ||
| 65 | #define MB86A16_AFCML 0x0e | ||
| 66 | #define MB86A16_AFCMH 0x0f | ||
| 67 | #define MB86A16_BERMON 0x10 | ||
| 68 | #define MB86A16_BERTAB 0x11 | ||
| 69 | #define MB86A16_BERLSB 0x12 | ||
| 70 | #define MB86A16_BERMID 0x13 | ||
| 71 | #define MB86A16_BERMSB 0x14 | ||
| 72 | #define MB86A16_AGCM 0x15 | ||
| 73 | |||
| 74 | #define MB86A16_DCC1 0x16 | ||
| 75 | #define MB86A16_DCC1_DISTA (0x01 << 7) | ||
| 76 | #define MB86A16_DCC1_PRTY (0x01 << 6) | ||
| 77 | #define MB86A16_DCC1_CTOE (0x01 << 5) | ||
| 78 | #define MB86A16_DCC1_TBEN (0x01 << 4) | ||
| 79 | #define MB86A16_DCC1_TBO (0x01 << 3) | ||
| 80 | #define MB86A16_DCC1_NUM (0x07 << 0) | ||
| 81 | |||
| 82 | #define MB86A16_DCC2 0x17 | ||
| 83 | #define MB86A16_DCC2_DCBST (0x01 << 0) | ||
| 84 | |||
| 85 | #define MB86A16_DCC3 0x18 | ||
| 86 | #define MB86A16_DCC3_CODE0 (0xff << 0) | ||
| 87 | |||
| 88 | #define MB86A16_DCC4 0x19 | ||
| 89 | #define MB86A16_DCC4_CODE1 (0xff << 0) | ||
| 90 | |||
| 91 | #define MB86A16_DCC5 0x1a | ||
| 92 | #define MB86A16_DCC5_CODE2 (0xff << 0) | ||
| 93 | |||
| 94 | #define MB86A16_DCC6 0x1b | ||
| 95 | #define MB86A16_DCC6_CODE3 (0xff << 0) | ||
| 96 | |||
| 97 | #define MB86A16_DCC7 0x1c | ||
| 98 | #define MB86A16_DCC7_CODE4 (0xff << 0) | ||
| 99 | |||
| 100 | #define MB86A16_DCC8 0x1d | ||
| 101 | #define MB86A16_DCC8_CODE5 (0xff << 0) | ||
| 102 | |||
| 103 | #define MB86A16_DCCOUT 0x1e | ||
| 104 | #define MB86A16_DCCOUT_DISEN (0x01 << 0) | ||
| 105 | |||
| 106 | #define MB86A16_TONEOUT1 0x1f | ||
| 107 | #define MB86A16_TONE_TDIVL (0xff << 0) | ||
| 108 | |||
| 109 | #define MB86A16_TONEOUT2 0x20 | ||
| 110 | #define MB86A16_TONE_TMD (0x03 << 2) | ||
| 111 | #define MB86A16_TONE_TDIVH (0x03 << 0) | ||
| 112 | |||
| 113 | #define MB86A16_FREQ1 0x21 | ||
| 114 | #define MB86A16_FREQ2 0x22 | ||
| 115 | #define MB86A16_FREQ3 0x23 | ||
| 116 | #define MB86A16_FREQ4 0x24 | ||
| 117 | #define MB86A16_FREQSET 0x25 | ||
| 118 | #define MB86A16_CNM 0x26 | ||
| 119 | #define MB86A16_PORT0 0x27 | ||
| 120 | #define MB86A16_PORT1 0x28 | ||
| 121 | #define MB86A16_DRCFILT 0x29 | ||
| 122 | #define MB86A16_AFC 0x2a | ||
| 123 | #define MB86A16_AFCEXL 0x2b | ||
| 124 | #define MB86A16_AFCEXH 0x2c | ||
| 125 | #define MB86A16_DAGC 0x2d | ||
| 126 | #define MB86A16_SEQMODE 0x32 | ||
| 127 | #define MB86A16_S0S1T 0x33 | ||
| 128 | #define MB86A16_S2S3T 0x34 | ||
| 129 | #define MB86A16_S4S5T 0x35 | ||
| 130 | #define MB86A16_CNTMR 0x36 | ||
| 131 | #define MB86A16_SIG1 0x37 | ||
| 132 | #define MB86A16_SIG2 0x38 | ||
| 133 | #define MB86A16_VIMAG 0x39 | ||
| 134 | #define MB86A16_VISET1 0x3a | ||
| 135 | #define MB86A16_VISET2 0x3b | ||
| 136 | #define MB86A16_VISET3 0x3c | ||
| 137 | #define MB86A16_FAGCS1 0x3d | ||
| 138 | #define MB86A16_FAGCS2 0x3e | ||
| 139 | #define MB86A16_FAGCS3 0x3f | ||
| 140 | #define MB86A16_FAGCS4 0x40 | ||
| 141 | #define MB86A16_FAGCS5 0x41 | ||
| 142 | #define MB86A16_FAGCS6 0x42 | ||
| 143 | #define MB86A16_CRM 0x43 | ||
| 144 | #define MB86A16_STRM 0x44 | ||
| 145 | #define MB86A16_DAGCML 0x45 | ||
| 146 | #define MB86A16_DAGCMH 0x46 | ||
| 147 | #define MB86A16_QPSKTST 0x49 | ||
| 148 | #define MB86A16_DISTMON 0x52 | ||
| 149 | #define MB86A16_VERSION 0x7f | ||
| 150 | |||
| 151 | #endif /* __MB86A16_PRIV_H */ | ||
diff --git a/drivers/media/dvb/frontends/tda10021.c b/drivers/media/dvb/frontends/tda10021.c index 6c1dbf9288d8..6ca533ea0f0e 100644 --- a/drivers/media/dvb/frontends/tda10021.c +++ b/drivers/media/dvb/frontends/tda10021.c | |||
| @@ -426,6 +426,10 @@ struct dvb_frontend* tda10021_attach(const struct tda1002x_config* config, | |||
| 426 | id = tda10021_readreg(state, 0x1a); | 426 | id = tda10021_readreg(state, 0x1a); |
| 427 | if ((id & 0xf0) != 0x70) goto error; | 427 | if ((id & 0xf0) != 0x70) goto error; |
| 428 | 428 | ||
| 429 | /* Don't claim TDA10023 */ | ||
| 430 | if (id == 0x7d) | ||
| 431 | goto error; | ||
| 432 | |||
| 429 | printk("TDA10021: i2c-addr = 0x%02x, id = 0x%02x\n", | 433 | printk("TDA10021: i2c-addr = 0x%02x, id = 0x%02x\n", |
| 430 | state->config->demod_address, id); | 434 | state->config->demod_address, id); |
| 431 | 435 | ||
diff --git a/drivers/media/dvb/frontends/tda665x.c b/drivers/media/dvb/frontends/tda665x.c new file mode 100644 index 000000000000..87d52739c828 --- /dev/null +++ b/drivers/media/dvb/frontends/tda665x.c | |||
| @@ -0,0 +1,257 @@ | |||
| 1 | /* | ||
| 2 | TDA665x tuner driver | ||
| 3 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 4 | |||
| 5 | This program is free software; you can redistribute it and/or modify | ||
| 6 | it under the terms of the GNU General Public License as published by | ||
| 7 | the Free Software Foundation; either version 2 of the License, or | ||
| 8 | (at your option) any later version. | ||
| 9 | |||
| 10 | This program is distributed in the hope that it will be useful, | ||
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | GNU General Public License for more details. | ||
| 14 | |||
| 15 | You should have received a copy of the GNU General Public License | ||
| 16 | along with this program; if not, write to the Free Software | ||
| 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <linux/module.h> | ||
| 23 | |||
| 24 | #include "dvb_frontend.h" | ||
| 25 | #include "tda665x.h" | ||
| 26 | |||
| 27 | struct tda665x_state { | ||
| 28 | struct dvb_frontend *fe; | ||
| 29 | struct i2c_adapter *i2c; | ||
| 30 | const struct tda665x_config *config; | ||
| 31 | |||
| 32 | u32 frequency; | ||
| 33 | u32 bandwidth; | ||
| 34 | }; | ||
| 35 | |||
| 36 | static int tda665x_read(struct tda665x_state *state, u8 *buf) | ||
| 37 | { | ||
| 38 | const struct tda665x_config *config = state->config; | ||
| 39 | int err = 0; | ||
| 40 | struct i2c_msg msg = { .addr = config->addr, .flags = I2C_M_RD, .buf = buf, .len = 2 }; | ||
| 41 | |||
| 42 | err = i2c_transfer(state->i2c, &msg, 1); | ||
| 43 | if (err != 1) | ||
| 44 | goto exit; | ||
| 45 | |||
| 46 | return err; | ||
| 47 | exit: | ||
| 48 | printk(KERN_ERR "%s: I/O Error err=<%d>\n", __func__, err); | ||
| 49 | return err; | ||
| 50 | } | ||
| 51 | |||
| 52 | static int tda665x_write(struct tda665x_state *state, u8 *buf, u8 length) | ||
| 53 | { | ||
| 54 | const struct tda665x_config *config = state->config; | ||
| 55 | int err = 0; | ||
| 56 | struct i2c_msg msg = { .addr = config->addr, .flags = 0, .buf = buf, .len = length }; | ||
| 57 | |||
| 58 | err = i2c_transfer(state->i2c, &msg, 1); | ||
| 59 | if (err != 1) | ||
| 60 | goto exit; | ||
| 61 | |||
| 62 | return err; | ||
| 63 | exit: | ||
| 64 | printk(KERN_ERR "%s: I/O Error err=<%d>\n", __func__, err); | ||
| 65 | return err; | ||
| 66 | } | ||
| 67 | |||
| 68 | static int tda665x_get_state(struct dvb_frontend *fe, | ||
| 69 | enum tuner_param param, | ||
| 70 | struct tuner_state *tstate) | ||
| 71 | { | ||
| 72 | struct tda665x_state *state = fe->tuner_priv; | ||
| 73 | int err = 0; | ||
| 74 | |||
| 75 | switch (param) { | ||
| 76 | case DVBFE_TUNER_FREQUENCY: | ||
| 77 | tstate->frequency = state->frequency; | ||
| 78 | break; | ||
| 79 | case DVBFE_TUNER_BANDWIDTH: | ||
| 80 | break; | ||
| 81 | default: | ||
| 82 | printk(KERN_ERR "%s: Unknown parameter (param=%d)\n", __func__, param); | ||
| 83 | err = -EINVAL; | ||
| 84 | break; | ||
| 85 | } | ||
| 86 | |||
| 87 | return err; | ||
| 88 | } | ||
| 89 | |||
| 90 | static int tda665x_get_status(struct dvb_frontend *fe, u32 *status) | ||
| 91 | { | ||
| 92 | struct tda665x_state *state = fe->tuner_priv; | ||
| 93 | u8 result = 0; | ||
| 94 | int err = 0; | ||
| 95 | |||
| 96 | *status = 0; | ||
| 97 | |||
| 98 | err = tda665x_read(state, &result); | ||
| 99 | if (err < 0) | ||
| 100 | goto exit; | ||
| 101 | |||
| 102 | if ((result >> 6) & 0x01) { | ||
| 103 | printk(KERN_DEBUG "%s: Tuner Phase Locked\n", __func__); | ||
| 104 | *status = 1; | ||
| 105 | } | ||
| 106 | |||
| 107 | return err; | ||
| 108 | exit: | ||
| 109 | printk(KERN_ERR "%s: I/O Error\n", __func__); | ||
| 110 | return err; | ||
| 111 | } | ||
| 112 | |||
| 113 | static int tda665x_set_state(struct dvb_frontend *fe, | ||
| 114 | enum tuner_param param, | ||
| 115 | struct tuner_state *tstate) | ||
| 116 | { | ||
| 117 | struct tda665x_state *state = fe->tuner_priv; | ||
| 118 | const struct tda665x_config *config = state->config; | ||
| 119 | u32 frequency, status = 0; | ||
| 120 | u8 buf[4]; | ||
| 121 | int err = 0; | ||
| 122 | |||
| 123 | if (param & DVBFE_TUNER_FREQUENCY) { | ||
| 124 | |||
| 125 | frequency = tstate->frequency; | ||
| 126 | if ((frequency < config->frequency_max) || (frequency > config->frequency_min)) { | ||
| 127 | printk(KERN_ERR "%s: Frequency beyond limits, frequency=%d\n", __func__, frequency); | ||
| 128 | return -EINVAL; | ||
| 129 | } | ||
| 130 | |||
| 131 | frequency += config->frequency_offst; | ||
| 132 | frequency *= config->ref_multiplier; | ||
| 133 | frequency += config->ref_divider >> 1; | ||
| 134 | frequency /= config->ref_divider; | ||
| 135 | |||
| 136 | buf[0] = (u8) (frequency & 0x7f00) >> 8; | ||
| 137 | buf[1] = (u8) (frequency & 0x00ff) >> 0; | ||
| 138 | buf[2] = 0x80 | 0x40 | 0x02; | ||
| 139 | buf[3] = 0x00; | ||
| 140 | |||
| 141 | /* restore frequency */ | ||
| 142 | frequency = tstate->frequency; | ||
| 143 | |||
| 144 | if (frequency < 153000000) { | ||
| 145 | /* VHF-L */ | ||
| 146 | buf[3] |= 0x01; /* fc, Low Band, 47 - 153 MHz */ | ||
| 147 | if (frequency < 68000000) | ||
| 148 | buf[3] |= 0x40; /* 83uA */ | ||
| 149 | if (frequency < 1040000000) | ||
| 150 | buf[3] |= 0x60; /* 122uA */ | ||
| 151 | if (frequency < 1250000000) | ||
| 152 | buf[3] |= 0x80; /* 163uA */ | ||
| 153 | else | ||
| 154 | buf[3] |= 0xa0; /* 254uA */ | ||
| 155 | } else if (frequency < 438000000) { | ||
| 156 | /* VHF-H */ | ||
| 157 | buf[3] |= 0x02; /* fc, Mid Band, 153 - 438 MHz */ | ||
| 158 | if (frequency < 230000000) | ||
| 159 | buf[3] |= 0x40; | ||
| 160 | if (frequency < 300000000) | ||
| 161 | buf[3] |= 0x60; | ||
| 162 | else | ||
| 163 | buf[3] |= 0x80; | ||
| 164 | } else { | ||
| 165 | /* UHF */ | ||
| 166 | buf[3] |= 0x04; /* fc, High Band, 438 - 862 MHz */ | ||
| 167 | if (frequency < 470000000) | ||
| 168 | buf[3] |= 0x60; | ||
| 169 | if (frequency < 526000000) | ||
| 170 | buf[3] |= 0x80; | ||
| 171 | else | ||
| 172 | buf[3] |= 0xa0; | ||
| 173 | } | ||
| 174 | |||
| 175 | /* Set params */ | ||
| 176 | err = tda665x_write(state, buf, 5); | ||
| 177 | if (err < 0) | ||
| 178 | goto exit; | ||
| 179 | |||
| 180 | /* sleep for some time */ | ||
| 181 | printk(KERN_DEBUG "%s: Waiting to Phase LOCK\n", __func__); | ||
| 182 | msleep(20); | ||
| 183 | /* check status */ | ||
| 184 | err = tda665x_get_status(fe, &status); | ||
| 185 | if (err < 0) | ||
| 186 | goto exit; | ||
| 187 | |||
| 188 | if (status == 1) { | ||
| 189 | printk(KERN_DEBUG "%s: Tuner Phase locked: status=%d\n", __func__, status); | ||
| 190 | state->frequency = frequency; /* cache successful state */ | ||
| 191 | } else { | ||
| 192 | printk(KERN_ERR "%s: No Phase lock: status=%d\n", __func__, status); | ||
| 193 | } | ||
| 194 | } else { | ||
| 195 | printk(KERN_ERR "%s: Unknown parameter (param=%d)\n", __func__, param); | ||
| 196 | return -EINVAL; | ||
| 197 | } | ||
| 198 | |||
| 199 | return 0; | ||
| 200 | exit: | ||
| 201 | printk(KERN_ERR "%s: I/O Error\n", __func__); | ||
| 202 | return err; | ||
| 203 | } | ||
| 204 | |||
| 205 | static int tda665x_release(struct dvb_frontend *fe) | ||
| 206 | { | ||
| 207 | struct tda665x_state *state = fe->tuner_priv; | ||
| 208 | |||
| 209 | fe->tuner_priv = NULL; | ||
| 210 | kfree(state); | ||
| 211 | return 0; | ||
| 212 | } | ||
| 213 | |||
| 214 | static struct dvb_tuner_ops tda665x_ops = { | ||
| 215 | |||
| 216 | .set_state = tda665x_set_state, | ||
| 217 | .get_state = tda665x_get_state, | ||
| 218 | .get_status = tda665x_get_status, | ||
| 219 | .release = tda665x_release | ||
| 220 | }; | ||
| 221 | |||
| 222 | struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, | ||
| 223 | const struct tda665x_config *config, | ||
| 224 | struct i2c_adapter *i2c) | ||
| 225 | { | ||
| 226 | struct tda665x_state *state = NULL; | ||
| 227 | struct dvb_tuner_info *info; | ||
| 228 | |||
| 229 | state = kzalloc(sizeof(struct tda665x_state), GFP_KERNEL); | ||
| 230 | if (state == NULL) | ||
| 231 | goto exit; | ||
| 232 | |||
| 233 | state->config = config; | ||
| 234 | state->i2c = i2c; | ||
| 235 | state->fe = fe; | ||
| 236 | fe->tuner_priv = state; | ||
| 237 | fe->ops.tuner_ops = tda665x_ops; | ||
| 238 | info = &fe->ops.tuner_ops.info; | ||
| 239 | |||
| 240 | memcpy(info->name, config->name, sizeof(config->name)); | ||
| 241 | info->frequency_min = config->frequency_min; | ||
| 242 | info->frequency_max = config->frequency_max; | ||
| 243 | info->frequency_step = config->frequency_offst; | ||
| 244 | |||
| 245 | printk(KERN_DEBUG "%s: Attaching TDA665x (%s) tuner\n", __func__, info->name); | ||
| 246 | |||
| 247 | return fe; | ||
| 248 | |||
| 249 | exit: | ||
| 250 | kfree(state); | ||
| 251 | return NULL; | ||
| 252 | } | ||
| 253 | EXPORT_SYMBOL(tda665x_attach); | ||
| 254 | |||
| 255 | MODULE_DESCRIPTION("TDA665x driver"); | ||
| 256 | MODULE_AUTHOR("Manu Abraham"); | ||
| 257 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/frontends/tda665x.h b/drivers/media/dvb/frontends/tda665x.h new file mode 100644 index 000000000000..ec7927aa75ae --- /dev/null +++ b/drivers/media/dvb/frontends/tda665x.h | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | TDA665x tuner driver | ||
| 3 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 4 | |||
| 5 | This program is free software; you can redistribute it and/or modify | ||
| 6 | it under the terms of the GNU General Public License as published by | ||
| 7 | the Free Software Foundation; either version 2 of the License, or | ||
| 8 | (at your option) any later version. | ||
| 9 | |||
| 10 | This program is distributed in the hope that it will be useful, | ||
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | GNU General Public License for more details. | ||
| 14 | |||
| 15 | You should have received a copy of the GNU General Public License | ||
| 16 | along with this program; if not, write to the Free Software | ||
| 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #ifndef __TDA665x_H | ||
| 21 | #define __TDA665x_H | ||
| 22 | |||
| 23 | struct tda665x_config { | ||
| 24 | char name[128]; | ||
| 25 | |||
| 26 | u8 addr; | ||
| 27 | u32 frequency_min; | ||
| 28 | u32 frequency_max; | ||
| 29 | u32 frequency_offst; | ||
| 30 | u32 ref_multiplier; | ||
| 31 | u32 ref_divider; | ||
| 32 | }; | ||
| 33 | |||
| 34 | #if defined(CONFIG_DVB_TDA665x) || (defined(CONFIG_DVB_TDA665x_MODULE) && defined(MODULE)) | ||
| 35 | |||
| 36 | extern struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, | ||
| 37 | const struct tda665x_config *config, | ||
| 38 | struct i2c_adapter *i2c); | ||
| 39 | |||
| 40 | #else | ||
| 41 | |||
| 42 | static inline struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, | ||
| 43 | const struct tda665x_config *config, | ||
| 44 | struct i2c_adapter *i2c) | ||
| 45 | { | ||
| 46 | printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__); | ||
| 47 | return NULL; | ||
| 48 | } | ||
| 49 | |||
| 50 | #endif /* CONFIG_DVB_TDA665x */ | ||
| 51 | |||
| 52 | #endif /* __TDA665x_H */ | ||
diff --git a/drivers/media/dvb/mantis/Kconfig b/drivers/media/dvb/mantis/Kconfig new file mode 100644 index 000000000000..f7b72a32adf3 --- /dev/null +++ b/drivers/media/dvb/mantis/Kconfig | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | config MANTIS_CORE | ||
| 2 | tristate "Mantis/Hopper PCI bridge based devices" | ||
| 3 | depends on PCI && I2C && INPUT | ||
| 4 | |||
| 5 | help | ||
| 6 | Support for PCI cards based on the Mantis and Hopper PCi bridge. | ||
| 7 | |||
| 8 | Say Y if you own such a device and want to use it. | ||
| 9 | |||
| 10 | config DVB_MANTIS | ||
| 11 | tristate "MANTIS based cards" | ||
| 12 | depends on MANTIS_CORE && DVB_CORE && PCI && I2C | ||
| 13 | select DVB_MB86A16 | ||
| 14 | select DVB_ZL10353 | ||
| 15 | select DVB_STV0299 | ||
| 16 | select DVB_PLL | ||
| 17 | help | ||
| 18 | Support for PCI cards based on the Mantis PCI bridge. | ||
| 19 | Say Y when you have a Mantis based DVB card and want to use it. | ||
| 20 | |||
| 21 | If unsure say N. | ||
| 22 | |||
| 23 | config DVB_HOPPER | ||
| 24 | tristate "HOPPER based cards" | ||
| 25 | depends on MANTIS_CORE && DVB_CORE && PCI && I2C | ||
| 26 | select DVB_ZL10353 | ||
| 27 | select DVB_PLL | ||
| 28 | help | ||
| 29 | Support for PCI cards based on the Hopper PCI bridge. | ||
| 30 | Say Y when you have a Hopper based DVB card and want to use it. | ||
| 31 | |||
| 32 | If unsure say N | ||
diff --git a/drivers/media/dvb/mantis/Makefile b/drivers/media/dvb/mantis/Makefile new file mode 100644 index 000000000000..98dc5cd258ac --- /dev/null +++ b/drivers/media/dvb/mantis/Makefile | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | mantis_core-objs := mantis_ioc.o \ | ||
| 2 | mantis_uart.o \ | ||
| 3 | mantis_dma.o \ | ||
| 4 | mantis_pci.o \ | ||
| 5 | mantis_i2c.o \ | ||
| 6 | mantis_dvb.o \ | ||
| 7 | mantis_evm.o \ | ||
| 8 | mantis_hif.o \ | ||
| 9 | mantis_ca.o \ | ||
| 10 | mantis_pcmcia.o \ | ||
| 11 | mantis_input.o | ||
| 12 | |||
| 13 | mantis-objs := mantis_cards.o \ | ||
| 14 | mantis_vp1033.o \ | ||
| 15 | mantis_vp1034.o \ | ||
| 16 | mantis_vp1041.o \ | ||
| 17 | mantis_vp2033.o \ | ||
| 18 | mantis_vp2040.o \ | ||
| 19 | mantis_vp3030.o | ||
| 20 | |||
| 21 | hopper-objs := hopper_cards.o \ | ||
| 22 | hopper_vp3028.o | ||
| 23 | |||
| 24 | obj-$(CONFIG_MANTIS_CORE) += mantis_core.o | ||
| 25 | obj-$(CONFIG_DVB_MANTIS) += mantis.o | ||
| 26 | obj-$(CONFIG_DVB_HOPPER) += hopper.o | ||
| 27 | |||
| 28 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ | ||
diff --git a/drivers/media/dvb/mantis/hopper_cards.c b/drivers/media/dvb/mantis/hopper_cards.c new file mode 100644 index 000000000000..d073c61e3c0d --- /dev/null +++ b/drivers/media/dvb/mantis/hopper_cards.c | |||
| @@ -0,0 +1,275 @@ | |||
| 1 | /* | ||
| 2 | Hopper PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/module.h> | ||
| 22 | #include <linux/moduleparam.h> | ||
| 23 | #include <linux/kernel.h> | ||
| 24 | #include <linux/pci.h> | ||
| 25 | #include <asm/irq.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | |||
| 28 | #include "dmxdev.h" | ||
| 29 | #include "dvbdev.h" | ||
| 30 | #include "dvb_demux.h" | ||
| 31 | #include "dvb_frontend.h" | ||
| 32 | #include "dvb_net.h" | ||
| 33 | |||
| 34 | #include "mantis_common.h" | ||
| 35 | #include "hopper_vp3028.h" | ||
| 36 | #include "mantis_dma.h" | ||
| 37 | #include "mantis_dvb.h" | ||
| 38 | #include "mantis_uart.h" | ||
| 39 | #include "mantis_ioc.h" | ||
| 40 | #include "mantis_pci.h" | ||
| 41 | #include "mantis_i2c.h" | ||
| 42 | #include "mantis_reg.h" | ||
| 43 | |||
| 44 | static unsigned int verbose; | ||
| 45 | module_param(verbose, int, 0644); | ||
| 46 | MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); | ||
| 47 | |||
| 48 | #define DRIVER_NAME "Hopper" | ||
| 49 | |||
| 50 | static char *label[10] = { | ||
| 51 | "DMA", | ||
| 52 | "IRQ-0", | ||
| 53 | "IRQ-1", | ||
| 54 | "OCERR", | ||
| 55 | "PABRT", | ||
| 56 | "RIPRR", | ||
| 57 | "PPERR", | ||
| 58 | "FTRGT", | ||
| 59 | "RISCI", | ||
| 60 | "RACK" | ||
| 61 | }; | ||
| 62 | |||
| 63 | static int devs; | ||
| 64 | |||
| 65 | static irqreturn_t hopper_irq_handler(int irq, void *dev_id) | ||
| 66 | { | ||
| 67 | u32 stat = 0, mask = 0, lstat = 0, mstat = 0; | ||
| 68 | u32 rst_stat = 0, rst_mask = 0; | ||
| 69 | |||
| 70 | struct mantis_pci *mantis; | ||
| 71 | struct mantis_ca *ca; | ||
| 72 | |||
| 73 | mantis = (struct mantis_pci *) dev_id; | ||
| 74 | if (unlikely(mantis == NULL)) { | ||
| 75 | dprintk(MANTIS_ERROR, 1, "Mantis == NULL"); | ||
| 76 | return IRQ_NONE; | ||
| 77 | } | ||
| 78 | ca = mantis->mantis_ca; | ||
| 79 | |||
| 80 | stat = mmread(MANTIS_INT_STAT); | ||
| 81 | mask = mmread(MANTIS_INT_MASK); | ||
| 82 | mstat = lstat = stat & ~MANTIS_INT_RISCSTAT; | ||
| 83 | if (!(stat & mask)) | ||
| 84 | return IRQ_NONE; | ||
| 85 | |||
| 86 | rst_mask = MANTIS_GPIF_WRACK | | ||
| 87 | MANTIS_GPIF_OTHERR | | ||
| 88 | MANTIS_SBUF_WSTO | | ||
| 89 | MANTIS_GPIF_EXTIRQ; | ||
| 90 | |||
| 91 | rst_stat = mmread(MANTIS_GPIF_STATUS); | ||
| 92 | rst_stat &= rst_mask; | ||
| 93 | mmwrite(rst_stat, MANTIS_GPIF_STATUS); | ||
| 94 | |||
| 95 | mantis->mantis_int_stat = stat; | ||
| 96 | mantis->mantis_int_mask = mask; | ||
| 97 | dprintk(MANTIS_DEBUG, 0, "\n-- Stat=<%02x> Mask=<%02x> --", stat, mask); | ||
| 98 | if (stat & MANTIS_INT_RISCEN) { | ||
| 99 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[0]); | ||
| 100 | } | ||
| 101 | if (stat & MANTIS_INT_IRQ0) { | ||
| 102 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[1]); | ||
| 103 | mantis->gpif_status = rst_stat; | ||
| 104 | wake_up(&ca->hif_write_wq); | ||
| 105 | schedule_work(&ca->hif_evm_work); | ||
| 106 | } | ||
| 107 | if (stat & MANTIS_INT_IRQ1) { | ||
| 108 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[2]); | ||
| 109 | schedule_work(&mantis->uart_work); | ||
| 110 | } | ||
| 111 | if (stat & MANTIS_INT_OCERR) { | ||
| 112 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[3]); | ||
| 113 | } | ||
| 114 | if (stat & MANTIS_INT_PABORT) { | ||
| 115 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[4]); | ||
| 116 | } | ||
| 117 | if (stat & MANTIS_INT_RIPERR) { | ||
| 118 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[5]); | ||
| 119 | } | ||
| 120 | if (stat & MANTIS_INT_PPERR) { | ||
| 121 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[6]); | ||
| 122 | } | ||
| 123 | if (stat & MANTIS_INT_FTRGT) { | ||
| 124 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[7]); | ||
| 125 | } | ||
| 126 | if (stat & MANTIS_INT_RISCI) { | ||
| 127 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[8]); | ||
| 128 | mantis->finished_block = (stat & MANTIS_INT_RISCSTAT) >> 28; | ||
| 129 | tasklet_schedule(&mantis->tasklet); | ||
| 130 | } | ||
| 131 | if (stat & MANTIS_INT_I2CDONE) { | ||
| 132 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[9]); | ||
| 133 | wake_up(&mantis->i2c_wq); | ||
| 134 | } | ||
| 135 | mmwrite(stat, MANTIS_INT_STAT); | ||
| 136 | stat &= ~(MANTIS_INT_RISCEN | MANTIS_INT_I2CDONE | | ||
| 137 | MANTIS_INT_I2CRACK | MANTIS_INT_PCMCIA7 | | ||
| 138 | MANTIS_INT_PCMCIA6 | MANTIS_INT_PCMCIA5 | | ||
| 139 | MANTIS_INT_PCMCIA4 | MANTIS_INT_PCMCIA3 | | ||
| 140 | MANTIS_INT_PCMCIA2 | MANTIS_INT_PCMCIA1 | | ||
| 141 | MANTIS_INT_PCMCIA0 | MANTIS_INT_IRQ1 | | ||
| 142 | MANTIS_INT_IRQ0 | MANTIS_INT_OCERR | | ||
| 143 | MANTIS_INT_PABORT | MANTIS_INT_RIPERR | | ||
| 144 | MANTIS_INT_PPERR | MANTIS_INT_FTRGT | | ||
| 145 | MANTIS_INT_RISCI); | ||
| 146 | |||
| 147 | if (stat) | ||
| 148 | dprintk(MANTIS_DEBUG, 0, "<Unknown> Stat=<%02x> Mask=<%02x>", stat, mask); | ||
| 149 | |||
| 150 | dprintk(MANTIS_DEBUG, 0, "\n"); | ||
| 151 | return IRQ_HANDLED; | ||
| 152 | } | ||
| 153 | |||
| 154 | static int __devinit hopper_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id) | ||
| 155 | { | ||
| 156 | struct mantis_pci *mantis; | ||
| 157 | struct mantis_hwconfig *config; | ||
| 158 | int err = 0; | ||
| 159 | |||
| 160 | mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL); | ||
| 161 | if (mantis == NULL) { | ||
| 162 | printk(KERN_ERR "%s ERROR: Out of memory\n", __func__); | ||
| 163 | err = -ENOMEM; | ||
| 164 | goto fail0; | ||
| 165 | } | ||
| 166 | |||
| 167 | mantis->num = devs; | ||
| 168 | mantis->verbose = verbose; | ||
| 169 | mantis->pdev = pdev; | ||
| 170 | config = (struct mantis_hwconfig *) pci_id->driver_data; | ||
| 171 | config->irq_handler = &hopper_irq_handler; | ||
| 172 | mantis->hwconfig = config; | ||
| 173 | |||
| 174 | err = mantis_pci_init(mantis); | ||
| 175 | if (err) { | ||
| 176 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI initialization failed <%d>", err); | ||
| 177 | goto fail1; | ||
| 178 | } | ||
| 179 | |||
| 180 | err = mantis_stream_control(mantis, STREAM_TO_HIF); | ||
| 181 | if (err < 0) { | ||
| 182 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis stream control failed <%d>", err); | ||
| 183 | goto fail1; | ||
| 184 | } | ||
| 185 | |||
| 186 | err = mantis_i2c_init(mantis); | ||
| 187 | if (err < 0) { | ||
| 188 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C initialization failed <%d>", err); | ||
| 189 | goto fail2; | ||
| 190 | } | ||
| 191 | |||
| 192 | err = mantis_get_mac(mantis); | ||
| 193 | if (err < 0) { | ||
| 194 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis MAC address read failed <%d>", err); | ||
| 195 | goto fail2; | ||
| 196 | } | ||
| 197 | |||
| 198 | err = mantis_dma_init(mantis); | ||
| 199 | if (err < 0) { | ||
| 200 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA initialization failed <%d>", err); | ||
| 201 | goto fail3; | ||
| 202 | } | ||
| 203 | |||
| 204 | err = mantis_dvb_init(mantis); | ||
| 205 | if (err < 0) { | ||
| 206 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DVB initialization failed <%d>", err); | ||
| 207 | goto fail4; | ||
| 208 | } | ||
| 209 | devs++; | ||
| 210 | |||
| 211 | return err; | ||
| 212 | |||
| 213 | fail4: | ||
| 214 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA exit! <%d>", err); | ||
| 215 | mantis_dma_exit(mantis); | ||
| 216 | |||
| 217 | fail3: | ||
| 218 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C exit! <%d>", err); | ||
| 219 | mantis_i2c_exit(mantis); | ||
| 220 | |||
| 221 | fail2: | ||
| 222 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI exit! <%d>", err); | ||
| 223 | mantis_pci_exit(mantis); | ||
| 224 | |||
| 225 | fail1: | ||
| 226 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis free! <%d>", err); | ||
| 227 | kfree(mantis); | ||
| 228 | |||
| 229 | fail0: | ||
| 230 | return err; | ||
| 231 | } | ||
| 232 | |||
| 233 | static void __devexit hopper_pci_remove(struct pci_dev *pdev) | ||
| 234 | { | ||
| 235 | struct mantis_pci *mantis = pci_get_drvdata(pdev); | ||
| 236 | |||
| 237 | if (mantis) { | ||
| 238 | mantis_dvb_exit(mantis); | ||
| 239 | mantis_dma_exit(mantis); | ||
| 240 | mantis_i2c_exit(mantis); | ||
| 241 | mantis_pci_exit(mantis); | ||
| 242 | kfree(mantis); | ||
| 243 | } | ||
| 244 | return; | ||
| 245 | |||
| 246 | } | ||
| 247 | |||
| 248 | static struct pci_device_id hopper_pci_table[] = { | ||
| 249 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_3028_DVB_T, &vp3028_config), | ||
| 250 | { } | ||
| 251 | }; | ||
| 252 | |||
| 253 | static struct pci_driver hopper_pci_driver = { | ||
| 254 | .name = DRIVER_NAME, | ||
| 255 | .id_table = hopper_pci_table, | ||
| 256 | .probe = hopper_pci_probe, | ||
| 257 | .remove = hopper_pci_remove, | ||
| 258 | }; | ||
| 259 | |||
| 260 | static int __devinit hopper_init(void) | ||
| 261 | { | ||
| 262 | return pci_register_driver(&hopper_pci_driver); | ||
| 263 | } | ||
| 264 | |||
| 265 | static void __devexit hopper_exit(void) | ||
| 266 | { | ||
| 267 | return pci_unregister_driver(&hopper_pci_driver); | ||
| 268 | } | ||
| 269 | |||
| 270 | module_init(hopper_init); | ||
| 271 | module_exit(hopper_exit); | ||
| 272 | |||
| 273 | MODULE_DESCRIPTION("HOPPER driver"); | ||
| 274 | MODULE_AUTHOR("Manu Abraham"); | ||
| 275 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/mantis/hopper_vp3028.c b/drivers/media/dvb/mantis/hopper_vp3028.c new file mode 100644 index 000000000000..96674c78e86b --- /dev/null +++ b/drivers/media/dvb/mantis/hopper_vp3028.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /* | ||
| 2 | Hopper VP-3028 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "zl10353.h" | ||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_ioc.h" | ||
| 34 | #include "mantis_dvb.h" | ||
| 35 | #include "hopper_vp3028.h" | ||
| 36 | |||
| 37 | struct zl10353_config hopper_vp3028_config = { | ||
| 38 | .demod_address = 0x0f, | ||
| 39 | }; | ||
| 40 | |||
| 41 | #define MANTIS_MODEL_NAME "VP-3028" | ||
| 42 | #define MANTIS_DEV_TYPE "DVB-T" | ||
| 43 | |||
| 44 | static int vp3028_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 45 | { | ||
| 46 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 47 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 48 | int err = 0; | ||
| 49 | |||
| 50 | gpio_set_bits(mantis, config->reset, 0); | ||
| 51 | msleep(100); | ||
| 52 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 53 | msleep(100); | ||
| 54 | gpio_set_bits(mantis, config->reset, 1); | ||
| 55 | |||
| 56 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 57 | if (err == 0) { | ||
| 58 | msleep(250); | ||
| 59 | dprintk(MANTIS_ERROR, 1, "Probing for 10353 (DVB-T)"); | ||
| 60 | fe = zl10353_attach(&hopper_vp3028_config, adapter); | ||
| 61 | |||
| 62 | if (!fe) | ||
| 63 | return -1; | ||
| 64 | } else { | ||
| 65 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 66 | adapter->name, | ||
| 67 | err); | ||
| 68 | |||
| 69 | return -EIO; | ||
| 70 | } | ||
| 71 | dprintk(MANTIS_ERROR, 1, "Done!"); | ||
| 72 | |||
| 73 | return 0; | ||
| 74 | } | ||
| 75 | |||
| 76 | struct mantis_hwconfig vp3028_config = { | ||
| 77 | .model_name = MANTIS_MODEL_NAME, | ||
| 78 | .dev_type = MANTIS_DEV_TYPE, | ||
| 79 | .ts_size = MANTIS_TS_188, | ||
| 80 | |||
| 81 | .baud_rate = MANTIS_BAUD_9600, | ||
| 82 | .parity = MANTIS_PARITY_NONE, | ||
| 83 | .bytes = 0, | ||
| 84 | |||
| 85 | .frontend_init = vp3028_frontend_init, | ||
| 86 | .power = GPIF_A00, | ||
| 87 | .reset = GPIF_A03, | ||
| 88 | }; | ||
diff --git a/drivers/media/dvb/mantis/hopper_vp3028.h b/drivers/media/dvb/mantis/hopper_vp3028.h new file mode 100644 index 000000000000..57239498bc87 --- /dev/null +++ b/drivers/media/dvb/mantis/hopper_vp3028.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Hopper VP-3028 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP3028_H | ||
| 22 | #define __MANTIS_VP3028_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_3028_DVB_T 0x0028 | ||
| 27 | |||
| 28 | extern struct mantis_hwconfig vp3028_config; | ||
| 29 | |||
| 30 | #endif /* __MANTIS_VP3028_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_ca.c b/drivers/media/dvb/mantis/mantis_ca.c new file mode 100644 index 000000000000..403ce043d00e --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_ca.c | |||
| @@ -0,0 +1,207 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "mantis_common.h" | ||
| 32 | #include "mantis_link.h" | ||
| 33 | #include "mantis_hif.h" | ||
| 34 | #include "mantis_reg.h" | ||
| 35 | |||
| 36 | #include "mantis_ca.h" | ||
| 37 | |||
| 38 | static int mantis_ca_read_attr_mem(struct dvb_ca_en50221 *en50221, int slot, int addr) | ||
| 39 | { | ||
| 40 | struct mantis_ca *ca = en50221->data; | ||
| 41 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 42 | |||
| 43 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Request Attribute Mem Read", slot); | ||
| 44 | |||
| 45 | if (slot != 0) | ||
| 46 | return -EINVAL; | ||
| 47 | |||
| 48 | return mantis_hif_read_mem(ca, addr); | ||
| 49 | } | ||
| 50 | |||
| 51 | static int mantis_ca_write_attr_mem(struct dvb_ca_en50221 *en50221, int slot, int addr, u8 data) | ||
| 52 | { | ||
| 53 | struct mantis_ca *ca = en50221->data; | ||
| 54 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 55 | |||
| 56 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Request Attribute Mem Write", slot); | ||
| 57 | |||
| 58 | if (slot != 0) | ||
| 59 | return -EINVAL; | ||
| 60 | |||
| 61 | return mantis_hif_write_mem(ca, addr, data); | ||
| 62 | } | ||
| 63 | |||
| 64 | static int mantis_ca_read_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr) | ||
| 65 | { | ||
| 66 | struct mantis_ca *ca = en50221->data; | ||
| 67 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 68 | |||
| 69 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Request CAM control Read", slot); | ||
| 70 | |||
| 71 | if (slot != 0) | ||
| 72 | return -EINVAL; | ||
| 73 | |||
| 74 | return mantis_hif_read_iom(ca, addr); | ||
| 75 | } | ||
| 76 | |||
| 77 | static int mantis_ca_write_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr, u8 data) | ||
| 78 | { | ||
| 79 | struct mantis_ca *ca = en50221->data; | ||
| 80 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 81 | |||
| 82 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Request CAM control Write", slot); | ||
| 83 | |||
| 84 | if (slot != 0) | ||
| 85 | return -EINVAL; | ||
| 86 | |||
| 87 | return mantis_hif_write_iom(ca, addr, data); | ||
| 88 | } | ||
| 89 | |||
| 90 | static int mantis_ca_slot_reset(struct dvb_ca_en50221 *en50221, int slot) | ||
| 91 | { | ||
| 92 | struct mantis_ca *ca = en50221->data; | ||
| 93 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 94 | |||
| 95 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Slot RESET", slot); | ||
| 96 | udelay(500); /* Wait.. */ | ||
| 97 | mmwrite(0xda, MANTIS_PCMCIA_RESET); /* Leading edge assert */ | ||
| 98 | udelay(500); | ||
| 99 | mmwrite(0x00, MANTIS_PCMCIA_RESET); /* Trailing edge deassert */ | ||
| 100 | msleep(1000); | ||
| 101 | dvb_ca_en50221_camready_irq(&ca->en50221, 0); | ||
| 102 | |||
| 103 | return 0; | ||
| 104 | } | ||
| 105 | |||
| 106 | static int mantis_ca_slot_shutdown(struct dvb_ca_en50221 *en50221, int slot) | ||
| 107 | { | ||
| 108 | struct mantis_ca *ca = en50221->data; | ||
| 109 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 110 | |||
| 111 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Slot shutdown", slot); | ||
| 112 | |||
| 113 | return 0; | ||
| 114 | } | ||
| 115 | |||
| 116 | static int mantis_ts_control(struct dvb_ca_en50221 *en50221, int slot) | ||
| 117 | { | ||
| 118 | struct mantis_ca *ca = en50221->data; | ||
| 119 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 120 | |||
| 121 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): TS control", slot); | ||
| 122 | /* mantis_set_direction(mantis, 1); */ /* Enable TS through CAM */ | ||
| 123 | |||
| 124 | return 0; | ||
| 125 | } | ||
| 126 | |||
| 127 | static int mantis_slot_status(struct dvb_ca_en50221 *en50221, int slot, int open) | ||
| 128 | { | ||
| 129 | struct mantis_ca *ca = en50221->data; | ||
| 130 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 131 | |||
| 132 | dprintk(MANTIS_DEBUG, 1, "Slot(%d): Poll Slot status", slot); | ||
| 133 | |||
| 134 | if (ca->slot_state == MODULE_INSERTED) { | ||
| 135 | dprintk(MANTIS_DEBUG, 1, "CA Module present and ready"); | ||
| 136 | return DVB_CA_EN50221_POLL_CAM_PRESENT | DVB_CA_EN50221_POLL_CAM_READY; | ||
| 137 | } else { | ||
| 138 | dprintk(MANTIS_DEBUG, 1, "CA Module not present or not ready"); | ||
| 139 | } | ||
| 140 | |||
| 141 | return 0; | ||
| 142 | } | ||
| 143 | |||
| 144 | int mantis_ca_init(struct mantis_pci *mantis) | ||
| 145 | { | ||
| 146 | struct dvb_adapter *dvb_adapter = &mantis->dvb_adapter; | ||
| 147 | struct mantis_ca *ca; | ||
| 148 | int ca_flags = 0, result; | ||
| 149 | |||
| 150 | dprintk(MANTIS_DEBUG, 1, "Initializing Mantis CA"); | ||
| 151 | ca = kzalloc(sizeof(struct mantis_ca), GFP_KERNEL); | ||
| 152 | if (!ca) { | ||
| 153 | dprintk(MANTIS_ERROR, 1, "Out of memory!, exiting .."); | ||
| 154 | result = -ENOMEM; | ||
| 155 | goto err; | ||
| 156 | } | ||
| 157 | |||
| 158 | ca->ca_priv = mantis; | ||
| 159 | mantis->mantis_ca = ca; | ||
| 160 | ca_flags = DVB_CA_EN50221_FLAG_IRQ_CAMCHANGE; | ||
| 161 | /* register CA interface */ | ||
| 162 | ca->en50221.owner = THIS_MODULE; | ||
| 163 | ca->en50221.read_attribute_mem = mantis_ca_read_attr_mem; | ||
| 164 | ca->en50221.write_attribute_mem = mantis_ca_write_attr_mem; | ||
| 165 | ca->en50221.read_cam_control = mantis_ca_read_cam_ctl; | ||
| 166 | ca->en50221.write_cam_control = mantis_ca_write_cam_ctl; | ||
| 167 | ca->en50221.slot_reset = mantis_ca_slot_reset; | ||
| 168 | ca->en50221.slot_shutdown = mantis_ca_slot_shutdown; | ||
| 169 | ca->en50221.slot_ts_enable = mantis_ts_control; | ||
| 170 | ca->en50221.poll_slot_status = mantis_slot_status; | ||
| 171 | ca->en50221.data = ca; | ||
| 172 | |||
| 173 | mutex_init(&ca->ca_lock); | ||
| 174 | |||
| 175 | init_waitqueue_head(&ca->hif_data_wq); | ||
| 176 | init_waitqueue_head(&ca->hif_opdone_wq); | ||
| 177 | init_waitqueue_head(&ca->hif_write_wq); | ||
| 178 | |||
| 179 | dprintk(MANTIS_ERROR, 1, "Registering EN50221 device"); | ||
| 180 | result = dvb_ca_en50221_init(dvb_adapter, &ca->en50221, ca_flags, 1); | ||
| 181 | if (result != 0) { | ||
| 182 | dprintk(MANTIS_ERROR, 1, "EN50221: Initialization failed <%d>", result); | ||
| 183 | goto err; | ||
| 184 | } | ||
| 185 | dprintk(MANTIS_ERROR, 1, "Registered EN50221 device"); | ||
| 186 | mantis_evmgr_init(ca); | ||
| 187 | return 0; | ||
| 188 | err: | ||
| 189 | kfree(ca); | ||
| 190 | return result; | ||
| 191 | } | ||
| 192 | EXPORT_SYMBOL_GPL(mantis_ca_init); | ||
| 193 | |||
| 194 | void mantis_ca_exit(struct mantis_pci *mantis) | ||
| 195 | { | ||
| 196 | struct mantis_ca *ca = mantis->mantis_ca; | ||
| 197 | |||
| 198 | dprintk(MANTIS_DEBUG, 1, "Mantis CA exit"); | ||
| 199 | |||
| 200 | mantis_evmgr_exit(ca); | ||
| 201 | dprintk(MANTIS_ERROR, 1, "Unregistering EN50221 device"); | ||
| 202 | if (ca) | ||
| 203 | dvb_ca_en50221_release(&ca->en50221); | ||
| 204 | |||
| 205 | kfree(ca); | ||
| 206 | } | ||
| 207 | EXPORT_SYMBOL_GPL(mantis_ca_exit); | ||
diff --git a/drivers/media/dvb/mantis/mantis_ca.h b/drivers/media/dvb/mantis/mantis_ca.h new file mode 100644 index 000000000000..dc63e55f7eca --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_ca.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_CA_H | ||
| 22 | #define __MANTIS_CA_H | ||
| 23 | |||
| 24 | extern int mantis_ca_init(struct mantis_pci *mantis); | ||
| 25 | extern void mantis_ca_exit(struct mantis_pci *mantis); | ||
| 26 | |||
| 27 | #endif /* __MANTIS_CA_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_cards.c b/drivers/media/dvb/mantis/mantis_cards.c new file mode 100644 index 000000000000..16f1708fd3bc --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_cards.c | |||
| @@ -0,0 +1,305 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/module.h> | ||
| 22 | #include <linux/moduleparam.h> | ||
| 23 | #include <linux/kernel.h> | ||
| 24 | #include <linux/pci.h> | ||
| 25 | #include <asm/irq.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | |||
| 28 | #include "dmxdev.h" | ||
| 29 | #include "dvbdev.h" | ||
| 30 | #include "dvb_demux.h" | ||
| 31 | #include "dvb_frontend.h" | ||
| 32 | #include "dvb_net.h" | ||
| 33 | |||
| 34 | #include "mantis_common.h" | ||
| 35 | |||
| 36 | #include "mantis_vp1033.h" | ||
| 37 | #include "mantis_vp1034.h" | ||
| 38 | #include "mantis_vp1041.h" | ||
| 39 | #include "mantis_vp2033.h" | ||
| 40 | #include "mantis_vp2040.h" | ||
| 41 | #include "mantis_vp3030.h" | ||
| 42 | |||
| 43 | #include "mantis_dma.h" | ||
| 44 | #include "mantis_ca.h" | ||
| 45 | #include "mantis_dvb.h" | ||
| 46 | #include "mantis_uart.h" | ||
| 47 | #include "mantis_ioc.h" | ||
| 48 | #include "mantis_pci.h" | ||
| 49 | #include "mantis_i2c.h" | ||
| 50 | #include "mantis_reg.h" | ||
| 51 | |||
| 52 | static unsigned int verbose; | ||
| 53 | module_param(verbose, int, 0644); | ||
| 54 | MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); | ||
| 55 | |||
| 56 | static int devs; | ||
| 57 | |||
| 58 | #define DRIVER_NAME "Mantis" | ||
| 59 | |||
| 60 | static char *label[10] = { | ||
| 61 | "DMA", | ||
| 62 | "IRQ-0", | ||
| 63 | "IRQ-1", | ||
| 64 | "OCERR", | ||
| 65 | "PABRT", | ||
| 66 | "RIPRR", | ||
| 67 | "PPERR", | ||
| 68 | "FTRGT", | ||
| 69 | "RISCI", | ||
| 70 | "RACK" | ||
| 71 | }; | ||
| 72 | |||
| 73 | static irqreturn_t mantis_irq_handler(int irq, void *dev_id) | ||
| 74 | { | ||
| 75 | u32 stat = 0, mask = 0, lstat = 0, mstat = 0; | ||
| 76 | u32 rst_stat = 0, rst_mask = 0; | ||
| 77 | |||
| 78 | struct mantis_pci *mantis; | ||
| 79 | struct mantis_ca *ca; | ||
| 80 | |||
| 81 | mantis = (struct mantis_pci *) dev_id; | ||
| 82 | if (unlikely(mantis == NULL)) { | ||
| 83 | dprintk(MANTIS_ERROR, 1, "Mantis == NULL"); | ||
| 84 | return IRQ_NONE; | ||
| 85 | } | ||
| 86 | ca = mantis->mantis_ca; | ||
| 87 | |||
| 88 | stat = mmread(MANTIS_INT_STAT); | ||
| 89 | mask = mmread(MANTIS_INT_MASK); | ||
| 90 | mstat = lstat = stat & ~MANTIS_INT_RISCSTAT; | ||
| 91 | if (!(stat & mask)) | ||
| 92 | return IRQ_NONE; | ||
| 93 | |||
| 94 | rst_mask = MANTIS_GPIF_WRACK | | ||
| 95 | MANTIS_GPIF_OTHERR | | ||
| 96 | MANTIS_SBUF_WSTO | | ||
| 97 | MANTIS_GPIF_EXTIRQ; | ||
| 98 | |||
| 99 | rst_stat = mmread(MANTIS_GPIF_STATUS); | ||
| 100 | rst_stat &= rst_mask; | ||
| 101 | mmwrite(rst_stat, MANTIS_GPIF_STATUS); | ||
| 102 | |||
| 103 | mantis->mantis_int_stat = stat; | ||
| 104 | mantis->mantis_int_mask = mask; | ||
| 105 | dprintk(MANTIS_DEBUG, 0, "\n-- Stat=<%02x> Mask=<%02x> --", stat, mask); | ||
| 106 | if (stat & MANTIS_INT_RISCEN) { | ||
| 107 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[0]); | ||
| 108 | } | ||
| 109 | if (stat & MANTIS_INT_IRQ0) { | ||
| 110 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[1]); | ||
| 111 | mantis->gpif_status = rst_stat; | ||
| 112 | wake_up(&ca->hif_write_wq); | ||
| 113 | schedule_work(&ca->hif_evm_work); | ||
| 114 | } | ||
| 115 | if (stat & MANTIS_INT_IRQ1) { | ||
| 116 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[2]); | ||
| 117 | schedule_work(&mantis->uart_work); | ||
| 118 | } | ||
| 119 | if (stat & MANTIS_INT_OCERR) { | ||
| 120 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[3]); | ||
| 121 | } | ||
| 122 | if (stat & MANTIS_INT_PABORT) { | ||
| 123 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[4]); | ||
| 124 | } | ||
| 125 | if (stat & MANTIS_INT_RIPERR) { | ||
| 126 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[5]); | ||
| 127 | } | ||
| 128 | if (stat & MANTIS_INT_PPERR) { | ||
| 129 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[6]); | ||
| 130 | } | ||
| 131 | if (stat & MANTIS_INT_FTRGT) { | ||
| 132 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[7]); | ||
| 133 | } | ||
| 134 | if (stat & MANTIS_INT_RISCI) { | ||
| 135 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[8]); | ||
| 136 | mantis->finished_block = (stat & MANTIS_INT_RISCSTAT) >> 28; | ||
| 137 | tasklet_schedule(&mantis->tasklet); | ||
| 138 | } | ||
| 139 | if (stat & MANTIS_INT_I2CDONE) { | ||
| 140 | dprintk(MANTIS_DEBUG, 0, "<%s>", label[9]); | ||
| 141 | wake_up(&mantis->i2c_wq); | ||
| 142 | } | ||
| 143 | mmwrite(stat, MANTIS_INT_STAT); | ||
| 144 | stat &= ~(MANTIS_INT_RISCEN | MANTIS_INT_I2CDONE | | ||
| 145 | MANTIS_INT_I2CRACK | MANTIS_INT_PCMCIA7 | | ||
| 146 | MANTIS_INT_PCMCIA6 | MANTIS_INT_PCMCIA5 | | ||
| 147 | MANTIS_INT_PCMCIA4 | MANTIS_INT_PCMCIA3 | | ||
| 148 | MANTIS_INT_PCMCIA2 | MANTIS_INT_PCMCIA1 | | ||
| 149 | MANTIS_INT_PCMCIA0 | MANTIS_INT_IRQ1 | | ||
| 150 | MANTIS_INT_IRQ0 | MANTIS_INT_OCERR | | ||
| 151 | MANTIS_INT_PABORT | MANTIS_INT_RIPERR | | ||
| 152 | MANTIS_INT_PPERR | MANTIS_INT_FTRGT | | ||
| 153 | MANTIS_INT_RISCI); | ||
| 154 | |||
| 155 | if (stat) | ||
| 156 | dprintk(MANTIS_DEBUG, 0, "<Unknown> Stat=<%02x> Mask=<%02x>", stat, mask); | ||
| 157 | |||
| 158 | dprintk(MANTIS_DEBUG, 0, "\n"); | ||
| 159 | return IRQ_HANDLED; | ||
| 160 | } | ||
| 161 | |||
| 162 | static int __devinit mantis_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id) | ||
| 163 | { | ||
| 164 | struct mantis_pci *mantis; | ||
| 165 | struct mantis_hwconfig *config; | ||
| 166 | int err = 0; | ||
| 167 | |||
| 168 | mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL); | ||
| 169 | if (mantis == NULL) { | ||
| 170 | printk(KERN_ERR "%s ERROR: Out of memory\n", __func__); | ||
| 171 | err = -ENOMEM; | ||
| 172 | goto fail0; | ||
| 173 | } | ||
| 174 | |||
| 175 | mantis->num = devs; | ||
| 176 | mantis->verbose = verbose; | ||
| 177 | mantis->pdev = pdev; | ||
| 178 | config = (struct mantis_hwconfig *) pci_id->driver_data; | ||
| 179 | config->irq_handler = &mantis_irq_handler; | ||
| 180 | mantis->hwconfig = config; | ||
| 181 | |||
| 182 | err = mantis_pci_init(mantis); | ||
| 183 | if (err) { | ||
| 184 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI initialization failed <%d>", err); | ||
| 185 | goto fail1; | ||
| 186 | } | ||
| 187 | |||
| 188 | err = mantis_stream_control(mantis, STREAM_TO_HIF); | ||
| 189 | if (err < 0) { | ||
| 190 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis stream control failed <%d>", err); | ||
| 191 | goto fail1; | ||
| 192 | } | ||
| 193 | |||
| 194 | err = mantis_i2c_init(mantis); | ||
| 195 | if (err < 0) { | ||
| 196 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C initialization failed <%d>", err); | ||
| 197 | goto fail2; | ||
| 198 | } | ||
| 199 | |||
| 200 | err = mantis_get_mac(mantis); | ||
| 201 | if (err < 0) { | ||
| 202 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis MAC address read failed <%d>", err); | ||
| 203 | goto fail2; | ||
| 204 | } | ||
| 205 | |||
| 206 | err = mantis_dma_init(mantis); | ||
| 207 | if (err < 0) { | ||
| 208 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA initialization failed <%d>", err); | ||
| 209 | goto fail3; | ||
| 210 | } | ||
| 211 | |||
| 212 | err = mantis_dvb_init(mantis); | ||
| 213 | if (err < 0) { | ||
| 214 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DVB initialization failed <%d>", err); | ||
| 215 | goto fail4; | ||
| 216 | } | ||
| 217 | err = mantis_uart_init(mantis); | ||
| 218 | if (err < 0) { | ||
| 219 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis UART initialization failed <%d>", err); | ||
| 220 | goto fail6; | ||
| 221 | } | ||
| 222 | |||
| 223 | devs++; | ||
| 224 | |||
| 225 | return err; | ||
| 226 | |||
| 227 | |||
| 228 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis UART exit! <%d>", err); | ||
| 229 | mantis_uart_exit(mantis); | ||
| 230 | |||
| 231 | fail6: | ||
| 232 | fail4: | ||
| 233 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA exit! <%d>", err); | ||
| 234 | mantis_dma_exit(mantis); | ||
| 235 | |||
| 236 | fail3: | ||
| 237 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C exit! <%d>", err); | ||
| 238 | mantis_i2c_exit(mantis); | ||
| 239 | |||
| 240 | fail2: | ||
| 241 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI exit! <%d>", err); | ||
| 242 | mantis_pci_exit(mantis); | ||
| 243 | |||
| 244 | fail1: | ||
| 245 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis free! <%d>", err); | ||
| 246 | kfree(mantis); | ||
| 247 | |||
| 248 | fail0: | ||
| 249 | return err; | ||
| 250 | } | ||
| 251 | |||
| 252 | static void __devexit mantis_pci_remove(struct pci_dev *pdev) | ||
| 253 | { | ||
| 254 | struct mantis_pci *mantis = pci_get_drvdata(pdev); | ||
| 255 | |||
| 256 | if (mantis) { | ||
| 257 | |||
| 258 | mantis_uart_exit(mantis); | ||
| 259 | mantis_dvb_exit(mantis); | ||
| 260 | mantis_dma_exit(mantis); | ||
| 261 | mantis_i2c_exit(mantis); | ||
| 262 | mantis_pci_exit(mantis); | ||
| 263 | kfree(mantis); | ||
| 264 | } | ||
| 265 | return; | ||
| 266 | } | ||
| 267 | |||
| 268 | static struct pci_device_id mantis_pci_table[] = { | ||
| 269 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1033_DVB_S, &vp1033_config), | ||
| 270 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1034_DVB_S, &vp1034_config), | ||
| 271 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1041_DVB_S2, &vp1041_config), | ||
| 272 | MAKE_ENTRY(TECHNISAT, SKYSTAR_HD2_10, &vp1041_config), | ||
| 273 | MAKE_ENTRY(TECHNISAT, SKYSTAR_HD2_20, &vp1041_config), | ||
| 274 | MAKE_ENTRY(TERRATEC, CINERGY_S2_PCI_HD, &vp1041_config), | ||
| 275 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_2033_DVB_C, &vp2033_config), | ||
| 276 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_2040_DVB_C, &vp2040_config), | ||
| 277 | MAKE_ENTRY(TECHNISAT, CABLESTAR_HD2, &vp2040_config), | ||
| 278 | MAKE_ENTRY(TERRATEC, CINERGY_C, &vp2033_config), | ||
| 279 | MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_3030_DVB_T, &vp3030_config), | ||
| 280 | { } | ||
| 281 | }; | ||
| 282 | |||
| 283 | static struct pci_driver mantis_pci_driver = { | ||
| 284 | .name = DRIVER_NAME, | ||
| 285 | .id_table = mantis_pci_table, | ||
| 286 | .probe = mantis_pci_probe, | ||
| 287 | .remove = mantis_pci_remove, | ||
| 288 | }; | ||
| 289 | |||
| 290 | static int __devinit mantis_init(void) | ||
| 291 | { | ||
| 292 | return pci_register_driver(&mantis_pci_driver); | ||
| 293 | } | ||
| 294 | |||
| 295 | static void __devexit mantis_exit(void) | ||
| 296 | { | ||
| 297 | return pci_unregister_driver(&mantis_pci_driver); | ||
| 298 | } | ||
| 299 | |||
| 300 | module_init(mantis_init); | ||
| 301 | module_exit(mantis_exit); | ||
| 302 | |||
| 303 | MODULE_DESCRIPTION("MANTIS driver"); | ||
| 304 | MODULE_AUTHOR("Manu Abraham"); | ||
| 305 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/mantis/mantis_common.h b/drivers/media/dvb/mantis/mantis_common.h new file mode 100644 index 000000000000..d0b645a483c9 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_common.h | |||
| @@ -0,0 +1,179 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_COMMON_H | ||
| 22 | #define __MANTIS_COMMON_H | ||
| 23 | |||
| 24 | #include <linux/mutex.h> | ||
| 25 | #include <linux/workqueue.h> | ||
| 26 | |||
| 27 | #include "mantis_uart.h" | ||
| 28 | |||
| 29 | #include "mantis_link.h" | ||
| 30 | |||
| 31 | #define MANTIS_ERROR 0 | ||
| 32 | #define MANTIS_NOTICE 1 | ||
| 33 | #define MANTIS_INFO 2 | ||
| 34 | #define MANTIS_DEBUG 3 | ||
| 35 | #define MANTIS_TMG 9 | ||
| 36 | |||
| 37 | #define dprintk(y, z, format, arg...) do { \ | ||
| 38 | if (z) { \ | ||
| 39 | if ((mantis->verbose > MANTIS_ERROR) && (mantis->verbose > y)) \ | ||
| 40 | printk(KERN_ERR "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \ | ||
| 41 | else if ((mantis->verbose > MANTIS_NOTICE) && (mantis->verbose > y)) \ | ||
| 42 | printk(KERN_NOTICE "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \ | ||
| 43 | else if ((mantis->verbose > MANTIS_INFO) && (mantis->verbose > y)) \ | ||
| 44 | printk(KERN_INFO "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \ | ||
| 45 | else if ((mantis->verbose > MANTIS_DEBUG) && (mantis->verbose > y)) \ | ||
| 46 | printk(KERN_DEBUG "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \ | ||
| 47 | else if ((mantis->verbose > MANTIS_TMG) && (mantis->verbose > y)) \ | ||
| 48 | printk(KERN_DEBUG "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \ | ||
| 49 | } else { \ | ||
| 50 | if (mantis->verbose > y) \ | ||
| 51 | printk(format , ##arg); \ | ||
| 52 | } \ | ||
| 53 | } while(0) | ||
| 54 | |||
| 55 | #define mwrite(dat, addr) writel((dat), addr) | ||
| 56 | #define mread(addr) readl(addr) | ||
| 57 | |||
| 58 | #define mmwrite(dat, addr) mwrite((dat), (mantis->mmio + (addr))) | ||
| 59 | #define mmread(addr) mread(mantis->mmio + (addr)) | ||
| 60 | |||
| 61 | #define MANTIS_TS_188 0 | ||
| 62 | #define MANTIS_TS_204 1 | ||
| 63 | |||
| 64 | #define TWINHAN_TECHNOLOGIES 0x1822 | ||
| 65 | #define MANTIS 0x4e35 | ||
| 66 | |||
| 67 | #define TECHNISAT 0x1ae4 | ||
| 68 | #define TERRATEC 0x153b | ||
| 69 | |||
| 70 | #define MAKE_ENTRY(__subven, __subdev, __configptr) { \ | ||
| 71 | .vendor = TWINHAN_TECHNOLOGIES, \ | ||
| 72 | .device = MANTIS, \ | ||
| 73 | .subvendor = (__subven), \ | ||
| 74 | .subdevice = (__subdev), \ | ||
| 75 | .driver_data = (unsigned long) (__configptr) \ | ||
| 76 | } | ||
| 77 | |||
| 78 | enum mantis_i2c_mode { | ||
| 79 | MANTIS_PAGE_MODE = 0, | ||
| 80 | MANTIS_BYTE_MODE, | ||
| 81 | }; | ||
| 82 | |||
| 83 | struct mantis_pci; | ||
| 84 | |||
| 85 | struct mantis_hwconfig { | ||
| 86 | char *model_name; | ||
| 87 | char *dev_type; | ||
| 88 | u32 ts_size; | ||
| 89 | |||
| 90 | enum mantis_baud baud_rate; | ||
| 91 | enum mantis_parity parity; | ||
| 92 | u32 bytes; | ||
| 93 | |||
| 94 | irqreturn_t (*irq_handler)(int irq, void *dev_id); | ||
| 95 | int (*frontend_init)(struct mantis_pci *mantis, struct dvb_frontend *fe); | ||
| 96 | |||
| 97 | u8 power; | ||
| 98 | u8 reset; | ||
| 99 | |||
| 100 | enum mantis_i2c_mode i2c_mode; | ||
| 101 | }; | ||
| 102 | |||
| 103 | struct mantis_pci { | ||
| 104 | unsigned int verbose; | ||
| 105 | |||
| 106 | /* PCI stuff */ | ||
| 107 | u16 vendor_id; | ||
| 108 | u16 device_id; | ||
| 109 | u16 subsystem_vendor; | ||
| 110 | u16 subsystem_device; | ||
| 111 | |||
| 112 | u8 latency; | ||
| 113 | |||
| 114 | struct pci_dev *pdev; | ||
| 115 | |||
| 116 | unsigned long mantis_addr; | ||
| 117 | void __iomem *mmio; | ||
| 118 | |||
| 119 | u8 irq; | ||
| 120 | u8 revision; | ||
| 121 | |||
| 122 | unsigned int num; | ||
| 123 | |||
| 124 | /* RISC Core */ | ||
| 125 | u32 finished_block; | ||
| 126 | u32 last_block; | ||
| 127 | u32 line_bytes; | ||
| 128 | u32 line_count; | ||
| 129 | u32 risc_pos; | ||
| 130 | u8 *buf_cpu; | ||
| 131 | dma_addr_t buf_dma; | ||
| 132 | u32 *risc_cpu; | ||
| 133 | dma_addr_t risc_dma; | ||
| 134 | |||
| 135 | struct tasklet_struct tasklet; | ||
| 136 | |||
| 137 | struct i2c_adapter adapter; | ||
| 138 | int i2c_rc; | ||
| 139 | wait_queue_head_t i2c_wq; | ||
| 140 | struct mutex i2c_lock; | ||
| 141 | |||
| 142 | /* DVB stuff */ | ||
| 143 | struct dvb_adapter dvb_adapter; | ||
| 144 | struct dvb_frontend *fe; | ||
| 145 | struct dvb_demux demux; | ||
| 146 | struct dmxdev dmxdev; | ||
| 147 | struct dmx_frontend fe_hw; | ||
| 148 | struct dmx_frontend fe_mem; | ||
| 149 | struct dvb_net dvbnet; | ||
| 150 | |||
| 151 | u8 feeds; | ||
| 152 | |||
| 153 | struct mantis_hwconfig *hwconfig; | ||
| 154 | |||
| 155 | u32 mantis_int_stat; | ||
| 156 | u32 mantis_int_mask; | ||
| 157 | |||
| 158 | /* board specific */ | ||
| 159 | u8 mac_address[8]; | ||
| 160 | u32 sub_vendor_id; | ||
| 161 | u32 sub_device_id; | ||
| 162 | |||
| 163 | /* A12 A13 A14 */ | ||
| 164 | u32 gpio_status; | ||
| 165 | |||
| 166 | u32 gpif_status; | ||
| 167 | |||
| 168 | struct mantis_ca *mantis_ca; | ||
| 169 | |||
| 170 | wait_queue_head_t uart_wq; | ||
| 171 | struct work_struct uart_work; | ||
| 172 | spinlock_t uart_lock; | ||
| 173 | |||
| 174 | struct input_dev *rc; | ||
| 175 | }; | ||
| 176 | |||
| 177 | #define MANTIS_HIF_STATUS (mantis->gpio_status) | ||
| 178 | |||
| 179 | #endif /* __MANTIS_COMMON_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_core.c b/drivers/media/dvb/mantis/mantis_core.c new file mode 100644 index 000000000000..8113b23ce448 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_core.c | |||
| @@ -0,0 +1,238 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include "mantis_common.h" | ||
| 22 | #include "mantis_core.h" | ||
| 23 | #include "mantis_vp1033.h" | ||
| 24 | #include "mantis_vp1034.h" | ||
| 25 | #include "mantis_vp1041.h" | ||
| 26 | #include "mantis_vp2033.h" | ||
| 27 | #include "mantis_vp2040.h" | ||
| 28 | #include "mantis_vp3030.h" | ||
| 29 | |||
| 30 | static int read_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length) | ||
| 31 | { | ||
| 32 | int err; | ||
| 33 | struct i2c_msg msg[] = { | ||
| 34 | { | ||
| 35 | .addr = 0x50, | ||
| 36 | .flags = 0, | ||
| 37 | .buf = data, | ||
| 38 | .len = 1 | ||
| 39 | }, { | ||
| 40 | .addr = 0x50, | ||
| 41 | .flags = I2C_M_RD, | ||
| 42 | .buf = data, | ||
| 43 | .len = length | ||
| 44 | }, | ||
| 45 | }; | ||
| 46 | |||
| 47 | err = i2c_transfer(&mantis->adapter, msg, 2); | ||
| 48 | if (err < 0) { | ||
| 49 | dprintk(verbose, MANTIS_ERROR, 1, | ||
| 50 | "ERROR: i2c read: < err=%i d0=0x%02x d1=0x%02x >", | ||
| 51 | err, data[0], data[1]); | ||
| 52 | |||
| 53 | return err; | ||
| 54 | } | ||
| 55 | |||
| 56 | return 0; | ||
| 57 | } | ||
| 58 | |||
| 59 | static int write_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length) | ||
| 60 | { | ||
| 61 | int err; | ||
| 62 | |||
| 63 | struct i2c_msg msg = { | ||
| 64 | .addr = 0x50, | ||
| 65 | .flags = 0, | ||
| 66 | .buf = data, | ||
| 67 | .len = length | ||
| 68 | }; | ||
| 69 | |||
| 70 | err = i2c_transfer(&mantis->adapter, &msg, 1); | ||
| 71 | if (err < 0) { | ||
| 72 | dprintk(verbose, MANTIS_ERROR, 1, | ||
| 73 | "ERROR: i2c write: < err=%i length=0x%02x d0=0x%02x, d1=0x%02x >", | ||
| 74 | err, length, data[0], data[1]); | ||
| 75 | |||
| 76 | return err; | ||
| 77 | } | ||
| 78 | |||
| 79 | return 0; | ||
| 80 | } | ||
| 81 | |||
| 82 | static int get_mac_address(struct mantis_pci *mantis) | ||
| 83 | { | ||
| 84 | int err; | ||
| 85 | |||
| 86 | mantis->mac_address[0] = 0x08; | ||
| 87 | err = read_eeprom_byte(mantis, &mantis->mac_address[0], 6); | ||
| 88 | if (err < 0) { | ||
| 89 | dprintk(verbose, MANTIS_ERROR, 1, "Mantis EEPROM read error"); | ||
| 90 | |||
| 91 | return err; | ||
| 92 | } | ||
| 93 | dprintk(verbose, MANTIS_ERROR, 0, | ||
| 94 | " MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]\n", | ||
| 95 | mantis->mac_address[0], mantis->mac_address[1], | ||
| 96 | mantis->mac_address[2], mantis->mac_address[3], | ||
| 97 | mantis->mac_address[4], mantis->mac_address[5]); | ||
| 98 | |||
| 99 | return 0; | ||
| 100 | } | ||
| 101 | |||
| 102 | #define MANTIS_MODEL_UNKNOWN "UNKNOWN" | ||
| 103 | #define MANTIS_DEV_UNKNOWN "UNKNOWN" | ||
| 104 | |||
| 105 | struct mantis_hwconfig unknown_device = { | ||
| 106 | .model_name = MANTIS_MODEL_UNKNOWN, | ||
| 107 | .dev_type = MANTIS_DEV_UNKNOWN, | ||
| 108 | }; | ||
| 109 | |||
| 110 | static void mantis_load_config(struct mantis_pci *mantis) | ||
| 111 | { | ||
| 112 | switch (mantis->subsystem_device) { | ||
| 113 | case MANTIS_VP_1033_DVB_S: /* VP-1033 */ | ||
| 114 | mantis->hwconfig = &vp1033_mantis_config; | ||
| 115 | break; | ||
| 116 | case MANTIS_VP_1034_DVB_S: /* VP-1034 */ | ||
| 117 | mantis->hwconfig = &vp1034_mantis_config; | ||
| 118 | break; | ||
| 119 | case MANTIS_VP_1041_DVB_S2: /* VP-1041 */ | ||
| 120 | case TECHNISAT_SKYSTAR_HD2: | ||
| 121 | mantis->hwconfig = &vp1041_mantis_config; | ||
| 122 | break; | ||
| 123 | case MANTIS_VP_2033_DVB_C: /* VP-2033 */ | ||
| 124 | mantis->hwconfig = &vp2033_mantis_config; | ||
| 125 | break; | ||
| 126 | case MANTIS_VP_2040_DVB_C: /* VP-2040 */ | ||
| 127 | case TERRATEC_CINERGY_C_PCI: /* VP-2040 clone */ | ||
| 128 | case TECHNISAT_CABLESTAR_HD2: | ||
| 129 | mantis->hwconfig = &vp2040_mantis_config; | ||
| 130 | break; | ||
| 131 | case MANTIS_VP_3030_DVB_T: /* VP-3030 */ | ||
| 132 | mantis->hwconfig = &vp3030_mantis_config; | ||
| 133 | break; | ||
| 134 | default: | ||
| 135 | mantis->hwconfig = &unknown_device; | ||
| 136 | break; | ||
| 137 | } | ||
| 138 | } | ||
| 139 | |||
| 140 | int mantis_core_init(struct mantis_pci *mantis) | ||
| 141 | { | ||
| 142 | int err = 0; | ||
| 143 | |||
| 144 | mantis_load_config(mantis); | ||
| 145 | dprintk(verbose, MANTIS_ERROR, 0, "found a %s PCI %s device on (%02x:%02x.%x),\n", | ||
| 146 | mantis->hwconfig->model_name, mantis->hwconfig->dev_type, | ||
| 147 | mantis->pdev->bus->number, PCI_SLOT(mantis->pdev->devfn), PCI_FUNC(mantis->pdev->devfn)); | ||
| 148 | dprintk(verbose, MANTIS_ERROR, 0, " Mantis Rev %d [%04x:%04x], ", | ||
| 149 | mantis->revision, | ||
| 150 | mantis->subsystem_vendor, mantis->subsystem_device); | ||
| 151 | dprintk(verbose, MANTIS_ERROR, 0, | ||
| 152 | "irq: %d, latency: %d\n memory: 0x%lx, mmio: 0x%p\n", | ||
| 153 | mantis->pdev->irq, mantis->latency, | ||
| 154 | mantis->mantis_addr, mantis->mantis_mmio); | ||
| 155 | |||
| 156 | err = mantis_i2c_init(mantis); | ||
| 157 | if (err < 0) { | ||
| 158 | dprintk(verbose, MANTIS_ERROR, 1, "Mantis I2C init failed"); | ||
| 159 | return err; | ||
| 160 | } | ||
| 161 | err = get_mac_address(mantis); | ||
| 162 | if (err < 0) { | ||
| 163 | dprintk(verbose, MANTIS_ERROR, 1, "get MAC address failed"); | ||
| 164 | return err; | ||
| 165 | } | ||
| 166 | err = mantis_dma_init(mantis); | ||
| 167 | if (err < 0) { | ||
| 168 | dprintk(verbose, MANTIS_ERROR, 1, "Mantis DMA init failed"); | ||
| 169 | return err; | ||
| 170 | } | ||
| 171 | err = mantis_dvb_init(mantis); | ||
| 172 | if (err < 0) { | ||
| 173 | dprintk(verbose, MANTIS_DEBUG, 1, "Mantis DVB init failed"); | ||
| 174 | return err; | ||
| 175 | } | ||
| 176 | err = mantis_uart_init(mantis); | ||
| 177 | if (err < 0) { | ||
| 178 | dprintk(verbose, MANTIS_DEBUG, 1, "Mantis UART init failed"); | ||
| 179 | return err; | ||
| 180 | } | ||
| 181 | |||
| 182 | return 0; | ||
| 183 | } | ||
| 184 | |||
| 185 | int mantis_core_exit(struct mantis_pci *mantis) | ||
| 186 | { | ||
| 187 | mantis_dma_stop(mantis); | ||
| 188 | dprintk(verbose, MANTIS_ERROR, 1, "DMA engine stopping"); | ||
| 189 | |||
| 190 | mantis_uart_exit(mantis); | ||
| 191 | dprintk(verbose, MANTIS_ERROR, 1, "UART exit failed"); | ||
| 192 | |||
| 193 | if (mantis_dma_exit(mantis) < 0) | ||
| 194 | dprintk(verbose, MANTIS_ERROR, 1, "DMA exit failed"); | ||
| 195 | if (mantis_dvb_exit(mantis) < 0) | ||
| 196 | dprintk(verbose, MANTIS_ERROR, 1, "DVB exit failed"); | ||
| 197 | if (mantis_i2c_exit(mantis) < 0) | ||
| 198 | dprintk(verbose, MANTIS_ERROR, 1, "I2C adapter delete.. failed"); | ||
| 199 | |||
| 200 | return 0; | ||
| 201 | } | ||
| 202 | |||
| 203 | /* Turn the given bit on or off. */ | ||
| 204 | void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value) | ||
| 205 | { | ||
| 206 | u32 cur; | ||
| 207 | |||
| 208 | cur = mmread(MANTIS_GPIF_ADDR); | ||
| 209 | if (value) | ||
| 210 | mantis->gpio_status = cur | (1 << bitpos); | ||
| 211 | else | ||
| 212 | mantis->gpio_status = cur & (~(1 << bitpos)); | ||
| 213 | |||
| 214 | mmwrite(mantis->gpio_status, MANTIS_GPIF_ADDR); | ||
| 215 | mmwrite(0x00, MANTIS_GPIF_DOUT); | ||
| 216 | udelay(100); | ||
| 217 | } | ||
| 218 | |||
| 219 | /* direction = 0 , no CI passthrough ; 1 , CI passthrough */ | ||
| 220 | void mantis_set_direction(struct mantis_pci *mantis, int direction) | ||
| 221 | { | ||
| 222 | u32 reg; | ||
| 223 | |||
| 224 | reg = mmread(0x28); | ||
| 225 | dprintk(verbose, MANTIS_DEBUG, 1, "TS direction setup"); | ||
| 226 | if (direction == 0x01) { | ||
| 227 | /* to CI */ | ||
| 228 | reg |= 0x04; | ||
| 229 | mmwrite(reg, 0x28); | ||
| 230 | reg &= 0xff - 0x04; | ||
| 231 | mmwrite(reg, 0x28); | ||
| 232 | } else { | ||
| 233 | reg &= 0xff - 0x04; | ||
| 234 | mmwrite(reg, 0x28); | ||
| 235 | reg |= 0x04; | ||
| 236 | mmwrite(reg, 0x28); | ||
| 237 | } | ||
| 238 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_core.h b/drivers/media/dvb/mantis/mantis_core.h new file mode 100644 index 000000000000..833ee42e694e --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_core.h | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_CORE_H | ||
| 22 | #define __MANTIS_CORE_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | |||
| 27 | #define FE_TYPE_SAT 0 | ||
| 28 | #define FE_TYPE_CAB 1 | ||
| 29 | #define FE_TYPE_TER 2 | ||
| 30 | |||
| 31 | #define FE_TYPE_TS204 0 | ||
| 32 | #define FE_TYPE_TS188 1 | ||
| 33 | |||
| 34 | |||
| 35 | struct vendorname { | ||
| 36 | u8 *sub_vendor_name; | ||
| 37 | u32 sub_vendor_id; | ||
| 38 | }; | ||
| 39 | |||
| 40 | struct devicetype { | ||
| 41 | u8 *sub_device_name; | ||
| 42 | u32 sub_device_id; | ||
| 43 | u8 device_type; | ||
| 44 | u32 type_flags; | ||
| 45 | }; | ||
| 46 | |||
| 47 | |||
| 48 | extern int mantis_dma_init(struct mantis_pci *mantis); | ||
| 49 | extern int mantis_dma_exit(struct mantis_pci *mantis); | ||
| 50 | extern void mantis_dma_start(struct mantis_pci *mantis); | ||
| 51 | extern void mantis_dma_stop(struct mantis_pci *mantis); | ||
| 52 | extern int mantis_i2c_init(struct mantis_pci *mantis); | ||
| 53 | extern int mantis_i2c_exit(struct mantis_pci *mantis); | ||
| 54 | extern int mantis_core_init(struct mantis_pci *mantis); | ||
| 55 | extern int mantis_core_exit(struct mantis_pci *mantis); | ||
| 56 | |||
| 57 | #endif /* __MANTIS_CORE_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_dma.c b/drivers/media/dvb/mantis/mantis_dma.c new file mode 100644 index 000000000000..46202a4012aa --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_dma.c | |||
| @@ -0,0 +1,256 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <asm/page.h> | ||
| 23 | #include <linux/vmalloc.h> | ||
| 24 | #include <linux/pci.h> | ||
| 25 | |||
| 26 | #include <asm/irq.h> | ||
| 27 | #include <linux/signal.h> | ||
| 28 | #include <linux/sched.h> | ||
| 29 | #include <linux/interrupt.h> | ||
| 30 | |||
| 31 | #include "dmxdev.h" | ||
| 32 | #include "dvbdev.h" | ||
| 33 | #include "dvb_demux.h" | ||
| 34 | #include "dvb_frontend.h" | ||
| 35 | #include "dvb_net.h" | ||
| 36 | |||
| 37 | #include "mantis_common.h" | ||
| 38 | #include "mantis_reg.h" | ||
| 39 | #include "mantis_dma.h" | ||
| 40 | |||
| 41 | #define RISC_WRITE (0x01 << 28) | ||
| 42 | #define RISC_JUMP (0x07 << 28) | ||
| 43 | #define RISC_IRQ (0x01 << 24) | ||
| 44 | |||
| 45 | #define RISC_STATUS(status) ((((~status) & 0x0f) << 20) | ((status & 0x0f) << 16)) | ||
| 46 | #define RISC_FLUSH() (mantis->risc_pos = 0) | ||
| 47 | #define RISC_INSTR(opcode) (mantis->risc_cpu[mantis->risc_pos++] = cpu_to_le32(opcode)) | ||
| 48 | |||
| 49 | #define MANTIS_BUF_SIZE (64 * 1024) | ||
| 50 | #define MANTIS_BLOCK_BYTES (MANTIS_BUF_SIZE >> 4) | ||
| 51 | #define MANTIS_BLOCK_COUNT (1 << 4) | ||
| 52 | #define MANTIS_RISC_SIZE PAGE_SIZE | ||
| 53 | |||
| 54 | int mantis_dma_exit(struct mantis_pci *mantis) | ||
| 55 | { | ||
| 56 | if (mantis->buf_cpu) { | ||
| 57 | dprintk(MANTIS_ERROR, 1, | ||
| 58 | "DMA=0x%lx cpu=0x%p size=%d", | ||
| 59 | (unsigned long) mantis->buf_dma, | ||
| 60 | mantis->buf_cpu, | ||
| 61 | MANTIS_BUF_SIZE); | ||
| 62 | |||
| 63 | pci_free_consistent(mantis->pdev, MANTIS_BUF_SIZE, | ||
| 64 | mantis->buf_cpu, mantis->buf_dma); | ||
| 65 | |||
| 66 | mantis->buf_cpu = NULL; | ||
| 67 | } | ||
| 68 | if (mantis->risc_cpu) { | ||
| 69 | dprintk(MANTIS_ERROR, 1, | ||
| 70 | "RISC=0x%lx cpu=0x%p size=%lx", | ||
| 71 | (unsigned long) mantis->risc_dma, | ||
| 72 | mantis->risc_cpu, | ||
| 73 | MANTIS_RISC_SIZE); | ||
| 74 | |||
| 75 | pci_free_consistent(mantis->pdev, MANTIS_RISC_SIZE, | ||
| 76 | mantis->risc_cpu, mantis->risc_dma); | ||
| 77 | |||
| 78 | mantis->risc_cpu = NULL; | ||
| 79 | } | ||
| 80 | |||
| 81 | return 0; | ||
| 82 | } | ||
| 83 | EXPORT_SYMBOL_GPL(mantis_dma_exit); | ||
| 84 | |||
| 85 | static inline int mantis_alloc_buffers(struct mantis_pci *mantis) | ||
| 86 | { | ||
| 87 | if (!mantis->buf_cpu) { | ||
| 88 | mantis->buf_cpu = pci_alloc_consistent(mantis->pdev, | ||
| 89 | MANTIS_BUF_SIZE, | ||
| 90 | &mantis->buf_dma); | ||
| 91 | if (!mantis->buf_cpu) { | ||
| 92 | dprintk(MANTIS_ERROR, 1, | ||
| 93 | "DMA buffer allocation failed"); | ||
| 94 | |||
| 95 | goto err; | ||
| 96 | } | ||
| 97 | dprintk(MANTIS_ERROR, 1, | ||
| 98 | "DMA=0x%lx cpu=0x%p size=%d", | ||
| 99 | (unsigned long) mantis->buf_dma, | ||
| 100 | mantis->buf_cpu, MANTIS_BUF_SIZE); | ||
| 101 | } | ||
| 102 | if (!mantis->risc_cpu) { | ||
| 103 | mantis->risc_cpu = pci_alloc_consistent(mantis->pdev, | ||
| 104 | MANTIS_RISC_SIZE, | ||
| 105 | &mantis->risc_dma); | ||
| 106 | |||
| 107 | if (!mantis->risc_cpu) { | ||
| 108 | dprintk(MANTIS_ERROR, 1, | ||
| 109 | "RISC program allocation failed"); | ||
| 110 | |||
| 111 | mantis_dma_exit(mantis); | ||
| 112 | |||
| 113 | goto err; | ||
| 114 | } | ||
| 115 | dprintk(MANTIS_ERROR, 1, | ||
| 116 | "RISC=0x%lx cpu=0x%p size=%lx", | ||
| 117 | (unsigned long) mantis->risc_dma, | ||
| 118 | mantis->risc_cpu, MANTIS_RISC_SIZE); | ||
| 119 | } | ||
| 120 | |||
| 121 | return 0; | ||
| 122 | err: | ||
| 123 | dprintk(MANTIS_ERROR, 1, "Out of memory (?) ....."); | ||
| 124 | return -ENOMEM; | ||
| 125 | } | ||
| 126 | |||
| 127 | static inline int mantis_calc_lines(struct mantis_pci *mantis) | ||
| 128 | { | ||
| 129 | mantis->line_bytes = MANTIS_BLOCK_BYTES; | ||
| 130 | mantis->line_count = MANTIS_BLOCK_COUNT; | ||
| 131 | |||
| 132 | while (mantis->line_bytes > 4095) { | ||
| 133 | mantis->line_bytes >>= 1; | ||
| 134 | mantis->line_count <<= 1; | ||
| 135 | } | ||
| 136 | |||
| 137 | dprintk(MANTIS_DEBUG, 1, "Mantis RISC block bytes=[%d], line bytes=[%d], line count=[%d]", | ||
| 138 | MANTIS_BLOCK_BYTES, mantis->line_bytes, mantis->line_count); | ||
| 139 | |||
| 140 | if (mantis->line_count > 255) { | ||
| 141 | dprintk(MANTIS_ERROR, 1, "Buffer size error"); | ||
| 142 | return -EINVAL; | ||
| 143 | } | ||
| 144 | |||
| 145 | return 0; | ||
| 146 | } | ||
| 147 | |||
| 148 | int mantis_dma_init(struct mantis_pci *mantis) | ||
| 149 | { | ||
| 150 | int err = 0; | ||
| 151 | |||
| 152 | dprintk(MANTIS_DEBUG, 1, "Mantis DMA init"); | ||
| 153 | if (mantis_alloc_buffers(mantis) < 0) { | ||
| 154 | dprintk(MANTIS_ERROR, 1, "Error allocating DMA buffer"); | ||
| 155 | |||
| 156 | /* Stop RISC Engine */ | ||
| 157 | mmwrite(0, MANTIS_DMA_CTL); | ||
| 158 | |||
| 159 | goto err; | ||
| 160 | } | ||
| 161 | err = mantis_calc_lines(mantis); | ||
| 162 | if (err < 0) { | ||
| 163 | dprintk(MANTIS_ERROR, 1, "Mantis calc lines failed"); | ||
| 164 | |||
| 165 | goto err; | ||
| 166 | } | ||
| 167 | |||
| 168 | return 0; | ||
| 169 | err: | ||
| 170 | return err; | ||
| 171 | } | ||
| 172 | EXPORT_SYMBOL_GPL(mantis_dma_init); | ||
| 173 | |||
| 174 | static inline void mantis_risc_program(struct mantis_pci *mantis) | ||
| 175 | { | ||
| 176 | u32 buf_pos = 0; | ||
| 177 | u32 line; | ||
| 178 | |||
| 179 | dprintk(MANTIS_DEBUG, 1, "Mantis create RISC program"); | ||
| 180 | RISC_FLUSH(); | ||
| 181 | |||
| 182 | dprintk(MANTIS_DEBUG, 1, "risc len lines %u, bytes per line %u", | ||
| 183 | mantis->line_count, mantis->line_bytes); | ||
| 184 | |||
| 185 | for (line = 0; line < mantis->line_count; line++) { | ||
| 186 | dprintk(MANTIS_DEBUG, 1, "RISC PROG line=[%d]", line); | ||
| 187 | if (!(buf_pos % MANTIS_BLOCK_BYTES)) { | ||
| 188 | RISC_INSTR(RISC_WRITE | | ||
| 189 | RISC_IRQ | | ||
| 190 | RISC_STATUS(((buf_pos / MANTIS_BLOCK_BYTES) + | ||
| 191 | (MANTIS_BLOCK_COUNT - 1)) % | ||
| 192 | MANTIS_BLOCK_COUNT) | | ||
| 193 | mantis->line_bytes); | ||
| 194 | } else { | ||
| 195 | RISC_INSTR(RISC_WRITE | mantis->line_bytes); | ||
| 196 | } | ||
| 197 | RISC_INSTR(mantis->buf_dma + buf_pos); | ||
| 198 | buf_pos += mantis->line_bytes; | ||
| 199 | } | ||
| 200 | RISC_INSTR(RISC_JUMP); | ||
| 201 | RISC_INSTR(mantis->risc_dma); | ||
| 202 | } | ||
| 203 | |||
| 204 | void mantis_dma_start(struct mantis_pci *mantis) | ||
| 205 | { | ||
| 206 | dprintk(MANTIS_DEBUG, 1, "Mantis Start DMA engine"); | ||
| 207 | |||
| 208 | mantis_risc_program(mantis); | ||
| 209 | mmwrite(mantis->risc_dma, MANTIS_RISC_START); | ||
| 210 | mmwrite(mmread(MANTIS_GPIF_ADDR) | MANTIS_GPIF_HIFRDWRN, MANTIS_GPIF_ADDR); | ||
| 211 | |||
| 212 | mmwrite(0, MANTIS_DMA_CTL); | ||
| 213 | mantis->last_block = mantis->finished_block = 0; | ||
| 214 | |||
| 215 | mmwrite(mmread(MANTIS_INT_MASK) | MANTIS_INT_RISCI, MANTIS_INT_MASK); | ||
| 216 | |||
| 217 | mmwrite(MANTIS_FIFO_EN | MANTIS_DCAP_EN | ||
| 218 | | MANTIS_RISC_EN, MANTIS_DMA_CTL); | ||
| 219 | |||
| 220 | } | ||
| 221 | |||
| 222 | void mantis_dma_stop(struct mantis_pci *mantis) | ||
| 223 | { | ||
| 224 | u32 stat = 0, mask = 0; | ||
| 225 | |||
| 226 | stat = mmread(MANTIS_INT_STAT); | ||
| 227 | mask = mmread(MANTIS_INT_MASK); | ||
| 228 | dprintk(MANTIS_DEBUG, 1, "Mantis Stop DMA engine"); | ||
| 229 | |||
| 230 | mmwrite((mmread(MANTIS_GPIF_ADDR) & (~(MANTIS_GPIF_HIFRDWRN))), MANTIS_GPIF_ADDR); | ||
| 231 | |||
| 232 | mmwrite((mmread(MANTIS_DMA_CTL) & ~(MANTIS_FIFO_EN | | ||
| 233 | MANTIS_DCAP_EN | | ||
| 234 | MANTIS_RISC_EN)), MANTIS_DMA_CTL); | ||
| 235 | |||
| 236 | mmwrite(mmread(MANTIS_INT_STAT), MANTIS_INT_STAT); | ||
| 237 | |||
| 238 | mmwrite(mmread(MANTIS_INT_MASK) & ~(MANTIS_INT_RISCI | | ||
| 239 | MANTIS_INT_RISCEN), MANTIS_INT_MASK); | ||
| 240 | } | ||
| 241 | |||
| 242 | |||
| 243 | void mantis_dma_xfer(unsigned long data) | ||
| 244 | { | ||
| 245 | struct mantis_pci *mantis = (struct mantis_pci *) data; | ||
| 246 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 247 | |||
| 248 | while (mantis->last_block != mantis->finished_block) { | ||
| 249 | dprintk(MANTIS_DEBUG, 1, "last block=[%d] finished block=[%d]", | ||
| 250 | mantis->last_block, mantis->finished_block); | ||
| 251 | |||
| 252 | (config->ts_size ? dvb_dmx_swfilter_204 : dvb_dmx_swfilter) | ||
| 253 | (&mantis->demux, &mantis->buf_cpu[mantis->last_block * MANTIS_BLOCK_BYTES], MANTIS_BLOCK_BYTES); | ||
| 254 | mantis->last_block = (mantis->last_block + 1) % MANTIS_BLOCK_COUNT; | ||
| 255 | } | ||
| 256 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_dma.h b/drivers/media/dvb/mantis/mantis_dma.h new file mode 100644 index 000000000000..6be00fa82094 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_dma.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_DMA_H | ||
| 22 | #define __MANTIS_DMA_H | ||
| 23 | |||
| 24 | extern int mantis_dma_init(struct mantis_pci *mantis); | ||
| 25 | extern int mantis_dma_exit(struct mantis_pci *mantis); | ||
| 26 | extern void mantis_dma_start(struct mantis_pci *mantis); | ||
| 27 | extern void mantis_dma_stop(struct mantis_pci *mantis); | ||
| 28 | extern void mantis_dma_xfer(unsigned long data); | ||
| 29 | |||
| 30 | #endif /* __MANTIS_DMA_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_dvb.c b/drivers/media/dvb/mantis/mantis_dvb.c new file mode 100644 index 000000000000..99d82eec3b03 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_dvb.c | |||
| @@ -0,0 +1,296 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 4 | |||
| 5 | This program is free software; you can redistribute it and/or modify | ||
| 6 | it under the terms of the GNU General Public License as published by | ||
| 7 | the Free Software Foundation; either version 2 of the License, or | ||
| 8 | (at your option) any later version. | ||
| 9 | |||
| 10 | This program is distributed in the hope that it will be useful, | ||
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | GNU General Public License for more details. | ||
| 14 | |||
| 15 | You should have received a copy of the GNU General Public License | ||
| 16 | along with this program; if not, write to the Free Software | ||
| 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/kernel.h> | ||
| 21 | #include <linux/bitops.h> | ||
| 22 | |||
| 23 | #include <linux/signal.h> | ||
| 24 | #include <linux/sched.h> | ||
| 25 | #include <linux/interrupt.h> | ||
| 26 | #include <linux/pci.h> | ||
| 27 | #include <linux/i2c.h> | ||
| 28 | |||
| 29 | #include "dmxdev.h" | ||
| 30 | #include "dvbdev.h" | ||
| 31 | #include "dvb_demux.h" | ||
| 32 | #include "dvb_frontend.h" | ||
| 33 | #include "dvb_net.h" | ||
| 34 | |||
| 35 | #include "mantis_common.h" | ||
| 36 | #include "mantis_dma.h" | ||
| 37 | #include "mantis_ca.h" | ||
| 38 | #include "mantis_ioc.h" | ||
| 39 | #include "mantis_dvb.h" | ||
| 40 | |||
| 41 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); | ||
| 42 | |||
| 43 | int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power) | ||
| 44 | { | ||
| 45 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 46 | |||
| 47 | switch (power) { | ||
| 48 | case POWER_ON: | ||
| 49 | dprintk(MANTIS_DEBUG, 1, "Power ON"); | ||
| 50 | gpio_set_bits(mantis, config->power, POWER_ON); | ||
| 51 | msleep(100); | ||
| 52 | gpio_set_bits(mantis, config->power, POWER_ON); | ||
| 53 | msleep(100); | ||
| 54 | break; | ||
| 55 | |||
| 56 | case POWER_OFF: | ||
| 57 | dprintk(MANTIS_DEBUG, 1, "Power OFF"); | ||
| 58 | gpio_set_bits(mantis, config->power, POWER_OFF); | ||
| 59 | msleep(100); | ||
| 60 | break; | ||
| 61 | |||
| 62 | default: | ||
| 63 | dprintk(MANTIS_DEBUG, 1, "Unknown state <%02x>", power); | ||
| 64 | return -1; | ||
| 65 | } | ||
| 66 | |||
| 67 | return 0; | ||
| 68 | } | ||
| 69 | EXPORT_SYMBOL_GPL(mantis_frontend_power); | ||
| 70 | |||
| 71 | void mantis_frontend_soft_reset(struct mantis_pci *mantis) | ||
| 72 | { | ||
| 73 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 74 | |||
| 75 | dprintk(MANTIS_DEBUG, 1, "Frontend RESET"); | ||
| 76 | gpio_set_bits(mantis, config->reset, 0); | ||
| 77 | msleep(100); | ||
| 78 | gpio_set_bits(mantis, config->reset, 0); | ||
| 79 | msleep(100); | ||
| 80 | gpio_set_bits(mantis, config->reset, 1); | ||
| 81 | msleep(100); | ||
| 82 | gpio_set_bits(mantis, config->reset, 1); | ||
| 83 | msleep(100); | ||
| 84 | |||
| 85 | return; | ||
| 86 | } | ||
| 87 | EXPORT_SYMBOL_GPL(mantis_frontend_soft_reset); | ||
| 88 | |||
| 89 | static int mantis_frontend_shutdown(struct mantis_pci *mantis) | ||
| 90 | { | ||
| 91 | int err; | ||
| 92 | |||
| 93 | mantis_frontend_soft_reset(mantis); | ||
| 94 | err = mantis_frontend_power(mantis, POWER_OFF); | ||
| 95 | if (err != 0) { | ||
| 96 | dprintk(MANTIS_ERROR, 1, "Frontend POWER OFF failed! <%d>", err); | ||
| 97 | return 1; | ||
| 98 | } | ||
| 99 | |||
| 100 | return 0; | ||
| 101 | } | ||
| 102 | |||
| 103 | static int mantis_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) | ||
| 104 | { | ||
| 105 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | ||
| 106 | struct mantis_pci *mantis = dvbdmx->priv; | ||
| 107 | |||
| 108 | dprintk(MANTIS_DEBUG, 1, "Mantis DVB Start feed"); | ||
| 109 | if (!dvbdmx->dmx.frontend) { | ||
| 110 | dprintk(MANTIS_DEBUG, 1, "no frontend ?"); | ||
| 111 | return -EINVAL; | ||
| 112 | } | ||
| 113 | |||
| 114 | mantis->feeds++; | ||
| 115 | dprintk(MANTIS_DEBUG, 1, "mantis start feed, feeds=%d", mantis->feeds); | ||
| 116 | |||
| 117 | if (mantis->feeds == 1) { | ||
| 118 | dprintk(MANTIS_DEBUG, 1, "mantis start feed & dma"); | ||
| 119 | mantis_dma_start(mantis); | ||
| 120 | } | ||
| 121 | |||
| 122 | return mantis->feeds; | ||
| 123 | } | ||
| 124 | |||
| 125 | static int mantis_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) | ||
| 126 | { | ||
| 127 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | ||
| 128 | struct mantis_pci *mantis = dvbdmx->priv; | ||
| 129 | |||
| 130 | dprintk(MANTIS_DEBUG, 1, "Mantis DVB Stop feed"); | ||
| 131 | if (!dvbdmx->dmx.frontend) { | ||
| 132 | dprintk(MANTIS_DEBUG, 1, "no frontend ?"); | ||
| 133 | return -EINVAL; | ||
| 134 | } | ||
| 135 | |||
| 136 | mantis->feeds--; | ||
| 137 | if (mantis->feeds == 0) { | ||
| 138 | dprintk(MANTIS_DEBUG, 1, "mantis stop feed and dma"); | ||
| 139 | mantis_dma_stop(mantis); | ||
| 140 | } | ||
| 141 | |||
| 142 | return 0; | ||
| 143 | } | ||
| 144 | |||
| 145 | int __devinit mantis_dvb_init(struct mantis_pci *mantis) | ||
| 146 | { | ||
| 147 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 148 | int result = -1; | ||
| 149 | |||
| 150 | dprintk(MANTIS_DEBUG, 1, "dvb_register_adapter"); | ||
| 151 | |||
| 152 | result = dvb_register_adapter(&mantis->dvb_adapter, | ||
| 153 | "Mantis DVB adapter", | ||
| 154 | THIS_MODULE, | ||
| 155 | &mantis->pdev->dev, | ||
| 156 | adapter_nr); | ||
| 157 | |||
| 158 | if (result < 0) { | ||
| 159 | |||
| 160 | dprintk(MANTIS_ERROR, 1, "Error registering adapter"); | ||
| 161 | return -ENODEV; | ||
| 162 | } | ||
| 163 | |||
| 164 | mantis->dvb_adapter.priv = mantis; | ||
| 165 | mantis->demux.dmx.capabilities = DMX_TS_FILTERING | | ||
| 166 | DMX_SECTION_FILTERING | | ||
| 167 | DMX_MEMORY_BASED_FILTERING; | ||
| 168 | |||
| 169 | mantis->demux.priv = mantis; | ||
| 170 | mantis->demux.filternum = 256; | ||
| 171 | mantis->demux.feednum = 256; | ||
| 172 | mantis->demux.start_feed = mantis_dvb_start_feed; | ||
| 173 | mantis->demux.stop_feed = mantis_dvb_stop_feed; | ||
| 174 | mantis->demux.write_to_decoder = NULL; | ||
| 175 | |||
| 176 | dprintk(MANTIS_DEBUG, 1, "dvb_dmx_init"); | ||
| 177 | result = dvb_dmx_init(&mantis->demux); | ||
| 178 | if (result < 0) { | ||
| 179 | dprintk(MANTIS_ERROR, 1, "dvb_dmx_init failed, ERROR=%d", result); | ||
| 180 | |||
| 181 | goto err0; | ||
| 182 | } | ||
| 183 | |||
| 184 | mantis->dmxdev.filternum = 256; | ||
| 185 | mantis->dmxdev.demux = &mantis->demux.dmx; | ||
| 186 | mantis->dmxdev.capabilities = 0; | ||
| 187 | dprintk(MANTIS_DEBUG, 1, "dvb_dmxdev_init"); | ||
| 188 | |||
| 189 | result = dvb_dmxdev_init(&mantis->dmxdev, &mantis->dvb_adapter); | ||
| 190 | if (result < 0) { | ||
| 191 | |||
| 192 | dprintk(MANTIS_ERROR, 1, "dvb_dmxdev_init failed, ERROR=%d", result); | ||
| 193 | goto err1; | ||
| 194 | } | ||
| 195 | |||
| 196 | mantis->fe_hw.source = DMX_FRONTEND_0; | ||
| 197 | result = mantis->demux.dmx.add_frontend(&mantis->demux.dmx, &mantis->fe_hw); | ||
| 198 | if (result < 0) { | ||
| 199 | |||
| 200 | dprintk(MANTIS_ERROR, 1, "dvb_dmx_init failed, ERROR=%d", result); | ||
| 201 | goto err2; | ||
| 202 | } | ||
| 203 | |||
| 204 | mantis->fe_mem.source = DMX_MEMORY_FE; | ||
| 205 | result = mantis->demux.dmx.add_frontend(&mantis->demux.dmx, &mantis->fe_mem); | ||
| 206 | if (result < 0) { | ||
| 207 | dprintk(MANTIS_ERROR, 1, "dvb_dmx_init failed, ERROR=%d", result); | ||
| 208 | goto err3; | ||
| 209 | } | ||
| 210 | |||
| 211 | result = mantis->demux.dmx.connect_frontend(&mantis->demux.dmx, &mantis->fe_hw); | ||
| 212 | if (result < 0) { | ||
| 213 | dprintk(MANTIS_ERROR, 1, "dvb_dmx_init failed, ERROR=%d", result); | ||
| 214 | goto err4; | ||
| 215 | } | ||
| 216 | |||
| 217 | dvb_net_init(&mantis->dvb_adapter, &mantis->dvbnet, &mantis->demux.dmx); | ||
| 218 | tasklet_init(&mantis->tasklet, mantis_dma_xfer, (unsigned long) mantis); | ||
| 219 | if (mantis->hwconfig) { | ||
| 220 | result = config->frontend_init(mantis, mantis->fe); | ||
| 221 | if (result < 0) { | ||
| 222 | dprintk(MANTIS_ERROR, 1, "!!! NO Frontends found !!!"); | ||
| 223 | goto err5; | ||
| 224 | } else { | ||
| 225 | if (mantis->fe == NULL) { | ||
| 226 | dprintk(MANTIS_ERROR, 1, "FE <NULL>"); | ||
| 227 | goto err5; | ||
| 228 | } | ||
| 229 | |||
| 230 | if (dvb_register_frontend(&mantis->dvb_adapter, mantis->fe)) { | ||
| 231 | dprintk(MANTIS_ERROR, 1, "ERROR: Frontend registration failed"); | ||
| 232 | |||
| 233 | if (mantis->fe->ops.release) | ||
| 234 | mantis->fe->ops.release(mantis->fe); | ||
| 235 | |||
| 236 | mantis->fe = NULL; | ||
| 237 | goto err5; | ||
| 238 | } | ||
| 239 | } | ||
| 240 | } | ||
| 241 | |||
| 242 | return 0; | ||
| 243 | |||
| 244 | /* Error conditions .. */ | ||
| 245 | err5: | ||
| 246 | tasklet_kill(&mantis->tasklet); | ||
| 247 | dvb_net_release(&mantis->dvbnet); | ||
| 248 | dvb_unregister_frontend(mantis->fe); | ||
| 249 | dvb_frontend_detach(mantis->fe); | ||
| 250 | err4: | ||
| 251 | mantis->demux.dmx.remove_frontend(&mantis->demux.dmx, &mantis->fe_mem); | ||
| 252 | |||
| 253 | err3: | ||
| 254 | mantis->demux.dmx.remove_frontend(&mantis->demux.dmx, &mantis->fe_hw); | ||
| 255 | |||
| 256 | err2: | ||
| 257 | dvb_dmxdev_release(&mantis->dmxdev); | ||
| 258 | |||
| 259 | err1: | ||
| 260 | dvb_dmx_release(&mantis->demux); | ||
| 261 | |||
| 262 | err0: | ||
| 263 | dvb_unregister_adapter(&mantis->dvb_adapter); | ||
| 264 | |||
| 265 | return result; | ||
| 266 | } | ||
| 267 | EXPORT_SYMBOL_GPL(mantis_dvb_init); | ||
| 268 | |||
| 269 | int __devexit mantis_dvb_exit(struct mantis_pci *mantis) | ||
| 270 | { | ||
| 271 | int err; | ||
| 272 | |||
| 273 | if (mantis->fe) { | ||
| 274 | /* mantis_ca_exit(mantis); */ | ||
| 275 | err = mantis_frontend_shutdown(mantis); | ||
| 276 | if (err != 0) | ||
| 277 | dprintk(MANTIS_ERROR, 1, "Frontend exit while POWER ON! <%d>", err); | ||
| 278 | dvb_unregister_frontend(mantis->fe); | ||
| 279 | dvb_frontend_detach(mantis->fe); | ||
| 280 | } | ||
| 281 | |||
| 282 | tasklet_kill(&mantis->tasklet); | ||
| 283 | dvb_net_release(&mantis->dvbnet); | ||
| 284 | |||
| 285 | mantis->demux.dmx.remove_frontend(&mantis->demux.dmx, &mantis->fe_mem); | ||
| 286 | mantis->demux.dmx.remove_frontend(&mantis->demux.dmx, &mantis->fe_hw); | ||
| 287 | |||
| 288 | dvb_dmxdev_release(&mantis->dmxdev); | ||
| 289 | dvb_dmx_release(&mantis->demux); | ||
| 290 | |||
| 291 | dprintk(MANTIS_DEBUG, 1, "dvb_unregister_adapter"); | ||
| 292 | dvb_unregister_adapter(&mantis->dvb_adapter); | ||
| 293 | |||
| 294 | return 0; | ||
| 295 | } | ||
| 296 | EXPORT_SYMBOL_GPL(mantis_dvb_exit); | ||
diff --git a/drivers/media/dvb/mantis/mantis_dvb.h b/drivers/media/dvb/mantis/mantis_dvb.h new file mode 100644 index 000000000000..464199db304e --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_dvb.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_DVB_H | ||
| 22 | #define __MANTIS_DVB_H | ||
| 23 | |||
| 24 | enum mantis_power { | ||
| 25 | POWER_OFF = 0, | ||
| 26 | POWER_ON = 1 | ||
| 27 | }; | ||
| 28 | |||
| 29 | extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power); | ||
| 30 | extern void mantis_frontend_soft_reset(struct mantis_pci *mantis); | ||
| 31 | |||
| 32 | extern int mantis_dvb_init(struct mantis_pci *mantis); | ||
| 33 | extern int mantis_dvb_exit(struct mantis_pci *mantis); | ||
| 34 | |||
| 35 | #endif /* __MANTIS_DVB_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_evm.c b/drivers/media/dvb/mantis/mantis_evm.c new file mode 100644 index 000000000000..a7b369a439d6 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_evm.c | |||
| @@ -0,0 +1,117 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | |||
| 23 | #include <linux/signal.h> | ||
| 24 | #include <linux/sched.h> | ||
| 25 | #include <linux/interrupt.h> | ||
| 26 | |||
| 27 | #include "dmxdev.h" | ||
| 28 | #include "dvbdev.h" | ||
| 29 | #include "dvb_demux.h" | ||
| 30 | #include "dvb_frontend.h" | ||
| 31 | #include "dvb_net.h" | ||
| 32 | |||
| 33 | #include "mantis_common.h" | ||
| 34 | #include "mantis_link.h" | ||
| 35 | #include "mantis_hif.h" | ||
| 36 | #include "mantis_reg.h" | ||
| 37 | |||
| 38 | static void mantis_hifevm_work(struct work_struct *work) | ||
| 39 | { | ||
| 40 | struct mantis_ca *ca = container_of(work, struct mantis_ca, hif_evm_work); | ||
| 41 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 42 | |||
| 43 | u32 gpif_stat, gpif_mask; | ||
| 44 | |||
| 45 | gpif_stat = mmread(MANTIS_GPIF_STATUS); | ||
| 46 | gpif_mask = mmread(MANTIS_GPIF_IRQCFG); | ||
| 47 | |||
| 48 | if (gpif_stat & MANTIS_GPIF_DETSTAT) { | ||
| 49 | if (gpif_stat & MANTIS_CARD_PLUGIN) { | ||
| 50 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): CAM Plugin", mantis->num); | ||
| 51 | mmwrite(0xdada0000, MANTIS_CARD_RESET); | ||
| 52 | mantis_event_cam_plugin(ca); | ||
| 53 | dvb_ca_en50221_camchange_irq(&ca->en50221, | ||
| 54 | 0, | ||
| 55 | DVB_CA_EN50221_CAMCHANGE_INSERTED); | ||
| 56 | } | ||
| 57 | } else { | ||
| 58 | if (gpif_stat & MANTIS_CARD_PLUGOUT) { | ||
| 59 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): CAM Unplug", mantis->num); | ||
| 60 | mmwrite(0xdada0000, MANTIS_CARD_RESET); | ||
| 61 | mantis_event_cam_unplug(ca); | ||
| 62 | dvb_ca_en50221_camchange_irq(&ca->en50221, | ||
| 63 | 0, | ||
| 64 | DVB_CA_EN50221_CAMCHANGE_REMOVED); | ||
| 65 | } | ||
| 66 | } | ||
| 67 | |||
| 68 | if (mantis->gpif_status & MANTIS_GPIF_EXTIRQ) | ||
| 69 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Ext IRQ", mantis->num); | ||
| 70 | |||
| 71 | if (mantis->gpif_status & MANTIS_SBUF_WSTO) | ||
| 72 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Timeout", mantis->num); | ||
| 73 | |||
| 74 | if (mantis->gpif_status & MANTIS_GPIF_OTHERR) | ||
| 75 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Alignment Error", mantis->num); | ||
| 76 | |||
| 77 | if (gpif_stat & MANTIS_SBUF_OVFLW) | ||
| 78 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Overflow", mantis->num); | ||
| 79 | |||
| 80 | if (gpif_stat & MANTIS_GPIF_BRRDY) | ||
| 81 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Read Ready", mantis->num); | ||
| 82 | |||
| 83 | if (gpif_stat & MANTIS_GPIF_INTSTAT) | ||
| 84 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): GPIF IRQ", mantis->num); | ||
| 85 | |||
| 86 | if (gpif_stat & MANTIS_SBUF_EMPTY) | ||
| 87 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Empty", mantis->num); | ||
| 88 | |||
| 89 | if (gpif_stat & MANTIS_SBUF_OPDONE) { | ||
| 90 | dprintk(MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer operation complete", mantis->num); | ||
| 91 | ca->sbuf_status = MANTIS_SBUF_DATA_AVAIL; | ||
| 92 | ca->hif_event = MANTIS_SBUF_OPDONE; | ||
| 93 | wake_up(&ca->hif_opdone_wq); | ||
| 94 | } | ||
| 95 | } | ||
| 96 | |||
| 97 | int mantis_evmgr_init(struct mantis_ca *ca) | ||
| 98 | { | ||
| 99 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 100 | |||
| 101 | dprintk(MANTIS_DEBUG, 1, "Initializing Mantis Host I/F Event manager"); | ||
| 102 | INIT_WORK(&ca->hif_evm_work, mantis_hifevm_work); | ||
| 103 | mantis_pcmcia_init(ca); | ||
| 104 | schedule_work(&ca->hif_evm_work); | ||
| 105 | mantis_hif_init(ca); | ||
| 106 | return 0; | ||
| 107 | } | ||
| 108 | |||
| 109 | void mantis_evmgr_exit(struct mantis_ca *ca) | ||
| 110 | { | ||
| 111 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 112 | |||
| 113 | dprintk(MANTIS_DEBUG, 1, "Mantis Host I/F Event manager exiting"); | ||
| 114 | flush_scheduled_work(); | ||
| 115 | mantis_hif_exit(ca); | ||
| 116 | mantis_pcmcia_exit(ca); | ||
| 117 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_hif.c b/drivers/media/dvb/mantis/mantis_hif.c new file mode 100644 index 000000000000..7477dac628b4 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_hif.c | |||
| @@ -0,0 +1,240 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <linux/signal.h> | ||
| 23 | #include <linux/sched.h> | ||
| 24 | |||
| 25 | #include <linux/signal.h> | ||
| 26 | #include <linux/sched.h> | ||
| 27 | #include <linux/interrupt.h> | ||
| 28 | |||
| 29 | #include "dmxdev.h" | ||
| 30 | #include "dvbdev.h" | ||
| 31 | #include "dvb_demux.h" | ||
| 32 | #include "dvb_frontend.h" | ||
| 33 | #include "dvb_net.h" | ||
| 34 | |||
| 35 | #include "mantis_common.h" | ||
| 36 | |||
| 37 | #include "mantis_hif.h" | ||
| 38 | #include "mantis_link.h" /* temporary due to physical layer stuff */ | ||
| 39 | |||
| 40 | #include "mantis_reg.h" | ||
| 41 | |||
| 42 | |||
| 43 | static int mantis_hif_sbuf_opdone_wait(struct mantis_ca *ca) | ||
| 44 | { | ||
| 45 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 46 | int rc = 0; | ||
| 47 | |||
| 48 | if (wait_event_timeout(ca->hif_opdone_wq, | ||
| 49 | ca->hif_event & MANTIS_SBUF_OPDONE, | ||
| 50 | msecs_to_jiffies(500)) == -ERESTARTSYS) { | ||
| 51 | |||
| 52 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): Smart buffer operation timeout !", mantis->num); | ||
| 53 | rc = -EREMOTEIO; | ||
| 54 | } | ||
| 55 | dprintk(MANTIS_DEBUG, 1, "Smart Buffer Operation complete"); | ||
| 56 | ca->hif_event &= ~MANTIS_SBUF_OPDONE; | ||
| 57 | return rc; | ||
| 58 | } | ||
| 59 | |||
| 60 | static int mantis_hif_write_wait(struct mantis_ca *ca) | ||
| 61 | { | ||
| 62 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 63 | u32 opdone = 0, timeout = 0; | ||
| 64 | int rc = 0; | ||
| 65 | |||
| 66 | if (wait_event_timeout(ca->hif_write_wq, | ||
| 67 | mantis->gpif_status & MANTIS_GPIF_WRACK, | ||
| 68 | msecs_to_jiffies(500)) == -ERESTARTSYS) { | ||
| 69 | |||
| 70 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): Write ACK timed out !", mantis->num); | ||
| 71 | rc = -EREMOTEIO; | ||
| 72 | } | ||
| 73 | dprintk(MANTIS_DEBUG, 1, "Write Acknowledged"); | ||
| 74 | mantis->gpif_status &= ~MANTIS_GPIF_WRACK; | ||
| 75 | while (!opdone) { | ||
| 76 | opdone = (mmread(MANTIS_GPIF_STATUS) & MANTIS_SBUF_OPDONE); | ||
| 77 | udelay(500); | ||
| 78 | timeout++; | ||
| 79 | if (timeout > 100) { | ||
| 80 | dprintk(MANTIS_ERROR, 1, "Adater(%d) Slot(0): Write operation timed out!", mantis->num); | ||
| 81 | rc = -ETIMEDOUT; | ||
| 82 | break; | ||
| 83 | } | ||
| 84 | } | ||
| 85 | dprintk(MANTIS_DEBUG, 1, "HIF Write success"); | ||
| 86 | return rc; | ||
| 87 | } | ||
| 88 | |||
| 89 | |||
| 90 | int mantis_hif_read_mem(struct mantis_ca *ca, u32 addr) | ||
| 91 | { | ||
| 92 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 93 | u32 hif_addr = 0, data, count = 4; | ||
| 94 | |||
| 95 | dprintk(MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF Mem Read", mantis->num); | ||
| 96 | mutex_lock(&ca->ca_lock); | ||
| 97 | hif_addr &= ~MANTIS_GPIF_PCMCIAREG; | ||
| 98 | hif_addr &= ~MANTIS_GPIF_PCMCIAIOM; | ||
| 99 | hif_addr |= MANTIS_HIF_STATUS; | ||
| 100 | hif_addr |= addr; | ||
| 101 | |||
| 102 | mmwrite(hif_addr, MANTIS_GPIF_BRADDR); | ||
| 103 | mmwrite(count, MANTIS_GPIF_BRBYTES); | ||
| 104 | udelay(20); | ||
| 105 | mmwrite(hif_addr | MANTIS_GPIF_HIFRDWRN, MANTIS_GPIF_ADDR); | ||
| 106 | |||
| 107 | if (mantis_hif_sbuf_opdone_wait(ca) != 0) { | ||
| 108 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): GPIF Smart Buffer operation failed", mantis->num); | ||
| 109 | mutex_unlock(&ca->ca_lock); | ||
| 110 | return -EREMOTEIO; | ||
| 111 | } | ||
| 112 | data = mmread(MANTIS_GPIF_DIN); | ||
| 113 | mutex_unlock(&ca->ca_lock); | ||
| 114 | dprintk(MANTIS_DEBUG, 1, "Mem Read: 0x%02x", data); | ||
| 115 | return (data >> 24) & 0xff; | ||
| 116 | } | ||
| 117 | |||
| 118 | int mantis_hif_write_mem(struct mantis_ca *ca, u32 addr, u8 data) | ||
| 119 | { | ||
| 120 | struct mantis_slot *slot = ca->slot; | ||
| 121 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 122 | u32 hif_addr = 0; | ||
| 123 | |||
| 124 | dprintk(MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF Mem Write", mantis->num); | ||
| 125 | mutex_lock(&ca->ca_lock); | ||
| 126 | hif_addr &= ~MANTIS_GPIF_HIFRDWRN; | ||
| 127 | hif_addr &= ~MANTIS_GPIF_PCMCIAREG; | ||
| 128 | hif_addr &= ~MANTIS_GPIF_PCMCIAIOM; | ||
| 129 | hif_addr |= MANTIS_HIF_STATUS; | ||
| 130 | hif_addr |= addr; | ||
| 131 | |||
| 132 | mmwrite(slot->slave_cfg, MANTIS_GPIF_CFGSLA); /* Slot0 alone for now */ | ||
| 133 | mmwrite(hif_addr, MANTIS_GPIF_ADDR); | ||
| 134 | mmwrite(data, MANTIS_GPIF_DOUT); | ||
| 135 | |||
| 136 | if (mantis_hif_write_wait(ca) != 0) { | ||
| 137 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num); | ||
| 138 | mutex_unlock(&ca->ca_lock); | ||
| 139 | return -EREMOTEIO; | ||
| 140 | } | ||
| 141 | dprintk(MANTIS_DEBUG, 1, "Mem Write: (0x%02x to 0x%02x)", data, addr); | ||
| 142 | mutex_unlock(&ca->ca_lock); | ||
| 143 | |||
| 144 | return 0; | ||
| 145 | } | ||
| 146 | |||
| 147 | int mantis_hif_read_iom(struct mantis_ca *ca, u32 addr) | ||
| 148 | { | ||
| 149 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 150 | u32 data, hif_addr = 0; | ||
| 151 | |||
| 152 | dprintk(MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF I/O Read", mantis->num); | ||
| 153 | mutex_lock(&ca->ca_lock); | ||
| 154 | hif_addr &= ~MANTIS_GPIF_PCMCIAREG; | ||
| 155 | hif_addr |= MANTIS_GPIF_PCMCIAIOM; | ||
| 156 | hif_addr |= MANTIS_HIF_STATUS; | ||
| 157 | hif_addr |= addr; | ||
| 158 | |||
| 159 | mmwrite(hif_addr, MANTIS_GPIF_BRADDR); | ||
| 160 | mmwrite(1, MANTIS_GPIF_BRBYTES); | ||
| 161 | udelay(20); | ||
| 162 | mmwrite(hif_addr | MANTIS_GPIF_HIFRDWRN, MANTIS_GPIF_ADDR); | ||
| 163 | |||
| 164 | if (mantis_hif_sbuf_opdone_wait(ca) != 0) { | ||
| 165 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num); | ||
| 166 | mutex_unlock(&ca->ca_lock); | ||
| 167 | return -EREMOTEIO; | ||
| 168 | } | ||
| 169 | data = mmread(MANTIS_GPIF_DIN); | ||
| 170 | dprintk(MANTIS_DEBUG, 1, "I/O Read: 0x%02x", data); | ||
| 171 | udelay(50); | ||
| 172 | mutex_unlock(&ca->ca_lock); | ||
| 173 | |||
| 174 | return (u8) data; | ||
| 175 | } | ||
| 176 | |||
| 177 | int mantis_hif_write_iom(struct mantis_ca *ca, u32 addr, u8 data) | ||
| 178 | { | ||
| 179 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 180 | u32 hif_addr = 0; | ||
| 181 | |||
| 182 | dprintk(MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF I/O Write", mantis->num); | ||
| 183 | mutex_lock(&ca->ca_lock); | ||
| 184 | hif_addr &= ~MANTIS_GPIF_PCMCIAREG; | ||
| 185 | hif_addr &= ~MANTIS_GPIF_HIFRDWRN; | ||
| 186 | hif_addr |= MANTIS_GPIF_PCMCIAIOM; | ||
| 187 | hif_addr |= MANTIS_HIF_STATUS; | ||
| 188 | hif_addr |= addr; | ||
| 189 | |||
| 190 | mmwrite(hif_addr, MANTIS_GPIF_ADDR); | ||
| 191 | mmwrite(data, MANTIS_GPIF_DOUT); | ||
| 192 | |||
| 193 | if (mantis_hif_write_wait(ca) != 0) { | ||
| 194 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num); | ||
| 195 | mutex_unlock(&ca->ca_lock); | ||
| 196 | return -EREMOTEIO; | ||
| 197 | } | ||
| 198 | dprintk(MANTIS_DEBUG, 1, "I/O Write: (0x%02x to 0x%02x)", data, addr); | ||
| 199 | mutex_unlock(&ca->ca_lock); | ||
| 200 | udelay(50); | ||
| 201 | |||
| 202 | return 0; | ||
| 203 | } | ||
| 204 | |||
| 205 | int mantis_hif_init(struct mantis_ca *ca) | ||
| 206 | { | ||
| 207 | struct mantis_slot *slot = ca->slot; | ||
| 208 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 209 | u32 irqcfg; | ||
| 210 | |||
| 211 | slot[0].slave_cfg = 0x70773028; | ||
| 212 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Initializing Mantis Host Interface", mantis->num); | ||
| 213 | |||
| 214 | mutex_lock(&ca->ca_lock); | ||
| 215 | irqcfg = mmread(MANTIS_GPIF_IRQCFG); | ||
| 216 | irqcfg = MANTIS_MASK_BRRDY | | ||
| 217 | MANTIS_MASK_WRACK | | ||
| 218 | MANTIS_MASK_EXTIRQ | | ||
| 219 | MANTIS_MASK_WSTO | | ||
| 220 | MANTIS_MASK_OTHERR | | ||
| 221 | MANTIS_MASK_OVFLW; | ||
| 222 | |||
| 223 | mmwrite(irqcfg, MANTIS_GPIF_IRQCFG); | ||
| 224 | mutex_unlock(&ca->ca_lock); | ||
| 225 | |||
| 226 | return 0; | ||
| 227 | } | ||
| 228 | |||
| 229 | void mantis_hif_exit(struct mantis_ca *ca) | ||
| 230 | { | ||
| 231 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 232 | u32 irqcfg; | ||
| 233 | |||
| 234 | dprintk(MANTIS_ERROR, 1, "Adapter(%d) Exiting Mantis Host Interface", mantis->num); | ||
| 235 | mutex_lock(&ca->ca_lock); | ||
| 236 | irqcfg = mmread(MANTIS_GPIF_IRQCFG); | ||
| 237 | irqcfg &= ~MANTIS_MASK_BRRDY; | ||
| 238 | mmwrite(irqcfg, MANTIS_GPIF_IRQCFG); | ||
| 239 | mutex_unlock(&ca->ca_lock); | ||
| 240 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_hif.h b/drivers/media/dvb/mantis/mantis_hif.h new file mode 100644 index 000000000000..9094f9ed2362 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_hif.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_HIF_H | ||
| 22 | #define __MANTIS_HIF_H | ||
| 23 | |||
| 24 | #define MANTIS_HIF_MEMRD 1 | ||
| 25 | #define MANTIS_HIF_MEMWR 2 | ||
| 26 | #define MANTIS_HIF_IOMRD 3 | ||
| 27 | #define MANTIS_HIF_IOMWR 4 | ||
| 28 | |||
| 29 | #endif /* __MANTIS_HIF_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_i2c.c b/drivers/media/dvb/mantis/mantis_i2c.c new file mode 100644 index 000000000000..7870bcf9689a --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_i2c.c | |||
| @@ -0,0 +1,267 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <asm/io.h> | ||
| 22 | #include <linux/ioport.h> | ||
| 23 | #include <linux/pci.h> | ||
| 24 | #include <linux/i2c.h> | ||
| 25 | |||
| 26 | #include "dmxdev.h" | ||
| 27 | #include "dvbdev.h" | ||
| 28 | #include "dvb_demux.h" | ||
| 29 | #include "dvb_frontend.h" | ||
| 30 | #include "dvb_net.h" | ||
| 31 | |||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_reg.h" | ||
| 34 | #include "mantis_i2c.h" | ||
| 35 | |||
| 36 | #define TRIALS 10000 | ||
| 37 | |||
| 38 | static int mantis_i2c_read(struct mantis_pci *mantis, const struct i2c_msg *msg) | ||
| 39 | { | ||
| 40 | u32 rxd, i, stat, trials; | ||
| 41 | |||
| 42 | dprintk(MANTIS_INFO, 0, " %s: Address=[0x%02x] <R>[ ", | ||
| 43 | __func__, msg->addr); | ||
| 44 | |||
| 45 | for (i = 0; i < msg->len; i++) { | ||
| 46 | rxd = (msg->addr << 25) | (1 << 24) | ||
| 47 | | MANTIS_I2C_RATE_3 | ||
| 48 | | MANTIS_I2C_STOP | ||
| 49 | | MANTIS_I2C_PGMODE; | ||
| 50 | |||
| 51 | if (i == (msg->len - 1)) | ||
| 52 | rxd &= ~MANTIS_I2C_STOP; | ||
| 53 | |||
| 54 | mmwrite(MANTIS_INT_I2CDONE, MANTIS_INT_STAT); | ||
| 55 | mmwrite(rxd, MANTIS_I2CDATA_CTL); | ||
| 56 | |||
| 57 | /* wait for xfer completion */ | ||
| 58 | for (trials = 0; trials < TRIALS; trials++) { | ||
| 59 | stat = mmread(MANTIS_INT_STAT); | ||
| 60 | if (stat & MANTIS_INT_I2CDONE) | ||
| 61 | break; | ||
| 62 | } | ||
| 63 | |||
| 64 | dprintk(MANTIS_TMG, 0, "I2CDONE: trials=%d\n", trials); | ||
| 65 | |||
| 66 | /* wait for xfer completion */ | ||
| 67 | for (trials = 0; trials < TRIALS; trials++) { | ||
| 68 | stat = mmread(MANTIS_INT_STAT); | ||
| 69 | if (stat & MANTIS_INT_I2CRACK) | ||
| 70 | break; | ||
| 71 | } | ||
| 72 | |||
| 73 | dprintk(MANTIS_TMG, 0, "I2CRACK: trials=%d\n", trials); | ||
| 74 | |||
| 75 | rxd = mmread(MANTIS_I2CDATA_CTL); | ||
| 76 | msg->buf[i] = (u8)((rxd >> 8) & 0xFF); | ||
| 77 | dprintk(MANTIS_INFO, 0, "%02x ", msg->buf[i]); | ||
| 78 | } | ||
| 79 | dprintk(MANTIS_INFO, 0, "]\n"); | ||
| 80 | |||
| 81 | return 0; | ||
| 82 | } | ||
| 83 | |||
| 84 | static int mantis_i2c_write(struct mantis_pci *mantis, const struct i2c_msg *msg) | ||
| 85 | { | ||
| 86 | int i; | ||
| 87 | u32 txd = 0, stat, trials; | ||
| 88 | |||
| 89 | dprintk(MANTIS_INFO, 0, " %s: Address=[0x%02x] <W>[ ", | ||
| 90 | __func__, msg->addr); | ||
| 91 | |||
| 92 | for (i = 0; i < msg->len; i++) { | ||
| 93 | dprintk(MANTIS_INFO, 0, "%02x ", msg->buf[i]); | ||
| 94 | txd = (msg->addr << 25) | (msg->buf[i] << 8) | ||
| 95 | | MANTIS_I2C_RATE_3 | ||
| 96 | | MANTIS_I2C_STOP | ||
| 97 | | MANTIS_I2C_PGMODE; | ||
| 98 | |||
| 99 | if (i == (msg->len - 1)) | ||
| 100 | txd &= ~MANTIS_I2C_STOP; | ||
| 101 | |||
| 102 | mmwrite(MANTIS_INT_I2CDONE, MANTIS_INT_STAT); | ||
| 103 | mmwrite(txd, MANTIS_I2CDATA_CTL); | ||
| 104 | |||
| 105 | /* wait for xfer completion */ | ||
| 106 | for (trials = 0; trials < TRIALS; trials++) { | ||
| 107 | stat = mmread(MANTIS_INT_STAT); | ||
| 108 | if (stat & MANTIS_INT_I2CDONE) | ||
| 109 | break; | ||
| 110 | } | ||
| 111 | |||
| 112 | dprintk(MANTIS_TMG, 0, "I2CDONE: trials=%d\n", trials); | ||
| 113 | |||
| 114 | /* wait for xfer completion */ | ||
| 115 | for (trials = 0; trials < TRIALS; trials++) { | ||
| 116 | stat = mmread(MANTIS_INT_STAT); | ||
| 117 | if (stat & MANTIS_INT_I2CRACK) | ||
| 118 | break; | ||
| 119 | } | ||
| 120 | |||
| 121 | dprintk(MANTIS_TMG, 0, "I2CRACK: trials=%d\n", trials); | ||
| 122 | } | ||
| 123 | dprintk(MANTIS_INFO, 0, "]\n"); | ||
| 124 | |||
| 125 | return 0; | ||
| 126 | } | ||
| 127 | |||
| 128 | static int mantis_i2c_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num) | ||
| 129 | { | ||
| 130 | int ret = 0, i = 0, trials; | ||
| 131 | u32 stat, data, txd; | ||
| 132 | struct mantis_pci *mantis; | ||
| 133 | struct mantis_hwconfig *config; | ||
| 134 | |||
| 135 | mantis = i2c_get_adapdata(adapter); | ||
| 136 | BUG_ON(!mantis); | ||
| 137 | config = mantis->hwconfig; | ||
| 138 | BUG_ON(!config); | ||
| 139 | |||
| 140 | dprintk(MANTIS_DEBUG, 1, "Messages:%d", num); | ||
| 141 | mutex_lock(&mantis->i2c_lock); | ||
| 142 | |||
| 143 | while (i < num) { | ||
| 144 | /* Byte MODE */ | ||
| 145 | if ((config->i2c_mode & MANTIS_BYTE_MODE) && | ||
| 146 | ((i + 1) < num) && | ||
| 147 | (msgs[i].len < 2) && | ||
| 148 | (msgs[i + 1].len < 2) && | ||
| 149 | (msgs[i + 1].flags & I2C_M_RD)) { | ||
| 150 | |||
| 151 | dprintk(MANTIS_DEBUG, 0, " Byte MODE:\n"); | ||
| 152 | |||
| 153 | /* Read operation */ | ||
| 154 | txd = msgs[i].addr << 25 | (0x1 << 24) | ||
| 155 | | (msgs[i].buf[0] << 16) | ||
| 156 | | MANTIS_I2C_RATE_3; | ||
| 157 | |||
| 158 | mmwrite(txd, MANTIS_I2CDATA_CTL); | ||
| 159 | /* wait for xfer completion */ | ||
| 160 | for (trials = 0; trials < TRIALS; trials++) { | ||
| 161 | stat = mmread(MANTIS_INT_STAT); | ||
| 162 | if (stat & MANTIS_INT_I2CDONE) | ||
| 163 | break; | ||
| 164 | } | ||
| 165 | |||
| 166 | /* check for xfer completion */ | ||
| 167 | if (stat & MANTIS_INT_I2CDONE) { | ||
| 168 | /* check xfer was acknowledged */ | ||
| 169 | if (stat & MANTIS_INT_I2CRACK) { | ||
| 170 | data = mmread(MANTIS_I2CDATA_CTL); | ||
| 171 | msgs[i + 1].buf[0] = (data >> 8) & 0xff; | ||
| 172 | dprintk(MANTIS_DEBUG, 0, " Byte <%d> RXD=0x%02x [%02x]\n", 0x0, data, msgs[i + 1].buf[0]); | ||
| 173 | } else { | ||
| 174 | /* I/O error */ | ||
| 175 | dprintk(MANTIS_ERROR, 1, " I/O error, LINE:%d", __LINE__); | ||
| 176 | ret = -EIO; | ||
| 177 | break; | ||
| 178 | } | ||
| 179 | } else { | ||
| 180 | /* I/O error */ | ||
| 181 | dprintk(MANTIS_ERROR, 1, " I/O error, LINE:%d", __LINE__); | ||
| 182 | ret = -EIO; | ||
| 183 | break; | ||
| 184 | } | ||
| 185 | i += 2; /* Write/Read operation in one go */ | ||
| 186 | } | ||
| 187 | |||
| 188 | if (i < num) { | ||
| 189 | if (msgs[i].flags & I2C_M_RD) | ||
| 190 | ret = mantis_i2c_read(mantis, &msgs[i]); | ||
| 191 | else | ||
| 192 | ret = mantis_i2c_write(mantis, &msgs[i]); | ||
| 193 | |||
| 194 | i++; | ||
| 195 | if (ret < 0) | ||
| 196 | goto bail_out; | ||
| 197 | } | ||
| 198 | |||
| 199 | } | ||
| 200 | |||
| 201 | mutex_unlock(&mantis->i2c_lock); | ||
| 202 | |||
| 203 | return num; | ||
| 204 | |||
| 205 | bail_out: | ||
| 206 | mutex_unlock(&mantis->i2c_lock); | ||
| 207 | return ret; | ||
| 208 | } | ||
| 209 | |||
| 210 | static u32 mantis_i2c_func(struct i2c_adapter *adapter) | ||
| 211 | { | ||
| 212 | return I2C_FUNC_SMBUS_EMUL; | ||
| 213 | } | ||
| 214 | |||
| 215 | static struct i2c_algorithm mantis_algo = { | ||
| 216 | .master_xfer = mantis_i2c_xfer, | ||
| 217 | .functionality = mantis_i2c_func, | ||
| 218 | }; | ||
| 219 | |||
| 220 | int __devinit mantis_i2c_init(struct mantis_pci *mantis) | ||
| 221 | { | ||
| 222 | u32 intstat, intmask; | ||
| 223 | struct i2c_adapter *i2c_adapter = &mantis->adapter; | ||
| 224 | struct pci_dev *pdev = mantis->pdev; | ||
| 225 | |||
| 226 | init_waitqueue_head(&mantis->i2c_wq); | ||
| 227 | mutex_init(&mantis->i2c_lock); | ||
| 228 | strncpy(i2c_adapter->name, "Mantis I2C", sizeof(i2c_adapter->name)); | ||
| 229 | i2c_set_adapdata(i2c_adapter, mantis); | ||
| 230 | |||
| 231 | i2c_adapter->owner = THIS_MODULE; | ||
| 232 | i2c_adapter->class = I2C_CLASS_TV_DIGITAL; | ||
| 233 | i2c_adapter->algo = &mantis_algo; | ||
| 234 | i2c_adapter->algo_data = NULL; | ||
| 235 | i2c_adapter->timeout = 500; | ||
| 236 | i2c_adapter->retries = 3; | ||
| 237 | i2c_adapter->dev.parent = &pdev->dev; | ||
| 238 | |||
| 239 | mantis->i2c_rc = i2c_add_adapter(i2c_adapter); | ||
| 240 | if (mantis->i2c_rc < 0) | ||
| 241 | return mantis->i2c_rc; | ||
| 242 | |||
| 243 | dprintk(MANTIS_DEBUG, 1, "Initializing I2C .."); | ||
| 244 | |||
| 245 | intstat = mmread(MANTIS_INT_STAT); | ||
| 246 | intmask = mmread(MANTIS_INT_MASK); | ||
| 247 | mmwrite(intstat, MANTIS_INT_STAT); | ||
| 248 | dprintk(MANTIS_DEBUG, 1, "Disabling I2C interrupt"); | ||
| 249 | intmask = mmread(MANTIS_INT_MASK); | ||
| 250 | mmwrite((intmask & ~MANTIS_INT_I2CDONE), MANTIS_INT_MASK); | ||
| 251 | |||
| 252 | return 0; | ||
| 253 | } | ||
| 254 | EXPORT_SYMBOL_GPL(mantis_i2c_init); | ||
| 255 | |||
| 256 | int mantis_i2c_exit(struct mantis_pci *mantis) | ||
| 257 | { | ||
| 258 | u32 intmask; | ||
| 259 | |||
| 260 | dprintk(MANTIS_DEBUG, 1, "Disabling I2C interrupt"); | ||
| 261 | intmask = mmread(MANTIS_INT_MASK); | ||
| 262 | mmwrite((intmask & ~MANTIS_INT_I2CDONE), MANTIS_INT_MASK); | ||
| 263 | |||
| 264 | dprintk(MANTIS_DEBUG, 1, "Removing I2C adapter"); | ||
| 265 | return i2c_del_adapter(&mantis->adapter); | ||
| 266 | } | ||
| 267 | EXPORT_SYMBOL_GPL(mantis_i2c_exit); | ||
diff --git a/drivers/media/dvb/mantis/mantis_i2c.h b/drivers/media/dvb/mantis/mantis_i2c.h new file mode 100644 index 000000000000..1342df2faed8 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_i2c.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_I2C_H | ||
| 22 | #define __MANTIS_I2C_H | ||
| 23 | |||
| 24 | #define I2C_STOP (1 << 0) | ||
| 25 | #define I2C_READ (1 << 1) | ||
| 26 | |||
| 27 | extern int mantis_i2c_init(struct mantis_pci *mantis); | ||
| 28 | extern int mantis_i2c_exit(struct mantis_pci *mantis); | ||
| 29 | |||
| 30 | #endif /* __MANTIS_I2C_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_input.c b/drivers/media/dvb/mantis/mantis_input.c new file mode 100644 index 000000000000..6a9df779441f --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_input.c | |||
| @@ -0,0 +1,148 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/input.h> | ||
| 22 | #include <media/ir-common.h> | ||
| 23 | #include <linux/pci.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "mantis_common.h" | ||
| 32 | #include "mantis_reg.h" | ||
| 33 | #include "mantis_uart.h" | ||
| 34 | |||
| 35 | static struct ir_scancode mantis_ir_table[] = { | ||
| 36 | { 0x29, KEY_POWER }, | ||
| 37 | { 0x28, KEY_FAVORITES }, | ||
| 38 | { 0x30, KEY_TEXT }, | ||
| 39 | { 0x17, KEY_INFO }, /* Preview */ | ||
| 40 | { 0x23, KEY_EPG }, | ||
| 41 | { 0x3b, KEY_F22 }, /* Record List */ | ||
| 42 | { 0x3c, KEY_1 }, | ||
| 43 | { 0x3e, KEY_2 }, | ||
| 44 | { 0x39, KEY_3 }, | ||
| 45 | { 0x36, KEY_4 }, | ||
| 46 | { 0x22, KEY_5 }, | ||
| 47 | { 0x20, KEY_6 }, | ||
| 48 | { 0x32, KEY_7 }, | ||
| 49 | { 0x26, KEY_8 }, | ||
| 50 | { 0x24, KEY_9 }, | ||
| 51 | { 0x2a, KEY_0 }, | ||
| 52 | |||
| 53 | { 0x33, KEY_CANCEL }, | ||
| 54 | { 0x2c, KEY_BACK }, | ||
| 55 | { 0x15, KEY_CLEAR }, | ||
| 56 | { 0x3f, KEY_TAB }, | ||
| 57 | { 0x10, KEY_ENTER }, | ||
| 58 | { 0x14, KEY_UP }, | ||
| 59 | { 0x0d, KEY_RIGHT }, | ||
| 60 | { 0x0e, KEY_DOWN }, | ||
| 61 | { 0x11, KEY_LEFT }, | ||
| 62 | |||
| 63 | { 0x21, KEY_VOLUMEUP }, | ||
| 64 | { 0x35, KEY_VOLUMEDOWN }, | ||
| 65 | { 0x3d, KEY_CHANNELDOWN }, | ||
| 66 | { 0x3a, KEY_CHANNELUP }, | ||
| 67 | { 0x2e, KEY_RECORD }, | ||
| 68 | { 0x2b, KEY_PLAY }, | ||
| 69 | { 0x13, KEY_PAUSE }, | ||
| 70 | { 0x25, KEY_STOP }, | ||
| 71 | |||
| 72 | { 0x1f, KEY_REWIND }, | ||
| 73 | { 0x2d, KEY_FASTFORWARD }, | ||
| 74 | { 0x1e, KEY_PREVIOUS }, /* Replay |< */ | ||
| 75 | { 0x1d, KEY_NEXT }, /* Skip >| */ | ||
| 76 | |||
| 77 | { 0x0b, KEY_CAMERA }, /* Capture */ | ||
| 78 | { 0x0f, KEY_LANGUAGE }, /* SAP */ | ||
| 79 | { 0x18, KEY_MODE }, /* PIP */ | ||
| 80 | { 0x12, KEY_ZOOM }, /* Full screen */ | ||
| 81 | { 0x1c, KEY_SUBTITLE }, | ||
| 82 | { 0x2f, KEY_MUTE }, | ||
| 83 | { 0x16, KEY_F20 }, /* L/R */ | ||
| 84 | { 0x38, KEY_F21 }, /* Hibernate */ | ||
| 85 | |||
| 86 | { 0x37, KEY_SWITCHVIDEOMODE }, /* A/V */ | ||
| 87 | { 0x31, KEY_AGAIN }, /* Recall */ | ||
| 88 | { 0x1a, KEY_KPPLUS }, /* Zoom+ */ | ||
| 89 | { 0x19, KEY_KPMINUS }, /* Zoom- */ | ||
| 90 | { 0x27, KEY_RED }, | ||
| 91 | { 0x0C, KEY_GREEN }, | ||
| 92 | { 0x01, KEY_YELLOW }, | ||
| 93 | { 0x00, KEY_BLUE }, | ||
| 94 | }; | ||
| 95 | |||
| 96 | struct ir_scancode_table ir_mantis = { | ||
| 97 | .scan = mantis_ir_table, | ||
| 98 | .size = ARRAY_SIZE(mantis_ir_table), | ||
| 99 | }; | ||
| 100 | EXPORT_SYMBOL_GPL(ir_mantis); | ||
| 101 | |||
| 102 | int mantis_input_init(struct mantis_pci *mantis) | ||
| 103 | { | ||
| 104 | struct input_dev *rc; | ||
| 105 | struct ir_input_state rc_state; | ||
| 106 | char name[80], dev[80]; | ||
| 107 | int err; | ||
| 108 | |||
| 109 | rc = input_allocate_device(); | ||
| 110 | if (!rc) { | ||
| 111 | dprintk(MANTIS_ERROR, 1, "Input device allocate failed"); | ||
| 112 | return -ENOMEM; | ||
| 113 | } | ||
| 114 | |||
| 115 | sprintf(name, "Mantis %s IR receiver", mantis->hwconfig->model_name); | ||
| 116 | sprintf(dev, "pci-%s/ir0", pci_name(mantis->pdev)); | ||
| 117 | |||
| 118 | rc->name = name; | ||
| 119 | rc->phys = dev; | ||
| 120 | |||
| 121 | ir_input_init(rc, &rc_state, IR_TYPE_OTHER); | ||
| 122 | |||
| 123 | rc->id.bustype = BUS_PCI; | ||
| 124 | rc->id.vendor = mantis->vendor_id; | ||
| 125 | rc->id.product = mantis->device_id; | ||
| 126 | rc->id.version = 1; | ||
| 127 | rc->dev = mantis->pdev->dev; | ||
| 128 | |||
| 129 | err = ir_input_register(rc, &ir_mantis); | ||
| 130 | if (err) { | ||
| 131 | dprintk(MANTIS_ERROR, 1, "IR device registration failed, ret = %d", err); | ||
| 132 | input_free_device(rc); | ||
| 133 | return -ENODEV; | ||
| 134 | } | ||
| 135 | |||
| 136 | mantis->rc = rc; | ||
| 137 | |||
| 138 | return 0; | ||
| 139 | } | ||
| 140 | |||
| 141 | int mantis_exit(struct mantis_pci *mantis) | ||
| 142 | { | ||
| 143 | struct input_dev *rc = mantis->rc; | ||
| 144 | |||
| 145 | ir_input_unregister(rc); | ||
| 146 | |||
| 147 | return 0; | ||
| 148 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_ioc.c b/drivers/media/dvb/mantis/mantis_ioc.c new file mode 100644 index 000000000000..de148ded52d8 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_ioc.c | |||
| @@ -0,0 +1,130 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <linux/i2c.h> | ||
| 23 | |||
| 24 | #include <linux/signal.h> | ||
| 25 | #include <linux/sched.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | |||
| 28 | #include "dmxdev.h" | ||
| 29 | #include "dvbdev.h" | ||
| 30 | #include "dvb_demux.h" | ||
| 31 | #include "dvb_frontend.h" | ||
| 32 | #include "dvb_net.h" | ||
| 33 | |||
| 34 | #include "mantis_common.h" | ||
| 35 | #include "mantis_reg.h" | ||
| 36 | #include "mantis_ioc.h" | ||
| 37 | |||
| 38 | static int read_eeprom_bytes(struct mantis_pci *mantis, u8 reg, u8 *data, u8 length) | ||
| 39 | { | ||
| 40 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 41 | int err; | ||
| 42 | u8 buf = reg; | ||
| 43 | |||
| 44 | struct i2c_msg msg[] = { | ||
| 45 | { .addr = 0x50, .flags = 0, .buf = &buf, .len = 1 }, | ||
| 46 | { .addr = 0x50, .flags = I2C_M_RD, .buf = data, .len = length }, | ||
| 47 | }; | ||
| 48 | |||
| 49 | err = i2c_transfer(adapter, msg, 2); | ||
| 50 | if (err < 0) { | ||
| 51 | dprintk(MANTIS_ERROR, 1, "ERROR: i2c read: < err=%i d0=0x%02x d1=0x%02x >", | ||
| 52 | err, data[0], data[1]); | ||
| 53 | |||
| 54 | return err; | ||
| 55 | } | ||
| 56 | |||
| 57 | return 0; | ||
| 58 | } | ||
| 59 | int mantis_get_mac(struct mantis_pci *mantis) | ||
| 60 | { | ||
| 61 | int err; | ||
| 62 | u8 mac_addr[6] = {0}; | ||
| 63 | |||
| 64 | err = read_eeprom_bytes(mantis, 0x08, mac_addr, 6); | ||
| 65 | if (err < 0) { | ||
| 66 | dprintk(MANTIS_ERROR, 1, "ERROR: Mantis EEPROM read error <%d>", err); | ||
| 67 | |||
| 68 | return err; | ||
| 69 | } | ||
| 70 | |||
| 71 | dprintk(MANTIS_ERROR, 0, | ||
| 72 | " MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]\n", | ||
| 73 | mac_addr[0], | ||
| 74 | mac_addr[1], | ||
| 75 | mac_addr[2], | ||
| 76 | mac_addr[3], | ||
| 77 | mac_addr[4], | ||
| 78 | mac_addr[5]); | ||
| 79 | |||
| 80 | return 0; | ||
| 81 | } | ||
| 82 | EXPORT_SYMBOL_GPL(mantis_get_mac); | ||
| 83 | |||
| 84 | /* Turn the given bit on or off. */ | ||
| 85 | void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value) | ||
| 86 | { | ||
| 87 | u32 cur; | ||
| 88 | |||
| 89 | dprintk(MANTIS_DEBUG, 1, "Set Bit <%d> to <%d>", bitpos, value); | ||
| 90 | cur = mmread(MANTIS_GPIF_ADDR); | ||
| 91 | if (value) | ||
| 92 | mantis->gpio_status = cur | (1 << bitpos); | ||
| 93 | else | ||
| 94 | mantis->gpio_status = cur & (~(1 << bitpos)); | ||
| 95 | |||
| 96 | dprintk(MANTIS_DEBUG, 1, "GPIO Value <%02x>", mantis->gpio_status); | ||
| 97 | mmwrite(mantis->gpio_status, MANTIS_GPIF_ADDR); | ||
| 98 | mmwrite(0x00, MANTIS_GPIF_DOUT); | ||
| 99 | } | ||
| 100 | EXPORT_SYMBOL_GPL(gpio_set_bits); | ||
| 101 | |||
| 102 | int mantis_stream_control(struct mantis_pci *mantis, enum mantis_stream_control stream_ctl) | ||
| 103 | { | ||
| 104 | u32 reg; | ||
| 105 | |||
| 106 | reg = mmread(MANTIS_CONTROL); | ||
| 107 | switch (stream_ctl) { | ||
| 108 | case STREAM_TO_HIF: | ||
| 109 | dprintk(MANTIS_DEBUG, 1, "Set stream to HIF"); | ||
| 110 | reg &= 0xff - MANTIS_BYPASS; | ||
| 111 | mmwrite(reg, MANTIS_CONTROL); | ||
| 112 | reg |= MANTIS_BYPASS; | ||
| 113 | mmwrite(reg, MANTIS_CONTROL); | ||
| 114 | break; | ||
| 115 | |||
| 116 | case STREAM_TO_CAM: | ||
| 117 | dprintk(MANTIS_DEBUG, 1, "Set stream to CAM"); | ||
| 118 | reg |= MANTIS_BYPASS; | ||
| 119 | mmwrite(reg, MANTIS_CONTROL); | ||
| 120 | reg &= 0xff - MANTIS_BYPASS; | ||
| 121 | mmwrite(reg, MANTIS_CONTROL); | ||
| 122 | break; | ||
| 123 | default: | ||
| 124 | dprintk(MANTIS_ERROR, 1, "Unknown MODE <%02x>", stream_ctl); | ||
| 125 | return -1; | ||
| 126 | } | ||
| 127 | |||
| 128 | return 0; | ||
| 129 | } | ||
| 130 | EXPORT_SYMBOL_GPL(mantis_stream_control); | ||
diff --git a/drivers/media/dvb/mantis/mantis_ioc.h b/drivers/media/dvb/mantis/mantis_ioc.h new file mode 100644 index 000000000000..188fe5a81614 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_ioc.h | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_IOC_H | ||
| 22 | #define __MANTIS_IOC_H | ||
| 23 | |||
| 24 | #define GPIF_A00 0x00 | ||
| 25 | #define GPIF_A01 0x01 | ||
| 26 | #define GPIF_A02 0x02 | ||
| 27 | #define GPIF_A03 0x03 | ||
| 28 | #define GPIF_A04 0x04 | ||
| 29 | #define GPIF_A05 0x05 | ||
| 30 | #define GPIF_A06 0x06 | ||
| 31 | #define GPIF_A07 0x07 | ||
| 32 | #define GPIF_A08 0x08 | ||
| 33 | #define GPIF_A09 0x09 | ||
| 34 | #define GPIF_A10 0x0a | ||
| 35 | #define GPIF_A11 0x0b | ||
| 36 | |||
| 37 | #define GPIF_A12 0x0c | ||
| 38 | #define GPIF_A13 0x0d | ||
| 39 | #define GPIF_A14 0x0e | ||
| 40 | |||
| 41 | enum mantis_stream_control { | ||
| 42 | STREAM_TO_HIF = 0, | ||
| 43 | STREAM_TO_CAM | ||
| 44 | }; | ||
| 45 | |||
| 46 | extern int mantis_get_mac(struct mantis_pci *mantis); | ||
| 47 | extern void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value); | ||
| 48 | |||
| 49 | extern int mantis_stream_control(struct mantis_pci *mantis, enum mantis_stream_control stream_ctl); | ||
| 50 | |||
| 51 | #endif /* __MANTIS_IOC_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_link.h b/drivers/media/dvb/mantis/mantis_link.h new file mode 100644 index 000000000000..2a814774a001 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_link.h | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_LINK_H | ||
| 22 | #define __MANTIS_LINK_H | ||
| 23 | |||
| 24 | #include <linux/mutex.h> | ||
| 25 | #include <linux/workqueue.h> | ||
| 26 | #include "dvb_ca_en50221.h" | ||
| 27 | |||
| 28 | enum mantis_sbuf_status { | ||
| 29 | MANTIS_SBUF_DATA_AVAIL = 1, | ||
| 30 | MANTIS_SBUF_DATA_EMPTY = 2, | ||
| 31 | MANTIS_SBUF_DATA_OVFLW = 3 | ||
| 32 | }; | ||
| 33 | |||
| 34 | struct mantis_slot { | ||
| 35 | u32 timeout; | ||
| 36 | u32 slave_cfg; | ||
| 37 | u32 bar; | ||
| 38 | }; | ||
| 39 | |||
| 40 | /* Physical layer */ | ||
| 41 | enum mantis_slot_state { | ||
| 42 | MODULE_INSERTED = 3, | ||
| 43 | MODULE_XTRACTED = 4 | ||
| 44 | }; | ||
| 45 | |||
| 46 | struct mantis_ca { | ||
| 47 | struct mantis_slot slot[4]; | ||
| 48 | |||
| 49 | struct work_struct hif_evm_work; | ||
| 50 | |||
| 51 | u32 hif_event; | ||
| 52 | wait_queue_head_t hif_opdone_wq; | ||
| 53 | wait_queue_head_t hif_brrdyw_wq; | ||
| 54 | wait_queue_head_t hif_data_wq; | ||
| 55 | wait_queue_head_t hif_write_wq; /* HIF Write op */ | ||
| 56 | |||
| 57 | enum mantis_sbuf_status sbuf_status; | ||
| 58 | |||
| 59 | enum mantis_slot_state slot_state; | ||
| 60 | |||
| 61 | void *ca_priv; | ||
| 62 | |||
| 63 | struct dvb_ca_en50221 en50221; | ||
| 64 | struct mutex ca_lock; | ||
| 65 | }; | ||
| 66 | |||
| 67 | /* CA */ | ||
| 68 | extern void mantis_event_cam_plugin(struct mantis_ca *ca); | ||
| 69 | extern void mantis_event_cam_unplug(struct mantis_ca *ca); | ||
| 70 | extern int mantis_pcmcia_init(struct mantis_ca *ca); | ||
| 71 | extern void mantis_pcmcia_exit(struct mantis_ca *ca); | ||
| 72 | extern int mantis_evmgr_init(struct mantis_ca *ca); | ||
| 73 | extern void mantis_evmgr_exit(struct mantis_ca *ca); | ||
| 74 | |||
| 75 | /* HIF */ | ||
| 76 | extern int mantis_hif_init(struct mantis_ca *ca); | ||
| 77 | extern void mantis_hif_exit(struct mantis_ca *ca); | ||
| 78 | extern int mantis_hif_read_mem(struct mantis_ca *ca, u32 addr); | ||
| 79 | extern int mantis_hif_write_mem(struct mantis_ca *ca, u32 addr, u8 data); | ||
| 80 | extern int mantis_hif_read_iom(struct mantis_ca *ca, u32 addr); | ||
| 81 | extern int mantis_hif_write_iom(struct mantis_ca *ca, u32 addr, u8 data); | ||
| 82 | |||
| 83 | #endif /* __MANTIS_LINK_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_pci.c b/drivers/media/dvb/mantis/mantis_pci.c new file mode 100644 index 000000000000..6c7534af6b44 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_pci.c | |||
| @@ -0,0 +1,177 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/module.h> | ||
| 22 | #include <linux/moduleparam.h> | ||
| 23 | #include <linux/kernel.h> | ||
| 24 | #include <asm/io.h> | ||
| 25 | #include <asm/pgtable.h> | ||
| 26 | #include <asm/page.h> | ||
| 27 | #include <linux/kmod.h> | ||
| 28 | #include <linux/vmalloc.h> | ||
| 29 | #include <linux/init.h> | ||
| 30 | #include <linux/device.h> | ||
| 31 | #include <linux/pci.h> | ||
| 32 | |||
| 33 | #include <asm/irq.h> | ||
| 34 | #include <linux/signal.h> | ||
| 35 | #include <linux/sched.h> | ||
| 36 | #include <linux/interrupt.h> | ||
| 37 | |||
| 38 | #include "dmxdev.h" | ||
| 39 | #include "dvbdev.h" | ||
| 40 | #include "dvb_demux.h" | ||
| 41 | #include "dvb_frontend.h" | ||
| 42 | #include "dvb_net.h" | ||
| 43 | |||
| 44 | #include <asm/irq.h> | ||
| 45 | #include <linux/signal.h> | ||
| 46 | #include <linux/sched.h> | ||
| 47 | #include <linux/interrupt.h> | ||
| 48 | |||
| 49 | #include "mantis_common.h" | ||
| 50 | #include "mantis_reg.h" | ||
| 51 | #include "mantis_pci.h" | ||
| 52 | |||
| 53 | #define DRIVER_NAME "Mantis Core" | ||
| 54 | |||
| 55 | int __devinit mantis_pci_init(struct mantis_pci *mantis) | ||
| 56 | { | ||
| 57 | u8 revision, latency; | ||
| 58 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 59 | struct pci_dev *pdev = mantis->pdev; | ||
| 60 | int err, ret = 0; | ||
| 61 | |||
| 62 | dprintk(MANTIS_ERROR, 0, "found a %s PCI %s device on (%02x:%02x.%x),\n", | ||
| 63 | config->model_name, | ||
| 64 | config->dev_type, | ||
| 65 | mantis->pdev->bus->number, | ||
| 66 | PCI_SLOT(mantis->pdev->devfn), | ||
| 67 | PCI_FUNC(mantis->pdev->devfn)); | ||
| 68 | |||
| 69 | err = pci_enable_device(pdev); | ||
| 70 | if (err != 0) { | ||
| 71 | ret = -ENODEV; | ||
| 72 | dprintk(MANTIS_ERROR, 1, "ERROR: PCI enable failed <%i>", err); | ||
| 73 | goto fail0; | ||
| 74 | } | ||
| 75 | |||
| 76 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); | ||
| 77 | if (err != 0) { | ||
| 78 | dprintk(MANTIS_ERROR, 1, "ERROR: Unable to obtain 32 bit DMA <%i>", err); | ||
| 79 | ret = -ENOMEM; | ||
| 80 | goto fail1; | ||
| 81 | } | ||
| 82 | |||
| 83 | pci_set_master(pdev); | ||
| 84 | |||
| 85 | if (!request_mem_region(pci_resource_start(pdev, 0), | ||
| 86 | pci_resource_len(pdev, 0), | ||
| 87 | DRIVER_NAME)) { | ||
| 88 | |||
| 89 | dprintk(MANTIS_ERROR, 1, "ERROR: BAR0 Request failed !"); | ||
| 90 | ret = -ENODEV; | ||
| 91 | goto fail1; | ||
| 92 | } | ||
| 93 | |||
| 94 | mantis->mmio = ioremap(pci_resource_start(pdev, 0), | ||
| 95 | pci_resource_len(pdev, 0)); | ||
| 96 | |||
| 97 | if (!mantis->mmio) { | ||
| 98 | dprintk(MANTIS_ERROR, 1, "ERROR: BAR0 remap failed !"); | ||
| 99 | ret = -ENODEV; | ||
| 100 | goto fail2; | ||
| 101 | } | ||
| 102 | |||
| 103 | pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency); | ||
| 104 | pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision); | ||
| 105 | mantis->latency = latency; | ||
| 106 | mantis->revision = revision; | ||
| 107 | |||
| 108 | dprintk(MANTIS_ERROR, 0, " Mantis Rev %d [%04x:%04x], ", | ||
| 109 | mantis->revision, | ||
| 110 | mantis->pdev->subsystem_vendor, | ||
| 111 | mantis->pdev->subsystem_device); | ||
| 112 | |||
| 113 | dprintk(MANTIS_ERROR, 0, | ||
| 114 | "irq: %d, latency: %d\n memory: 0x%lx, mmio: 0x%p\n", | ||
| 115 | mantis->pdev->irq, | ||
| 116 | mantis->latency, | ||
| 117 | mantis->mantis_addr, | ||
| 118 | mantis->mmio); | ||
| 119 | |||
| 120 | err = request_irq(pdev->irq, | ||
| 121 | config->irq_handler, | ||
| 122 | IRQF_SHARED, | ||
| 123 | DRIVER_NAME, | ||
| 124 | mantis); | ||
| 125 | |||
| 126 | if (err != 0) { | ||
| 127 | |||
| 128 | dprintk(MANTIS_ERROR, 1, "ERROR: IRQ registration failed ! <%d>", err); | ||
| 129 | ret = -ENODEV; | ||
| 130 | goto fail3; | ||
| 131 | } | ||
| 132 | |||
| 133 | pci_set_drvdata(pdev, mantis); | ||
| 134 | return ret; | ||
| 135 | |||
| 136 | /* Error conditions */ | ||
| 137 | fail3: | ||
| 138 | dprintk(MANTIS_ERROR, 1, "ERROR: <%d> I/O unmap", ret); | ||
| 139 | if (mantis->mmio) | ||
| 140 | iounmap(mantis->mmio); | ||
| 141 | |||
| 142 | fail2: | ||
| 143 | dprintk(MANTIS_ERROR, 1, "ERROR: <%d> releasing regions", ret); | ||
| 144 | release_mem_region(pci_resource_start(pdev, 0), | ||
| 145 | pci_resource_len(pdev, 0)); | ||
| 146 | |||
| 147 | fail1: | ||
| 148 | dprintk(MANTIS_ERROR, 1, "ERROR: <%d> disabling device", ret); | ||
| 149 | pci_disable_device(pdev); | ||
| 150 | |||
| 151 | fail0: | ||
| 152 | dprintk(MANTIS_ERROR, 1, "ERROR: <%d> exiting", ret); | ||
| 153 | pci_set_drvdata(pdev, NULL); | ||
| 154 | return ret; | ||
| 155 | } | ||
| 156 | EXPORT_SYMBOL_GPL(mantis_pci_init); | ||
| 157 | |||
| 158 | void mantis_pci_exit(struct mantis_pci *mantis) | ||
| 159 | { | ||
| 160 | struct pci_dev *pdev = mantis->pdev; | ||
| 161 | |||
| 162 | dprintk(MANTIS_NOTICE, 1, " mem: 0x%p", mantis->mmio); | ||
| 163 | free_irq(pdev->irq, mantis); | ||
| 164 | if (mantis->mmio) { | ||
| 165 | iounmap(mantis->mmio); | ||
| 166 | release_mem_region(pci_resource_start(pdev, 0), | ||
| 167 | pci_resource_len(pdev, 0)); | ||
| 168 | } | ||
| 169 | |||
| 170 | pci_disable_device(pdev); | ||
| 171 | pci_set_drvdata(pdev, NULL); | ||
| 172 | } | ||
| 173 | EXPORT_SYMBOL_GPL(mantis_pci_exit); | ||
| 174 | |||
| 175 | MODULE_DESCRIPTION("Mantis PCI DTV bridge driver"); | ||
| 176 | MODULE_AUTHOR("Manu Abraham"); | ||
| 177 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/mantis/mantis_pci.h b/drivers/media/dvb/mantis/mantis_pci.h new file mode 100644 index 000000000000..65f004519086 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_pci.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_PCI_H | ||
| 22 | #define __MANTIS_PCI_H | ||
| 23 | |||
| 24 | extern int mantis_pci_init(struct mantis_pci *mantis); | ||
| 25 | extern void mantis_pci_exit(struct mantis_pci *mantis); | ||
| 26 | |||
| 27 | #endif /* __MANTIS_PCI_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_pcmcia.c b/drivers/media/dvb/mantis/mantis_pcmcia.c new file mode 100644 index 000000000000..5cb545b913f6 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_pcmcia.c | |||
| @@ -0,0 +1,120 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | |||
| 23 | #include <linux/signal.h> | ||
| 24 | #include <linux/sched.h> | ||
| 25 | #include <linux/interrupt.h> | ||
| 26 | |||
| 27 | #include "dmxdev.h" | ||
| 28 | #include "dvbdev.h" | ||
| 29 | #include "dvb_demux.h" | ||
| 30 | #include "dvb_frontend.h" | ||
| 31 | #include "dvb_net.h" | ||
| 32 | |||
| 33 | #include "mantis_common.h" | ||
| 34 | #include "mantis_link.h" /* temporary due to physical layer stuff */ | ||
| 35 | #include "mantis_reg.h" | ||
| 36 | |||
| 37 | /* | ||
| 38 | * If Slot state is already PLUG_IN event and we are called | ||
| 39 | * again, definitely it is jitter alone | ||
| 40 | */ | ||
| 41 | void mantis_event_cam_plugin(struct mantis_ca *ca) | ||
| 42 | { | ||
| 43 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 44 | |||
| 45 | u32 gpif_irqcfg; | ||
| 46 | |||
| 47 | if (ca->slot_state == MODULE_XTRACTED) { | ||
| 48 | dprintk(MANTIS_DEBUG, 1, "Event: CAM Plugged IN: Adapter(%d) Slot(0)", mantis->num); | ||
| 49 | udelay(50); | ||
| 50 | mmwrite(0xda000000, MANTIS_CARD_RESET); | ||
| 51 | gpif_irqcfg = mmread(MANTIS_GPIF_IRQCFG); | ||
| 52 | gpif_irqcfg |= MANTIS_MASK_PLUGOUT; | ||
| 53 | gpif_irqcfg &= ~MANTIS_MASK_PLUGIN; | ||
| 54 | mmwrite(gpif_irqcfg, MANTIS_GPIF_IRQCFG); | ||
| 55 | udelay(500); | ||
| 56 | ca->slot_state = MODULE_INSERTED; | ||
| 57 | } | ||
| 58 | udelay(100); | ||
| 59 | } | ||
| 60 | |||
| 61 | /* | ||
| 62 | * If Slot state is already UN_PLUG event and we are called | ||
| 63 | * again, definitely it is jitter alone | ||
| 64 | */ | ||
| 65 | void mantis_event_cam_unplug(struct mantis_ca *ca) | ||
| 66 | { | ||
| 67 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 68 | |||
| 69 | u32 gpif_irqcfg; | ||
| 70 | |||
| 71 | if (ca->slot_state == MODULE_INSERTED) { | ||
| 72 | dprintk(MANTIS_DEBUG, 1, "Event: CAM Unplugged: Adapter(%d) Slot(0)", mantis->num); | ||
| 73 | udelay(50); | ||
| 74 | mmwrite(0x00da0000, MANTIS_CARD_RESET); | ||
| 75 | gpif_irqcfg = mmread(MANTIS_GPIF_IRQCFG); | ||
| 76 | gpif_irqcfg |= MANTIS_MASK_PLUGIN; | ||
| 77 | gpif_irqcfg &= ~MANTIS_MASK_PLUGOUT; | ||
| 78 | mmwrite(gpif_irqcfg, MANTIS_GPIF_IRQCFG); | ||
| 79 | udelay(500); | ||
| 80 | ca->slot_state = MODULE_XTRACTED; | ||
| 81 | } | ||
| 82 | udelay(100); | ||
| 83 | } | ||
| 84 | |||
| 85 | int mantis_pcmcia_init(struct mantis_ca *ca) | ||
| 86 | { | ||
| 87 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 88 | |||
| 89 | u32 gpif_stat, card_stat; | ||
| 90 | |||
| 91 | mmwrite(mmread(MANTIS_INT_MASK) | MANTIS_INT_IRQ0, MANTIS_INT_MASK); | ||
| 92 | gpif_stat = mmread(MANTIS_GPIF_STATUS); | ||
| 93 | card_stat = mmread(MANTIS_GPIF_IRQCFG); | ||
| 94 | |||
| 95 | if (gpif_stat & MANTIS_GPIF_DETSTAT) { | ||
| 96 | dprintk(MANTIS_DEBUG, 1, "CAM found on Adapter(%d) Slot(0)", mantis->num); | ||
| 97 | mmwrite(card_stat | MANTIS_MASK_PLUGOUT, MANTIS_GPIF_IRQCFG); | ||
| 98 | ca->slot_state = MODULE_INSERTED; | ||
| 99 | dvb_ca_en50221_camchange_irq(&ca->en50221, | ||
| 100 | 0, | ||
| 101 | DVB_CA_EN50221_CAMCHANGE_INSERTED); | ||
| 102 | } else { | ||
| 103 | dprintk(MANTIS_DEBUG, 1, "Empty Slot on Adapter(%d) Slot(0)", mantis->num); | ||
| 104 | mmwrite(card_stat | MANTIS_MASK_PLUGIN, MANTIS_GPIF_IRQCFG); | ||
| 105 | ca->slot_state = MODULE_XTRACTED; | ||
| 106 | dvb_ca_en50221_camchange_irq(&ca->en50221, | ||
| 107 | 0, | ||
| 108 | DVB_CA_EN50221_CAMCHANGE_REMOVED); | ||
| 109 | } | ||
| 110 | |||
| 111 | return 0; | ||
| 112 | } | ||
| 113 | |||
| 114 | void mantis_pcmcia_exit(struct mantis_ca *ca) | ||
| 115 | { | ||
| 116 | struct mantis_pci *mantis = ca->ca_priv; | ||
| 117 | |||
| 118 | mmwrite(mmread(MANTIS_GPIF_STATUS) & (~MANTIS_CARD_PLUGOUT | ~MANTIS_CARD_PLUGIN), MANTIS_GPIF_STATUS); | ||
| 119 | mmwrite(mmread(MANTIS_INT_MASK) & ~MANTIS_INT_IRQ0, MANTIS_INT_MASK); | ||
| 120 | } | ||
diff --git a/drivers/media/dvb/mantis/mantis_reg.h b/drivers/media/dvb/mantis/mantis_reg.h new file mode 100644 index 000000000000..7761f9dc7fe0 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_reg.h | |||
| @@ -0,0 +1,197 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_REG_H | ||
| 22 | #define __MANTIS_REG_H | ||
| 23 | |||
| 24 | /* Interrupts */ | ||
| 25 | #define MANTIS_INT_STAT 0x00 | ||
| 26 | #define MANTIS_INT_MASK 0x04 | ||
| 27 | |||
| 28 | #define MANTIS_INT_RISCSTAT (0x0f << 28) | ||
| 29 | #define MANTIS_INT_RISCEN (0x01 << 27) | ||
| 30 | #define MANTIS_INT_I2CRACK (0x01 << 26) | ||
| 31 | |||
| 32 | /* #define MANTIS_INT_GPIF (0xff << 12) */ | ||
| 33 | |||
| 34 | #define MANTIS_INT_PCMCIA7 (0x01 << 19) | ||
| 35 | #define MANTIS_INT_PCMCIA6 (0x01 << 18) | ||
| 36 | #define MANTIS_INT_PCMCIA5 (0x01 << 17) | ||
| 37 | #define MANTIS_INT_PCMCIA4 (0x01 << 16) | ||
| 38 | #define MANTIS_INT_PCMCIA3 (0x01 << 15) | ||
| 39 | #define MANTIS_INT_PCMCIA2 (0x01 << 14) | ||
| 40 | #define MANTIS_INT_PCMCIA1 (0x01 << 13) | ||
| 41 | #define MANTIS_INT_PCMCIA0 (0x01 << 12) | ||
| 42 | #define MANTIS_INT_IRQ1 (0x01 << 11) | ||
| 43 | #define MANTIS_INT_IRQ0 (0x01 << 10) | ||
| 44 | #define MANTIS_INT_OCERR (0x01 << 8) | ||
| 45 | #define MANTIS_INT_PABORT (0x01 << 7) | ||
| 46 | #define MANTIS_INT_RIPERR (0x01 << 6) | ||
| 47 | #define MANTIS_INT_PPERR (0x01 << 5) | ||
| 48 | #define MANTIS_INT_FTRGT (0x01 << 3) | ||
| 49 | #define MANTIS_INT_RISCI (0x01 << 1) | ||
| 50 | #define MANTIS_INT_I2CDONE (0x01 << 0) | ||
| 51 | |||
| 52 | /* DMA */ | ||
| 53 | #define MANTIS_DMA_CTL 0x08 | ||
| 54 | #define MANTIS_GPIF_RD (0xff << 24) | ||
| 55 | #define MANTIS_GPIF_WR (0xff << 16) | ||
| 56 | #define MANTIS_CPU_DO (0x01 << 10) | ||
| 57 | #define MANTIS_DRV_DO (0x01 << 9) | ||
| 58 | #define MANTIS_I2C_RD (0x01 << 7) | ||
| 59 | #define MANTIS_I2C_WR (0x01 << 6) | ||
| 60 | #define MANTIS_DCAP_MODE (0x01 << 5) | ||
| 61 | #define MANTIS_FIFO_TP_4 (0x00 << 3) | ||
| 62 | #define MANTIS_FIFO_TP_8 (0x01 << 3) | ||
| 63 | #define MANTIS_FIFO_TP_16 (0x02 << 3) | ||
| 64 | #define MANTIS_FIFO_EN (0x01 << 2) | ||
| 65 | #define MANTIS_DCAP_EN (0x01 << 1) | ||
| 66 | #define MANTIS_RISC_EN (0x01 << 0) | ||
| 67 | |||
| 68 | /* DEBUG */ | ||
| 69 | #define MANTIS_DEBUGREG 0x0c | ||
| 70 | #define MANTIS_DATINV (0x0e << 7) | ||
| 71 | #define MANTIS_TOP_DEBUGSEL (0x07 << 4) | ||
| 72 | #define MANTIS_PCMCIA_DEBUGSEL (0x0f << 0) | ||
| 73 | |||
| 74 | #define MANTIS_RISC_START 0x10 | ||
| 75 | #define MANTIS_RISC_PC 0x14 | ||
| 76 | |||
| 77 | /* I2C */ | ||
| 78 | #define MANTIS_I2CDATA_CTL 0x18 | ||
| 79 | #define MANTIS_I2C_RATE_1 (0x00 << 6) | ||
| 80 | #define MANTIS_I2C_RATE_2 (0x01 << 6) | ||
| 81 | #define MANTIS_I2C_RATE_3 (0x02 << 6) | ||
| 82 | #define MANTIS_I2C_RATE_4 (0x03 << 6) | ||
| 83 | #define MANTIS_I2C_STOP (0x01 << 5) | ||
| 84 | #define MANTIS_I2C_PGMODE (0x01 << 3) | ||
| 85 | |||
| 86 | /* DATA */ | ||
| 87 | #define MANTIS_CMD_DATA_R1 0x20 | ||
| 88 | #define MANTIS_CMD_DATA_3 (0xff << 24) | ||
| 89 | #define MANTIS_CMD_DATA_2 (0xff << 16) | ||
| 90 | #define MANTIS_CMD_DATA_1 (0xff << 8) | ||
| 91 | #define MANTIS_CMD_DATA_0 (0xff << 0) | ||
| 92 | |||
| 93 | #define MANTIS_CMD_DATA_R2 0x24 | ||
| 94 | #define MANTIS_CMD_DATA_7 (0xff << 24) | ||
| 95 | #define MANTIS_CMD_DATA_6 (0xff << 16) | ||
| 96 | #define MANTIS_CMD_DATA_5 (0xff << 8) | ||
| 97 | #define MANTIS_CMD_DATA_4 (0xff << 0) | ||
| 98 | |||
| 99 | #define MANTIS_CONTROL 0x28 | ||
| 100 | #define MANTIS_DET (0x01 << 7) | ||
| 101 | #define MANTIS_DAT_CF_EN (0x01 << 6) | ||
| 102 | #define MANTIS_ACS (0x03 << 4) | ||
| 103 | #define MANTIS_VCCEN (0x01 << 3) | ||
| 104 | #define MANTIS_BYPASS (0x01 << 2) | ||
| 105 | #define MANTIS_MRST (0x01 << 1) | ||
| 106 | #define MANTIS_CRST_INT (0x01 << 0) | ||
| 107 | |||
| 108 | #define MANTIS_GPIF_CFGSLA 0x84 | ||
| 109 | #define MANTIS_GPIF_WAITSMPL (0x07 << 28) | ||
| 110 | #define MANTIS_GPIF_BYTEADDRSUB (0x01 << 25) | ||
| 111 | #define MANTIS_GPIF_WAITPOL (0x01 << 24) | ||
| 112 | #define MANTIS_GPIF_NCDELAY (0x07 << 20) | ||
| 113 | #define MANTIS_GPIF_RW2CSDELAY (0x07 << 16) | ||
| 114 | #define MANTIS_GPIF_SLFTIMEDMODE (0x01 << 15) | ||
| 115 | #define MANTIS_GPIF_SLFTIMEDDELY (0x7f << 8) | ||
| 116 | #define MANTIS_GPIF_DEVTYPE (0x07 << 4) | ||
| 117 | #define MANTIS_GPIF_BIGENDIAN (0x01 << 3) | ||
| 118 | #define MANTIS_GPIF_FETCHCMD (0x03 << 1) | ||
| 119 | #define MANTIS_GPIF_HWORDDEV (0x01 << 0) | ||
| 120 | |||
| 121 | #define MANTIS_GPIF_WSTOPER 0x90 | ||
| 122 | #define MANTIS_GPIF_WSTOPERWREN3 (0x01 << 31) | ||
| 123 | #define MANTIS_GPIF_PARBOOTN (0x01 << 29) | ||
| 124 | #define MANTIS_GPIF_WSTOPERSLID3 (0x1f << 24) | ||
| 125 | #define MANTIS_GPIF_WSTOPERWREN2 (0x01 << 23) | ||
| 126 | #define MANTIS_GPIF_WSTOPERSLID2 (0x1f << 16) | ||
| 127 | #define MANTIS_GPIF_WSTOPERWREN1 (0x01 << 15) | ||
| 128 | #define MANTIS_GPIF_WSTOPERSLID1 (0x1f << 8) | ||
| 129 | #define MANTIS_GPIF_WSTOPERWREN0 (0x01 << 7) | ||
| 130 | #define MANTIS_GPIF_WSTOPERSLID0 (0x1f << 0) | ||
| 131 | |||
| 132 | #define MANTIS_GPIF_CS2RW 0x94 | ||
| 133 | #define MANTIS_GPIF_CS2RWWREN3 (0x01 << 31) | ||
| 134 | #define MANTIS_GPIF_CS2RWDELY3 (0x3f << 24) | ||
| 135 | #define MANTIS_GPIF_CS2RWWREN2 (0x01 << 23) | ||
| 136 | #define MANTIS_GPIF_CS2RWDELY2 (0x3f << 16) | ||
| 137 | #define MANTIS_GPIF_CS2RWWREN1 (0x01 << 15) | ||
| 138 | #define MANTIS_GPIF_CS2RWDELY1 (0x3f << 8) | ||
| 139 | #define MANTIS_GPIF_CS2RWWREN0 (0x01 << 7) | ||
| 140 | #define MANTIS_GPIF_CS2RWDELY0 (0x3f << 0) | ||
| 141 | |||
| 142 | #define MANTIS_GPIF_IRQCFG 0x98 | ||
| 143 | #define MANTIS_GPIF_IRQPOL (0x01 << 8) | ||
| 144 | #define MANTIS_MASK_WRACK (0x01 << 7) | ||
| 145 | #define MANTIS_MASK_BRRDY (0x01 << 6) | ||
| 146 | #define MANTIS_MASK_OVFLW (0x01 << 5) | ||
| 147 | #define MANTIS_MASK_OTHERR (0x01 << 4) | ||
| 148 | #define MANTIS_MASK_WSTO (0x01 << 3) | ||
| 149 | #define MANTIS_MASK_EXTIRQ (0x01 << 2) | ||
| 150 | #define MANTIS_MASK_PLUGIN (0x01 << 1) | ||
| 151 | #define MANTIS_MASK_PLUGOUT (0x01 << 0) | ||
| 152 | |||
| 153 | #define MANTIS_GPIF_STATUS 0x9c | ||
| 154 | #define MANTIS_SBUF_KILLOP (0x01 << 15) | ||
| 155 | #define MANTIS_SBUF_OPDONE (0x01 << 14) | ||
| 156 | #define MANTIS_SBUF_EMPTY (0x01 << 13) | ||
| 157 | #define MANTIS_GPIF_DETSTAT (0x01 << 9) | ||
| 158 | #define MANTIS_GPIF_INTSTAT (0x01 << 8) | ||
| 159 | #define MANTIS_GPIF_WRACK (0x01 << 7) | ||
| 160 | #define MANTIS_GPIF_BRRDY (0x01 << 6) | ||
| 161 | #define MANTIS_SBUF_OVFLW (0x01 << 5) | ||
| 162 | #define MANTIS_GPIF_OTHERR (0x01 << 4) | ||
| 163 | #define MANTIS_SBUF_WSTO (0x01 << 3) | ||
| 164 | #define MANTIS_GPIF_EXTIRQ (0x01 << 2) | ||
| 165 | #define MANTIS_CARD_PLUGIN (0x01 << 1) | ||
| 166 | #define MANTIS_CARD_PLUGOUT (0x01 << 0) | ||
| 167 | |||
| 168 | #define MANTIS_GPIF_BRADDR 0xa0 | ||
| 169 | #define MANTIS_GPIF_PCMCIAREG (0x01 << 27) | ||
| 170 | #define MANTIS_GPIF_PCMCIAIOM (0x01 << 26) | ||
| 171 | #define MANTIS_GPIF_BR_ADDR (0xfffffff << 0) | ||
| 172 | |||
| 173 | #define MANTIS_GPIF_BRBYTES 0xa4 | ||
| 174 | #define MANTIS_GPIF_BRCNT (0xfff << 0) | ||
| 175 | |||
| 176 | #define MANTIS_PCMCIA_RESET 0xa8 | ||
| 177 | #define MANTIS_PCMCIA_RSTVAL (0xff << 0) | ||
| 178 | |||
| 179 | #define MANTIS_CARD_RESET 0xac | ||
| 180 | |||
| 181 | #define MANTIS_GPIF_ADDR 0xb0 | ||
| 182 | #define MANTIS_GPIF_HIFRDWRN (0x01 << 31) | ||
| 183 | #define MANTIS_GPIF_PCMCIAREG (0x01 << 27) | ||
| 184 | #define MANTIS_GPIF_PCMCIAIOM (0x01 << 26) | ||
| 185 | #define MANTIS_GPIF_HIFADDR (0xfffffff << 0) | ||
| 186 | |||
| 187 | #define MANTIS_GPIF_DOUT 0xb4 | ||
| 188 | #define MANTIS_GPIF_HIFDOUT (0xfffffff << 0) | ||
| 189 | |||
| 190 | #define MANTIS_GPIF_DIN 0xb8 | ||
| 191 | #define MANTIS_GPIF_HIFDIN (0xfffffff << 0) | ||
| 192 | |||
| 193 | #define MANTIS_GPIF_SPARE 0xbc | ||
| 194 | #define MANTIS_GPIF_LOGICRD (0xffff << 16) | ||
| 195 | #define MANTIS_GPIF_LOGICRW (0xffff << 0) | ||
| 196 | |||
| 197 | #endif /* __MANTIS_REG_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_uart.c b/drivers/media/dvb/mantis/mantis_uart.c new file mode 100644 index 000000000000..7d2f2398fa8b --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_uart.c | |||
| @@ -0,0 +1,186 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/kernel.h> | ||
| 22 | #include <linux/spinlock.h> | ||
| 23 | |||
| 24 | #include <linux/signal.h> | ||
| 25 | #include <linux/sched.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | |||
| 28 | #include "dmxdev.h" | ||
| 29 | #include "dvbdev.h" | ||
| 30 | #include "dvb_demux.h" | ||
| 31 | #include "dvb_frontend.h" | ||
| 32 | #include "dvb_net.h" | ||
| 33 | |||
| 34 | #include "mantis_common.h" | ||
| 35 | #include "mantis_reg.h" | ||
| 36 | #include "mantis_uart.h" | ||
| 37 | |||
| 38 | struct mantis_uart_params { | ||
| 39 | enum mantis_baud baud_rate; | ||
| 40 | enum mantis_parity parity; | ||
| 41 | }; | ||
| 42 | |||
| 43 | static struct { | ||
| 44 | char string[7]; | ||
| 45 | } rates[5] = { | ||
| 46 | { "9600" }, | ||
| 47 | { "19200" }, | ||
| 48 | { "38400" }, | ||
| 49 | { "57600" }, | ||
| 50 | { "115200" } | ||
| 51 | }; | ||
| 52 | |||
| 53 | static struct { | ||
| 54 | char string[5]; | ||
| 55 | } parity[3] = { | ||
| 56 | { "NONE" }, | ||
| 57 | { "ODD" }, | ||
| 58 | { "EVEN" } | ||
| 59 | }; | ||
| 60 | |||
| 61 | #define UART_MAX_BUF 16 | ||
| 62 | |||
| 63 | int mantis_uart_read(struct mantis_pci *mantis, u8 *data) | ||
| 64 | { | ||
| 65 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 66 | u32 stat = 0, i; | ||
| 67 | |||
| 68 | /* get data */ | ||
| 69 | for (i = 0; i < (config->bytes + 1); i++) { | ||
| 70 | |||
| 71 | stat = mmread(MANTIS_UART_STAT); | ||
| 72 | |||
| 73 | if (stat & MANTIS_UART_RXFIFO_FULL) { | ||
| 74 | dprintk(MANTIS_ERROR, 1, "RX Fifo FULL"); | ||
| 75 | } | ||
| 76 | data[i] = mmread(MANTIS_UART_RXD) & 0x3f; | ||
| 77 | |||
| 78 | dprintk(MANTIS_DEBUG, 1, "Reading ... <%02x>", data[i] & 0x3f); | ||
| 79 | |||
| 80 | if (data[i] & (1 << 7)) { | ||
| 81 | dprintk(MANTIS_ERROR, 1, "UART framing error"); | ||
| 82 | return -EINVAL; | ||
| 83 | } | ||
| 84 | if (data[i] & (1 << 6)) { | ||
| 85 | dprintk(MANTIS_ERROR, 1, "UART parity error"); | ||
| 86 | return -EINVAL; | ||
| 87 | } | ||
| 88 | } | ||
| 89 | |||
| 90 | return 0; | ||
| 91 | } | ||
| 92 | |||
| 93 | static void mantis_uart_work(struct work_struct *work) | ||
| 94 | { | ||
| 95 | struct mantis_pci *mantis = container_of(work, struct mantis_pci, uart_work); | ||
| 96 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 97 | u8 buf[16]; | ||
| 98 | int i; | ||
| 99 | |||
| 100 | mantis_uart_read(mantis, buf); | ||
| 101 | |||
| 102 | for (i = 0; i < (config->bytes + 1); i++) | ||
| 103 | dprintk(MANTIS_INFO, 1, "UART BUF:%d <%02x> ", i, buf[i]); | ||
| 104 | |||
| 105 | dprintk(MANTIS_DEBUG, 0, "\n"); | ||
| 106 | } | ||
| 107 | |||
| 108 | static int mantis_uart_setup(struct mantis_pci *mantis, | ||
| 109 | struct mantis_uart_params *params) | ||
| 110 | { | ||
| 111 | u32 reg; | ||
| 112 | |||
| 113 | mmwrite((mmread(MANTIS_UART_CTL) | (params->parity & 0x3)), MANTIS_UART_CTL); | ||
| 114 | |||
| 115 | reg = mmread(MANTIS_UART_BAUD); | ||
| 116 | |||
| 117 | switch (params->baud_rate) { | ||
| 118 | case MANTIS_BAUD_9600: | ||
| 119 | reg |= 0xd8; | ||
| 120 | break; | ||
| 121 | case MANTIS_BAUD_19200: | ||
| 122 | reg |= 0x6c; | ||
| 123 | break; | ||
| 124 | case MANTIS_BAUD_38400: | ||
| 125 | reg |= 0x36; | ||
| 126 | break; | ||
| 127 | case MANTIS_BAUD_57600: | ||
| 128 | reg |= 0x23; | ||
| 129 | break; | ||
| 130 | case MANTIS_BAUD_115200: | ||
| 131 | reg |= 0x11; | ||
| 132 | break; | ||
| 133 | default: | ||
| 134 | return -EINVAL; | ||
| 135 | } | ||
| 136 | |||
| 137 | mmwrite(reg, MANTIS_UART_BAUD); | ||
| 138 | |||
| 139 | return 0; | ||
| 140 | } | ||
| 141 | |||
| 142 | int mantis_uart_init(struct mantis_pci *mantis) | ||
| 143 | { | ||
| 144 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 145 | struct mantis_uart_params params; | ||
| 146 | |||
| 147 | /* default parity: */ | ||
| 148 | params.baud_rate = config->baud_rate; | ||
| 149 | params.parity = config->parity; | ||
| 150 | dprintk(MANTIS_INFO, 1, "Initializing UART @ %sbps parity:%s", | ||
| 151 | rates[params.baud_rate].string, | ||
| 152 | parity[params.parity].string); | ||
| 153 | |||
| 154 | init_waitqueue_head(&mantis->uart_wq); | ||
| 155 | spin_lock_init(&mantis->uart_lock); | ||
| 156 | |||
| 157 | INIT_WORK(&mantis->uart_work, mantis_uart_work); | ||
| 158 | |||
| 159 | /* disable interrupt */ | ||
| 160 | mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL); | ||
| 161 | |||
| 162 | mantis_uart_setup(mantis, ¶ms); | ||
| 163 | |||
| 164 | /* default 1 byte */ | ||
| 165 | mmwrite((mmread(MANTIS_UART_BAUD) | (config->bytes << 8)), MANTIS_UART_BAUD); | ||
| 166 | |||
| 167 | /* flush buffer */ | ||
| 168 | mmwrite((mmread(MANTIS_UART_CTL) | MANTIS_UART_RXFLUSH), MANTIS_UART_CTL); | ||
| 169 | |||
| 170 | /* enable interrupt */ | ||
| 171 | mmwrite(mmread(MANTIS_INT_MASK) | 0x800, MANTIS_INT_MASK); | ||
| 172 | mmwrite(mmread(MANTIS_UART_CTL) | MANTIS_UART_RXINT, MANTIS_UART_CTL); | ||
| 173 | |||
| 174 | schedule_work(&mantis->uart_work); | ||
| 175 | dprintk(MANTIS_DEBUG, 1, "UART succesfully initialized"); | ||
| 176 | |||
| 177 | return 0; | ||
| 178 | } | ||
| 179 | EXPORT_SYMBOL_GPL(mantis_uart_init); | ||
| 180 | |||
| 181 | void mantis_uart_exit(struct mantis_pci *mantis) | ||
| 182 | { | ||
| 183 | /* disable interrupt */ | ||
| 184 | mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL); | ||
| 185 | } | ||
| 186 | EXPORT_SYMBOL_GPL(mantis_uart_exit); | ||
diff --git a/drivers/media/dvb/mantis/mantis_uart.h b/drivers/media/dvb/mantis/mantis_uart.h new file mode 100644 index 000000000000..ffb62a0a5a13 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_uart.h | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | /* | ||
| 2 | Mantis PCI bridge driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_UART_H | ||
| 22 | #define __MANTIS_UART_H | ||
| 23 | |||
| 24 | #define MANTIS_UART_CTL 0xe0 | ||
| 25 | #define MANTIS_UART_RXINT (1 << 4) | ||
| 26 | #define MANTIS_UART_RXFLUSH (1 << 2) | ||
| 27 | |||
| 28 | #define MANTIS_UART_RXD 0xe8 | ||
| 29 | #define MANTIS_UART_BAUD 0xec | ||
| 30 | |||
| 31 | #define MANTIS_UART_STAT 0xf0 | ||
| 32 | #define MANTIS_UART_RXFIFO_DATA (1 << 7) | ||
| 33 | #define MANTIS_UART_RXFIFO_EMPTY (1 << 6) | ||
| 34 | #define MANTIS_UART_RXFIFO_FULL (1 << 3) | ||
| 35 | #define MANTIS_UART_FRAME_ERR (1 << 2) | ||
| 36 | #define MANTIS_UART_PARITY_ERR (1 << 1) | ||
| 37 | #define MANTIS_UART_RXTHRESH_INT (1 << 0) | ||
| 38 | |||
| 39 | enum mantis_baud { | ||
| 40 | MANTIS_BAUD_9600 = 0, | ||
| 41 | MANTIS_BAUD_19200, | ||
| 42 | MANTIS_BAUD_38400, | ||
| 43 | MANTIS_BAUD_57600, | ||
| 44 | MANTIS_BAUD_115200 | ||
| 45 | }; | ||
| 46 | |||
| 47 | enum mantis_parity { | ||
| 48 | MANTIS_PARITY_NONE = 0, | ||
| 49 | MANTIS_PARITY_EVEN, | ||
| 50 | MANTIS_PARITY_ODD, | ||
| 51 | }; | ||
| 52 | |||
| 53 | struct mantis_pci; | ||
| 54 | |||
| 55 | extern int mantis_uart_init(struct mantis_pci *mantis); | ||
| 56 | extern void mantis_uart_exit(struct mantis_pci *mantis); | ||
| 57 | |||
| 58 | #endif /* __MANTIS_UART_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1033.c b/drivers/media/dvb/mantis/mantis_vp1033.c new file mode 100644 index 000000000000..4a723bda0031 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1033.c | |||
| @@ -0,0 +1,212 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1033 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "stv0299.h" | ||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_ioc.h" | ||
| 34 | #include "mantis_dvb.h" | ||
| 35 | #include "mantis_vp1033.h" | ||
| 36 | #include "mantis_reg.h" | ||
| 37 | |||
| 38 | u8 lgtdqcs001f_inittab[] = { | ||
| 39 | 0x01, 0x15, | ||
| 40 | 0x02, 0x00, | ||
| 41 | 0x03, 0x00, | ||
| 42 | 0x04, 0x2a, | ||
| 43 | 0x05, 0x85, | ||
| 44 | 0x06, 0x02, | ||
| 45 | 0x07, 0x00, | ||
| 46 | 0x08, 0x00, | ||
| 47 | 0x0c, 0x01, | ||
| 48 | 0x0d, 0x81, | ||
| 49 | 0x0e, 0x44, | ||
| 50 | 0x0f, 0x94, | ||
| 51 | 0x10, 0x3c, | ||
| 52 | 0x11, 0x84, | ||
| 53 | 0x12, 0xb9, | ||
| 54 | 0x13, 0xb5, | ||
| 55 | 0x14, 0x4f, | ||
| 56 | 0x15, 0xc9, | ||
| 57 | 0x16, 0x80, | ||
| 58 | 0x17, 0x36, | ||
| 59 | 0x18, 0xfb, | ||
| 60 | 0x19, 0xcf, | ||
| 61 | 0x1a, 0xbc, | ||
| 62 | 0x1c, 0x2b, | ||
| 63 | 0x1d, 0x27, | ||
| 64 | 0x1e, 0x00, | ||
| 65 | 0x1f, 0x0b, | ||
| 66 | 0x20, 0xa1, | ||
| 67 | 0x21, 0x60, | ||
| 68 | 0x22, 0x00, | ||
| 69 | 0x23, 0x00, | ||
| 70 | 0x28, 0x00, | ||
| 71 | 0x29, 0x28, | ||
| 72 | 0x2a, 0x14, | ||
| 73 | 0x2b, 0x0f, | ||
| 74 | 0x2c, 0x09, | ||
| 75 | 0x2d, 0x05, | ||
| 76 | 0x31, 0x1f, | ||
| 77 | 0x32, 0x19, | ||
| 78 | 0x33, 0xfc, | ||
| 79 | 0x34, 0x13, | ||
| 80 | 0xff, 0xff, | ||
| 81 | }; | ||
| 82 | |||
| 83 | #define MANTIS_MODEL_NAME "VP-1033" | ||
| 84 | #define MANTIS_DEV_TYPE "DVB-S/DSS" | ||
| 85 | |||
| 86 | int lgtdqcs001f_tuner_set(struct dvb_frontend *fe, | ||
| 87 | struct dvb_frontend_parameters *params) | ||
| 88 | { | ||
| 89 | struct mantis_pci *mantis = fe->dvb->priv; | ||
| 90 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 91 | |||
| 92 | u8 buf[4]; | ||
| 93 | u32 div; | ||
| 94 | |||
| 95 | |||
| 96 | struct i2c_msg msg = {.addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf)}; | ||
| 97 | |||
| 98 | div = params->frequency / 250; | ||
| 99 | |||
| 100 | buf[0] = (div >> 8) & 0x7f; | ||
| 101 | buf[1] = div & 0xff; | ||
| 102 | buf[2] = 0x83; | ||
| 103 | buf[3] = 0xc0; | ||
| 104 | |||
| 105 | if (params->frequency < 1531000) | ||
| 106 | buf[3] |= 0x04; | ||
| 107 | else | ||
| 108 | buf[3] &= ~0x04; | ||
| 109 | if (i2c_transfer(adapter, &msg, 1) < 0) { | ||
| 110 | dprintk(MANTIS_ERROR, 1, "Write: I2C Transfer failed"); | ||
| 111 | return -EIO; | ||
| 112 | } | ||
| 113 | msleep_interruptible(100); | ||
| 114 | |||
| 115 | return 0; | ||
| 116 | } | ||
| 117 | |||
| 118 | int lgtdqcs001f_set_symbol_rate(struct dvb_frontend *fe, | ||
| 119 | u32 srate, u32 ratio) | ||
| 120 | { | ||
| 121 | u8 aclk = 0; | ||
| 122 | u8 bclk = 0; | ||
| 123 | |||
| 124 | if (srate < 1500000) { | ||
| 125 | aclk = 0xb7; | ||
| 126 | bclk = 0x47; | ||
| 127 | } else if (srate < 3000000) { | ||
| 128 | aclk = 0xb7; | ||
| 129 | bclk = 0x4b; | ||
| 130 | } else if (srate < 7000000) { | ||
| 131 | aclk = 0xb7; | ||
| 132 | bclk = 0x4f; | ||
| 133 | } else if (srate < 14000000) { | ||
| 134 | aclk = 0xb7; | ||
| 135 | bclk = 0x53; | ||
| 136 | } else if (srate < 30000000) { | ||
| 137 | aclk = 0xb6; | ||
| 138 | bclk = 0x53; | ||
| 139 | } else if (srate < 45000000) { | ||
| 140 | aclk = 0xb4; | ||
| 141 | bclk = 0x51; | ||
| 142 | } | ||
| 143 | stv0299_writereg(fe, 0x13, aclk); | ||
| 144 | stv0299_writereg(fe, 0x14, bclk); | ||
| 145 | |||
| 146 | stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff); | ||
| 147 | stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff); | ||
| 148 | stv0299_writereg(fe, 0x21, ratio & 0xf0); | ||
| 149 | |||
| 150 | return 0; | ||
| 151 | } | ||
| 152 | |||
| 153 | struct stv0299_config lgtdqcs001f_config = { | ||
| 154 | .demod_address = 0x68, | ||
| 155 | .inittab = lgtdqcs001f_inittab, | ||
| 156 | .mclk = 88000000UL, | ||
| 157 | .invert = 0, | ||
| 158 | .skip_reinit = 0, | ||
| 159 | .volt13_op0_op1 = STV0299_VOLT13_OP0, | ||
| 160 | .min_delay_ms = 100, | ||
| 161 | .set_symbol_rate = lgtdqcs001f_set_symbol_rate, | ||
| 162 | }; | ||
| 163 | |||
| 164 | static int vp1033_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 165 | { | ||
| 166 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 167 | |||
| 168 | int err = 0; | ||
| 169 | |||
| 170 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 171 | if (err == 0) { | ||
| 172 | mantis_frontend_soft_reset(mantis); | ||
| 173 | msleep(250); | ||
| 174 | |||
| 175 | dprintk(MANTIS_ERROR, 1, "Probing for STV0299 (DVB-S)"); | ||
| 176 | fe = stv0299_attach(&lgtdqcs001f_config, adapter); | ||
| 177 | |||
| 178 | if (fe) { | ||
| 179 | fe->ops.tuner_ops.set_params = lgtdqcs001f_tuner_set; | ||
| 180 | dprintk(MANTIS_ERROR, 1, "found STV0299 DVB-S frontend @ 0x%02x", | ||
| 181 | lgtdqcs001f_config.demod_address); | ||
| 182 | |||
| 183 | dprintk(MANTIS_ERROR, 1, "Mantis DVB-S STV0299 frontend attach success"); | ||
| 184 | } else { | ||
| 185 | return -1; | ||
| 186 | } | ||
| 187 | } else { | ||
| 188 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 189 | adapter->name, | ||
| 190 | err); | ||
| 191 | |||
| 192 | return -EIO; | ||
| 193 | } | ||
| 194 | mantis->fe = fe; | ||
| 195 | dprintk(MANTIS_ERROR, 1, "Done!"); | ||
| 196 | |||
| 197 | return 0; | ||
| 198 | } | ||
| 199 | |||
| 200 | struct mantis_hwconfig vp1033_config = { | ||
| 201 | .model_name = MANTIS_MODEL_NAME, | ||
| 202 | .dev_type = MANTIS_DEV_TYPE, | ||
| 203 | .ts_size = MANTIS_TS_204, | ||
| 204 | |||
| 205 | .baud_rate = MANTIS_BAUD_9600, | ||
| 206 | .parity = MANTIS_PARITY_NONE, | ||
| 207 | .bytes = 0, | ||
| 208 | |||
| 209 | .frontend_init = vp1033_frontend_init, | ||
| 210 | .power = GPIF_A12, | ||
| 211 | .reset = GPIF_A13, | ||
| 212 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1033.h b/drivers/media/dvb/mantis/mantis_vp1033.h new file mode 100644 index 000000000000..7daaa1bf127d --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1033.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1033 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP1033_H | ||
| 22 | #define __MANTIS_VP1033_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_1033_DVB_S 0x0016 | ||
| 27 | |||
| 28 | extern struct mantis_hwconfig vp1033_config; | ||
| 29 | |||
| 30 | #endif /* __MANTIS_VP1033_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1034.c b/drivers/media/dvb/mantis/mantis_vp1034.c new file mode 100644 index 000000000000..8e6ae558ee57 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1034.c | |||
| @@ -0,0 +1,119 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1034 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "mb86a16.h" | ||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_ioc.h" | ||
| 34 | #include "mantis_dvb.h" | ||
| 35 | #include "mantis_vp1034.h" | ||
| 36 | #include "mantis_reg.h" | ||
| 37 | |||
| 38 | struct mb86a16_config vp1034_mb86a16_config = { | ||
| 39 | .demod_address = 0x08, | ||
| 40 | .set_voltage = vp1034_set_voltage, | ||
| 41 | }; | ||
| 42 | |||
| 43 | #define MANTIS_MODEL_NAME "VP-1034" | ||
| 44 | #define MANTIS_DEV_TYPE "DVB-S/DSS" | ||
| 45 | |||
| 46 | int vp1034_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage) | ||
| 47 | { | ||
| 48 | struct mantis_pci *mantis = fe->dvb->priv; | ||
| 49 | |||
| 50 | switch (voltage) { | ||
| 51 | case SEC_VOLTAGE_13: | ||
| 52 | dprintk(MANTIS_ERROR, 1, "Polarization=[13V]"); | ||
| 53 | gpio_set_bits(mantis, 13, 1); | ||
| 54 | gpio_set_bits(mantis, 14, 0); | ||
| 55 | break; | ||
| 56 | case SEC_VOLTAGE_18: | ||
| 57 | dprintk(MANTIS_ERROR, 1, "Polarization=[18V]"); | ||
| 58 | gpio_set_bits(mantis, 13, 1); | ||
| 59 | gpio_set_bits(mantis, 14, 1); | ||
| 60 | break; | ||
| 61 | case SEC_VOLTAGE_OFF: | ||
| 62 | dprintk(MANTIS_ERROR, 1, "Frontend (dummy) POWERDOWN"); | ||
| 63 | break; | ||
| 64 | default: | ||
| 65 | dprintk(MANTIS_ERROR, 1, "Invalid = (%d)", (u32) voltage); | ||
| 66 | return -EINVAL; | ||
| 67 | } | ||
| 68 | mmwrite(0x00, MANTIS_GPIF_DOUT); | ||
| 69 | |||
| 70 | return 0; | ||
| 71 | } | ||
| 72 | |||
| 73 | static int vp1034_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 74 | { | ||
| 75 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 76 | |||
| 77 | int err = 0; | ||
| 78 | |||
| 79 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 80 | if (err == 0) { | ||
| 81 | mantis_frontend_soft_reset(mantis); | ||
| 82 | msleep(250); | ||
| 83 | |||
| 84 | dprintk(MANTIS_ERROR, 1, "Probing for MB86A16 (DVB-S/DSS)"); | ||
| 85 | fe = mb86a16_attach(&vp1034_mb86a16_config, adapter); | ||
| 86 | if (fe) { | ||
| 87 | dprintk(MANTIS_ERROR, 1, | ||
| 88 | "found MB86A16 DVB-S/DSS frontend @0x%02x", | ||
| 89 | vp1034_mb86a16_config.demod_address); | ||
| 90 | |||
| 91 | } else { | ||
| 92 | return -1; | ||
| 93 | } | ||
| 94 | } else { | ||
| 95 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 96 | adapter->name, | ||
| 97 | err); | ||
| 98 | |||
| 99 | return -EIO; | ||
| 100 | } | ||
| 101 | mantis->fe = fe; | ||
| 102 | dprintk(MANTIS_ERROR, 1, "Done!"); | ||
| 103 | |||
| 104 | return 0; | ||
| 105 | } | ||
| 106 | |||
| 107 | struct mantis_hwconfig vp1034_config = { | ||
| 108 | .model_name = MANTIS_MODEL_NAME, | ||
| 109 | .dev_type = MANTIS_DEV_TYPE, | ||
| 110 | .ts_size = MANTIS_TS_204, | ||
| 111 | |||
| 112 | .baud_rate = MANTIS_BAUD_9600, | ||
| 113 | .parity = MANTIS_PARITY_NONE, | ||
| 114 | .bytes = 0, | ||
| 115 | |||
| 116 | .frontend_init = vp1034_frontend_init, | ||
| 117 | .power = GPIF_A12, | ||
| 118 | .reset = GPIF_A13, | ||
| 119 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1034.h b/drivers/media/dvb/mantis/mantis_vp1034.h new file mode 100644 index 000000000000..323f38ef8e3d --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1034.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1034 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP1034_H | ||
| 22 | #define __MANTIS_VP1034_H | ||
| 23 | |||
| 24 | #include "dvb_frontend.h" | ||
| 25 | #include "mantis_common.h" | ||
| 26 | |||
| 27 | |||
| 28 | #define MANTIS_VP_1034_DVB_S 0x0014 | ||
| 29 | |||
| 30 | extern struct mantis_hwconfig vp1034_config; | ||
| 31 | extern int vp1034_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage); | ||
| 32 | |||
| 33 | #endif /* __MANTIS_VP1034_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1041.c b/drivers/media/dvb/mantis/mantis_vp1041.c new file mode 100644 index 000000000000..515346dd31d0 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1041.c | |||
| @@ -0,0 +1,358 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1041 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "mantis_common.h" | ||
| 32 | #include "mantis_ioc.h" | ||
| 33 | #include "mantis_dvb.h" | ||
| 34 | #include "mantis_vp1041.h" | ||
| 35 | #include "stb0899_reg.h" | ||
| 36 | #include "stb0899_drv.h" | ||
| 37 | #include "stb0899_cfg.h" | ||
| 38 | #include "stb6100_cfg.h" | ||
| 39 | #include "stb6100.h" | ||
| 40 | #include "lnbp21.h" | ||
| 41 | |||
| 42 | #define MANTIS_MODEL_NAME "VP-1041" | ||
| 43 | #define MANTIS_DEV_TYPE "DSS/DVB-S/DVB-S2" | ||
| 44 | |||
| 45 | static const struct stb0899_s1_reg vp1041_stb0899_s1_init_1[] = { | ||
| 46 | |||
| 47 | /* 0x0000000b, *//* SYSREG */ | ||
| 48 | { STB0899_DEV_ID , 0x30 }, | ||
| 49 | { STB0899_DISCNTRL1 , 0x32 }, | ||
| 50 | { STB0899_DISCNTRL2 , 0x80 }, | ||
| 51 | { STB0899_DISRX_ST0 , 0x04 }, | ||
| 52 | { STB0899_DISRX_ST1 , 0x00 }, | ||
| 53 | { STB0899_DISPARITY , 0x00 }, | ||
| 54 | { STB0899_DISFIFO , 0x00 }, | ||
| 55 | { STB0899_DISSTATUS , 0x20 }, | ||
| 56 | { STB0899_DISF22 , 0x99 }, | ||
| 57 | { STB0899_DISF22RX , 0xa8 }, | ||
| 58 | /* SYSREG ? */ | ||
| 59 | { STB0899_ACRPRESC , 0x11 }, | ||
| 60 | { STB0899_ACRDIV1 , 0x0a }, | ||
| 61 | { STB0899_ACRDIV2 , 0x05 }, | ||
| 62 | { STB0899_DACR1 , 0x00 }, | ||
| 63 | { STB0899_DACR2 , 0x00 }, | ||
| 64 | { STB0899_OUTCFG , 0x00 }, | ||
| 65 | { STB0899_MODECFG , 0x00 }, | ||
| 66 | { STB0899_IRQSTATUS_3 , 0xfe }, | ||
| 67 | { STB0899_IRQSTATUS_2 , 0x03 }, | ||
| 68 | { STB0899_IRQSTATUS_1 , 0x7c }, | ||
| 69 | { STB0899_IRQSTATUS_0 , 0xf4 }, | ||
| 70 | { STB0899_IRQMSK_3 , 0xf3 }, | ||
| 71 | { STB0899_IRQMSK_2 , 0xfc }, | ||
| 72 | { STB0899_IRQMSK_1 , 0xff }, | ||
| 73 | { STB0899_IRQMSK_0 , 0xff }, | ||
| 74 | { STB0899_IRQCFG , 0x00 }, | ||
| 75 | { STB0899_I2CCFG , 0x88 }, | ||
| 76 | { STB0899_I2CRPT , 0x58 }, | ||
| 77 | { STB0899_IOPVALUE5 , 0x00 }, | ||
| 78 | { STB0899_IOPVALUE4 , 0x33 }, | ||
| 79 | { STB0899_IOPVALUE3 , 0x6d }, | ||
| 80 | { STB0899_IOPVALUE2 , 0x90 }, | ||
| 81 | { STB0899_IOPVALUE1 , 0x60 }, | ||
| 82 | { STB0899_IOPVALUE0 , 0x00 }, | ||
| 83 | { STB0899_GPIO00CFG , 0x82 }, | ||
| 84 | { STB0899_GPIO01CFG , 0x82 }, | ||
| 85 | { STB0899_GPIO02CFG , 0x82 }, | ||
| 86 | { STB0899_GPIO03CFG , 0x82 }, | ||
| 87 | { STB0899_GPIO04CFG , 0x82 }, | ||
| 88 | { STB0899_GPIO05CFG , 0x82 }, | ||
| 89 | { STB0899_GPIO06CFG , 0x82 }, | ||
| 90 | { STB0899_GPIO07CFG , 0x82 }, | ||
| 91 | { STB0899_GPIO08CFG , 0x82 }, | ||
| 92 | { STB0899_GPIO09CFG , 0x82 }, | ||
| 93 | { STB0899_GPIO10CFG , 0x82 }, | ||
| 94 | { STB0899_GPIO11CFG , 0x82 }, | ||
| 95 | { STB0899_GPIO12CFG , 0x82 }, | ||
| 96 | { STB0899_GPIO13CFG , 0x82 }, | ||
| 97 | { STB0899_GPIO14CFG , 0x82 }, | ||
| 98 | { STB0899_GPIO15CFG , 0x82 }, | ||
| 99 | { STB0899_GPIO16CFG , 0x82 }, | ||
| 100 | { STB0899_GPIO17CFG , 0x82 }, | ||
| 101 | { STB0899_GPIO18CFG , 0x82 }, | ||
| 102 | { STB0899_GPIO19CFG , 0x82 }, | ||
| 103 | { STB0899_GPIO20CFG , 0x82 }, | ||
| 104 | { STB0899_SDATCFG , 0xb8 }, | ||
| 105 | { STB0899_SCLTCFG , 0xba }, | ||
| 106 | { STB0899_AGCRFCFG , 0x1c }, /* 0x11 */ | ||
| 107 | { STB0899_GPIO22 , 0x82 }, /* AGCBB2CFG */ | ||
| 108 | { STB0899_GPIO21 , 0x91 }, /* AGCBB1CFG */ | ||
| 109 | { STB0899_DIRCLKCFG , 0x82 }, | ||
| 110 | { STB0899_CLKOUT27CFG , 0x7e }, | ||
| 111 | { STB0899_STDBYCFG , 0x82 }, | ||
| 112 | { STB0899_CS0CFG , 0x82 }, | ||
| 113 | { STB0899_CS1CFG , 0x82 }, | ||
| 114 | { STB0899_DISEQCOCFG , 0x20 }, | ||
| 115 | { STB0899_GPIO32CFG , 0x82 }, | ||
| 116 | { STB0899_GPIO33CFG , 0x82 }, | ||
| 117 | { STB0899_GPIO34CFG , 0x82 }, | ||
| 118 | { STB0899_GPIO35CFG , 0x82 }, | ||
| 119 | { STB0899_GPIO36CFG , 0x82 }, | ||
| 120 | { STB0899_GPIO37CFG , 0x82 }, | ||
| 121 | { STB0899_GPIO38CFG , 0x82 }, | ||
| 122 | { STB0899_GPIO39CFG , 0x82 }, | ||
| 123 | { STB0899_NCOARSE , 0x17 }, /* 0x15 = 27 Mhz Clock, F/3 = 198MHz, F/6 = 99MHz */ | ||
| 124 | { STB0899_SYNTCTRL , 0x02 }, /* 0x00 = CLK from CLKI, 0x02 = CLK from XTALI */ | ||
| 125 | { STB0899_FILTCTRL , 0x00 }, | ||
| 126 | { STB0899_SYSCTRL , 0x01 }, | ||
| 127 | { STB0899_STOPCLK1 , 0x20 }, | ||
| 128 | { STB0899_STOPCLK2 , 0x00 }, | ||
| 129 | { STB0899_INTBUFSTATUS , 0x00 }, | ||
| 130 | { STB0899_INTBUFCTRL , 0x0a }, | ||
| 131 | { 0xffff , 0xff }, | ||
| 132 | }; | ||
| 133 | |||
| 134 | static const struct stb0899_s1_reg vp1041_stb0899_s1_init_3[] = { | ||
| 135 | { STB0899_DEMOD , 0x00 }, | ||
| 136 | { STB0899_RCOMPC , 0xc9 }, | ||
| 137 | { STB0899_AGC1CN , 0x01 }, | ||
| 138 | { STB0899_AGC1REF , 0x10 }, | ||
| 139 | { STB0899_RTC , 0x23 }, | ||
| 140 | { STB0899_TMGCFG , 0x4e }, | ||
| 141 | { STB0899_AGC2REF , 0x34 }, | ||
| 142 | { STB0899_TLSR , 0x84 }, | ||
| 143 | { STB0899_CFD , 0xf7 }, | ||
| 144 | { STB0899_ACLC , 0x87 }, | ||
| 145 | { STB0899_BCLC , 0x94 }, | ||
| 146 | { STB0899_EQON , 0x41 }, | ||
| 147 | { STB0899_LDT , 0xf1 }, | ||
| 148 | { STB0899_LDT2 , 0xe3 }, | ||
| 149 | { STB0899_EQUALREF , 0xb4 }, | ||
| 150 | { STB0899_TMGRAMP , 0x10 }, | ||
| 151 | { STB0899_TMGTHD , 0x30 }, | ||
| 152 | { STB0899_IDCCOMP , 0xfd }, | ||
| 153 | { STB0899_QDCCOMP , 0xff }, | ||
| 154 | { STB0899_POWERI , 0x0c }, | ||
| 155 | { STB0899_POWERQ , 0x0f }, | ||
| 156 | { STB0899_RCOMP , 0x6c }, | ||
| 157 | { STB0899_AGCIQIN , 0x80 }, | ||
| 158 | { STB0899_AGC2I1 , 0x06 }, | ||
| 159 | { STB0899_AGC2I2 , 0x00 }, | ||
| 160 | { STB0899_TLIR , 0x30 }, | ||
| 161 | { STB0899_RTF , 0x7f }, | ||
| 162 | { STB0899_DSTATUS , 0x00 }, | ||
| 163 | { STB0899_LDI , 0xbc }, | ||
| 164 | { STB0899_CFRM , 0xea }, | ||
| 165 | { STB0899_CFRL , 0x31 }, | ||
| 166 | { STB0899_NIRM , 0x2b }, | ||
| 167 | { STB0899_NIRL , 0x80 }, | ||
| 168 | { STB0899_ISYMB , 0x1d }, | ||
| 169 | { STB0899_QSYMB , 0xa6 }, | ||
| 170 | { STB0899_SFRH , 0x2f }, | ||
| 171 | { STB0899_SFRM , 0x68 }, | ||
| 172 | { STB0899_SFRL , 0x40 }, | ||
| 173 | { STB0899_SFRUPH , 0x2f }, | ||
| 174 | { STB0899_SFRUPM , 0x68 }, | ||
| 175 | { STB0899_SFRUPL , 0x40 }, | ||
| 176 | { STB0899_EQUAI1 , 0x02 }, | ||
| 177 | { STB0899_EQUAQ1 , 0xff }, | ||
| 178 | { STB0899_EQUAI2 , 0x04 }, | ||
| 179 | { STB0899_EQUAQ2 , 0x05 }, | ||
| 180 | { STB0899_EQUAI3 , 0x02 }, | ||
| 181 | { STB0899_EQUAQ3 , 0xfd }, | ||
| 182 | { STB0899_EQUAI4 , 0x03 }, | ||
| 183 | { STB0899_EQUAQ4 , 0x07 }, | ||
| 184 | { STB0899_EQUAI5 , 0x08 }, | ||
| 185 | { STB0899_EQUAQ5 , 0xf5 }, | ||
| 186 | { STB0899_DSTATUS2 , 0x00 }, | ||
| 187 | { STB0899_VSTATUS , 0x00 }, | ||
| 188 | { STB0899_VERROR , 0x86 }, | ||
| 189 | { STB0899_IQSWAP , 0x2a }, | ||
| 190 | { STB0899_ECNT1M , 0x00 }, | ||
| 191 | { STB0899_ECNT1L , 0x00 }, | ||
| 192 | { STB0899_ECNT2M , 0x00 }, | ||
| 193 | { STB0899_ECNT2L , 0x00 }, | ||
| 194 | { STB0899_ECNT3M , 0x0a }, | ||
| 195 | { STB0899_ECNT3L , 0xad }, | ||
| 196 | { STB0899_FECAUTO1 , 0x06 }, | ||
| 197 | { STB0899_FECM , 0x01 }, | ||
| 198 | { STB0899_VTH12 , 0xb0 }, | ||
| 199 | { STB0899_VTH23 , 0x7a }, | ||
| 200 | { STB0899_VTH34 , 0x58 }, | ||
| 201 | { STB0899_VTH56 , 0x38 }, | ||
| 202 | { STB0899_VTH67 , 0x34 }, | ||
| 203 | { STB0899_VTH78 , 0x24 }, | ||
| 204 | { STB0899_PRVIT , 0xff }, | ||
| 205 | { STB0899_VITSYNC , 0x19 }, | ||
| 206 | { STB0899_RSULC , 0xb1 }, /* DVB = 0xb1, DSS = 0xa1 */ | ||
| 207 | { STB0899_TSULC , 0x42 }, | ||
| 208 | { STB0899_RSLLC , 0x41 }, | ||
| 209 | { STB0899_TSLPL , 0x12 }, | ||
| 210 | { STB0899_TSCFGH , 0x0c }, | ||
| 211 | { STB0899_TSCFGM , 0x00 }, | ||
| 212 | { STB0899_TSCFGL , 0x00 }, | ||
| 213 | { STB0899_TSOUT , 0x69 }, /* 0x0d for CAM */ | ||
| 214 | { STB0899_RSSYNCDEL , 0x00 }, | ||
| 215 | { STB0899_TSINHDELH , 0x02 }, | ||
| 216 | { STB0899_TSINHDELM , 0x00 }, | ||
| 217 | { STB0899_TSINHDELL , 0x00 }, | ||
| 218 | { STB0899_TSLLSTKM , 0x1b }, | ||
| 219 | { STB0899_TSLLSTKL , 0xb3 }, | ||
| 220 | { STB0899_TSULSTKM , 0x00 }, | ||
| 221 | { STB0899_TSULSTKL , 0x00 }, | ||
| 222 | { STB0899_PCKLENUL , 0xbc }, | ||
| 223 | { STB0899_PCKLENLL , 0xcc }, | ||
| 224 | { STB0899_RSPCKLEN , 0xbd }, | ||
| 225 | { STB0899_TSSTATUS , 0x90 }, | ||
| 226 | { STB0899_ERRCTRL1 , 0xb6 }, | ||
| 227 | { STB0899_ERRCTRL2 , 0x95 }, | ||
| 228 | { STB0899_ERRCTRL3 , 0x8d }, | ||
| 229 | { STB0899_DMONMSK1 , 0x27 }, | ||
| 230 | { STB0899_DMONMSK0 , 0x03 }, | ||
| 231 | { STB0899_DEMAPVIT , 0x5c }, | ||
| 232 | { STB0899_PLPARM , 0x19 }, | ||
| 233 | { STB0899_PDELCTRL , 0x48 }, | ||
| 234 | { STB0899_PDELCTRL2 , 0x00 }, | ||
| 235 | { STB0899_BBHCTRL1 , 0x00 }, | ||
| 236 | { STB0899_BBHCTRL2 , 0x00 }, | ||
| 237 | { STB0899_HYSTTHRESH , 0x77 }, | ||
| 238 | { STB0899_MATCSTM , 0x00 }, | ||
| 239 | { STB0899_MATCSTL , 0x00 }, | ||
| 240 | { STB0899_UPLCSTM , 0x00 }, | ||
| 241 | { STB0899_UPLCSTL , 0x00 }, | ||
| 242 | { STB0899_DFLCSTM , 0x00 }, | ||
| 243 | { STB0899_DFLCSTL , 0x00 }, | ||
| 244 | { STB0899_SYNCCST , 0x00 }, | ||
| 245 | { STB0899_SYNCDCSTM , 0x00 }, | ||
| 246 | { STB0899_SYNCDCSTL , 0x00 }, | ||
| 247 | { STB0899_ISI_ENTRY , 0x00 }, | ||
| 248 | { STB0899_ISI_BIT_EN , 0x00 }, | ||
| 249 | { STB0899_MATSTRM , 0xf0 }, | ||
| 250 | { STB0899_MATSTRL , 0x02 }, | ||
| 251 | { STB0899_UPLSTRM , 0x45 }, | ||
| 252 | { STB0899_UPLSTRL , 0x60 }, | ||
| 253 | { STB0899_DFLSTRM , 0xe3 }, | ||
| 254 | { STB0899_DFLSTRL , 0x00 }, | ||
| 255 | { STB0899_SYNCSTR , 0x47 }, | ||
| 256 | { STB0899_SYNCDSTRM , 0x05 }, | ||
| 257 | { STB0899_SYNCDSTRL , 0x18 }, | ||
| 258 | { STB0899_CFGPDELSTATUS1 , 0x19 }, | ||
| 259 | { STB0899_CFGPDELSTATUS2 , 0x2b }, | ||
| 260 | { STB0899_BBFERRORM , 0x00 }, | ||
| 261 | { STB0899_BBFERRORL , 0x01 }, | ||
| 262 | { STB0899_UPKTERRORM , 0x00 }, | ||
| 263 | { STB0899_UPKTERRORL , 0x00 }, | ||
| 264 | { 0xffff , 0xff }, | ||
| 265 | }; | ||
| 266 | |||
| 267 | struct stb0899_config vp1041_stb0899_config = { | ||
| 268 | .init_dev = vp1041_stb0899_s1_init_1, | ||
| 269 | .init_s2_demod = stb0899_s2_init_2, | ||
| 270 | .init_s1_demod = vp1041_stb0899_s1_init_3, | ||
| 271 | .init_s2_fec = stb0899_s2_init_4, | ||
| 272 | .init_tst = stb0899_s1_init_5, | ||
| 273 | |||
| 274 | .demod_address = 0x68, /* 0xd0 >> 1 */ | ||
| 275 | |||
| 276 | .xtal_freq = 27000000, | ||
| 277 | .inversion = IQ_SWAP_ON, /* 1 */ | ||
| 278 | |||
| 279 | .lo_clk = 76500000, | ||
| 280 | .hi_clk = 99000000, | ||
| 281 | |||
| 282 | .esno_ave = STB0899_DVBS2_ESNO_AVE, | ||
| 283 | .esno_quant = STB0899_DVBS2_ESNO_QUANT, | ||
| 284 | .avframes_coarse = STB0899_DVBS2_AVFRAMES_COARSE, | ||
| 285 | .avframes_fine = STB0899_DVBS2_AVFRAMES_FINE, | ||
| 286 | .miss_threshold = STB0899_DVBS2_MISS_THRESHOLD, | ||
| 287 | .uwp_threshold_acq = STB0899_DVBS2_UWP_THRESHOLD_ACQ, | ||
| 288 | .uwp_threshold_track = STB0899_DVBS2_UWP_THRESHOLD_TRACK, | ||
| 289 | .uwp_threshold_sof = STB0899_DVBS2_UWP_THRESHOLD_SOF, | ||
| 290 | .sof_search_timeout = STB0899_DVBS2_SOF_SEARCH_TIMEOUT, | ||
| 291 | |||
| 292 | .btr_nco_bits = STB0899_DVBS2_BTR_NCO_BITS, | ||
| 293 | .btr_gain_shift_offset = STB0899_DVBS2_BTR_GAIN_SHIFT_OFFSET, | ||
| 294 | .crl_nco_bits = STB0899_DVBS2_CRL_NCO_BITS, | ||
| 295 | .ldpc_max_iter = STB0899_DVBS2_LDPC_MAX_ITER, | ||
| 296 | |||
| 297 | .tuner_get_frequency = stb6100_get_frequency, | ||
| 298 | .tuner_set_frequency = stb6100_set_frequency, | ||
| 299 | .tuner_set_bandwidth = stb6100_set_bandwidth, | ||
| 300 | .tuner_get_bandwidth = stb6100_get_bandwidth, | ||
| 301 | .tuner_set_rfsiggain = NULL, | ||
| 302 | }; | ||
| 303 | |||
| 304 | struct stb6100_config vp1041_stb6100_config = { | ||
| 305 | .tuner_address = 0x60, | ||
| 306 | .refclock = 27000000, | ||
| 307 | }; | ||
| 308 | |||
| 309 | static int vp1041_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 310 | { | ||
| 311 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 312 | |||
| 313 | int err = 0; | ||
| 314 | |||
| 315 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 316 | if (err == 0) { | ||
| 317 | mantis_frontend_soft_reset(mantis); | ||
| 318 | msleep(250); | ||
| 319 | mantis->fe = stb0899_attach(&vp1041_stb0899_config, adapter); | ||
| 320 | if (mantis->fe) { | ||
| 321 | dprintk(MANTIS_ERROR, 1, | ||
| 322 | "found STB0899 DVB-S/DVB-S2 frontend @0x%02x", | ||
| 323 | vp1041_stb0899_config.demod_address); | ||
| 324 | |||
| 325 | if (stb6100_attach(mantis->fe, &vp1041_stb6100_config, adapter)) { | ||
| 326 | if (!lnbp21_attach(mantis->fe, adapter, 0, 0)) | ||
| 327 | dprintk(MANTIS_ERROR, 1, "No LNBP21 found!"); | ||
| 328 | } | ||
| 329 | } else { | ||
| 330 | return -EREMOTEIO; | ||
| 331 | } | ||
| 332 | } else { | ||
| 333 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 334 | adapter->name, | ||
| 335 | err); | ||
| 336 | |||
| 337 | return -EIO; | ||
| 338 | } | ||
| 339 | |||
| 340 | |||
| 341 | dprintk(MANTIS_ERROR, 1, "Done!"); | ||
| 342 | |||
| 343 | return 0; | ||
| 344 | } | ||
| 345 | |||
| 346 | struct mantis_hwconfig vp1041_config = { | ||
| 347 | .model_name = MANTIS_MODEL_NAME, | ||
| 348 | .dev_type = MANTIS_DEV_TYPE, | ||
| 349 | .ts_size = MANTIS_TS_188, | ||
| 350 | |||
| 351 | .baud_rate = MANTIS_BAUD_9600, | ||
| 352 | .parity = MANTIS_PARITY_NONE, | ||
| 353 | .bytes = 0, | ||
| 354 | |||
| 355 | .frontend_init = vp1041_frontend_init, | ||
| 356 | .power = GPIF_A12, | ||
| 357 | .reset = GPIF_A13, | ||
| 358 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp1041.h b/drivers/media/dvb/mantis/mantis_vp1041.h new file mode 100644 index 000000000000..1ae5b3de8081 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp1041.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-1041 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP1041_H | ||
| 22 | #define __MANTIS_VP1041_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_1041_DVB_S2 0x0031 | ||
| 27 | #define SKYSTAR_HD2_10 0x0001 | ||
| 28 | #define SKYSTAR_HD2_20 0x0003 | ||
| 29 | #define CINERGY_S2_PCI_HD 0x1179 | ||
| 30 | |||
| 31 | extern struct mantis_hwconfig vp1041_config; | ||
| 32 | |||
| 33 | #endif /* __MANTIS_VP1041_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp2033.c b/drivers/media/dvb/mantis/mantis_vp2033.c new file mode 100644 index 000000000000..10ce81790a8c --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp2033.c | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-2033 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "tda1002x.h" | ||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_ioc.h" | ||
| 34 | #include "mantis_dvb.h" | ||
| 35 | #include "mantis_vp2033.h" | ||
| 36 | |||
| 37 | #define MANTIS_MODEL_NAME "VP-2033" | ||
| 38 | #define MANTIS_DEV_TYPE "DVB-C" | ||
| 39 | |||
| 40 | struct tda1002x_config vp2033_tda1002x_cu1216_config = { | ||
| 41 | .demod_address = 0x18 >> 1, | ||
| 42 | .invert = 1, | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct tda10023_config vp2033_tda10023_cu1216_config = { | ||
| 46 | .demod_address = 0x18 >> 1, | ||
| 47 | .invert = 1, | ||
| 48 | }; | ||
| 49 | |||
| 50 | static u8 read_pwm(struct mantis_pci *mantis) | ||
| 51 | { | ||
| 52 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 53 | |||
| 54 | u8 b = 0xff; | ||
| 55 | u8 pwm; | ||
| 56 | struct i2c_msg msg[] = { | ||
| 57 | {.addr = 0x50, .flags = 0, .buf = &b, .len = 1}, | ||
| 58 | {.addr = 0x50, .flags = I2C_M_RD, .buf = &pwm, .len = 1} | ||
| 59 | }; | ||
| 60 | |||
| 61 | if ((i2c_transfer(adapter, msg, 2) != 2) | ||
| 62 | || (pwm == 0xff)) | ||
| 63 | pwm = 0x48; | ||
| 64 | |||
| 65 | return pwm; | ||
| 66 | } | ||
| 67 | |||
| 68 | static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params) | ||
| 69 | { | ||
| 70 | struct mantis_pci *mantis = fe->dvb->priv; | ||
| 71 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 72 | |||
| 73 | u8 buf[6]; | ||
| 74 | struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf)}; | ||
| 75 | int i; | ||
| 76 | |||
| 77 | #define CU1216_IF 36125000 | ||
| 78 | #define TUNER_MUL 62500 | ||
| 79 | |||
| 80 | u32 div = (params->frequency + CU1216_IF + TUNER_MUL / 2) / TUNER_MUL; | ||
| 81 | |||
| 82 | buf[0] = (div >> 8) & 0x7f; | ||
| 83 | buf[1] = div & 0xff; | ||
| 84 | buf[2] = 0xce; | ||
| 85 | buf[3] = (params->frequency < 150000000 ? 0x01 : | ||
| 86 | params->frequency < 445000000 ? 0x02 : 0x04); | ||
| 87 | buf[4] = 0xde; | ||
| 88 | buf[5] = 0x20; | ||
| 89 | |||
| 90 | if (fe->ops.i2c_gate_ctrl) | ||
| 91 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 92 | |||
| 93 | if (i2c_transfer(adapter, &msg, 1) != 1) | ||
| 94 | return -EIO; | ||
| 95 | |||
| 96 | /* wait for the pll lock */ | ||
| 97 | msg.flags = I2C_M_RD; | ||
| 98 | msg.len = 1; | ||
| 99 | for (i = 0; i < 20; i++) { | ||
| 100 | if (fe->ops.i2c_gate_ctrl) | ||
| 101 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 102 | |||
| 103 | if (i2c_transfer(adapter, &msg, 1) == 1 && (buf[0] & 0x40)) | ||
| 104 | break; | ||
| 105 | |||
| 106 | msleep(10); | ||
| 107 | } | ||
| 108 | |||
| 109 | /* switch the charge pump to the lower current */ | ||
| 110 | msg.flags = 0; | ||
| 111 | msg.len = 2; | ||
| 112 | msg.buf = &buf[2]; | ||
| 113 | buf[2] &= ~0x40; | ||
| 114 | if (fe->ops.i2c_gate_ctrl) | ||
| 115 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 116 | |||
| 117 | if (i2c_transfer(adapter, &msg, 1) != 1) | ||
| 118 | return -EIO; | ||
| 119 | |||
| 120 | return 0; | ||
| 121 | } | ||
| 122 | |||
| 123 | static int vp2033_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 124 | { | ||
| 125 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 126 | |||
| 127 | int err = 0; | ||
| 128 | |||
| 129 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 130 | if (err == 0) { | ||
| 131 | mantis_frontend_soft_reset(mantis); | ||
| 132 | msleep(250); | ||
| 133 | |||
| 134 | dprintk(MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)"); | ||
| 135 | fe = tda10021_attach(&vp2033_tda1002x_cu1216_config, | ||
| 136 | adapter, | ||
| 137 | read_pwm(mantis)); | ||
| 138 | |||
| 139 | if (fe) { | ||
| 140 | dprintk(MANTIS_ERROR, 1, | ||
| 141 | "found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x", | ||
| 142 | vp2033_tda1002x_cu1216_config.demod_address); | ||
| 143 | } else { | ||
| 144 | fe = tda10023_attach(&vp2033_tda10023_cu1216_config, | ||
| 145 | adapter, | ||
| 146 | read_pwm(mantis)); | ||
| 147 | |||
| 148 | if (fe) { | ||
| 149 | dprintk(MANTIS_ERROR, 1, | ||
| 150 | "found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x", | ||
| 151 | vp2033_tda1002x_cu1216_config.demod_address); | ||
| 152 | } | ||
| 153 | } | ||
| 154 | |||
| 155 | if (fe) { | ||
| 156 | fe->ops.tuner_ops.set_params = tda1002x_cu1216_tuner_set; | ||
| 157 | dprintk(MANTIS_ERROR, 1, "Mantis DVB-C Philips CU1216 frontend attach success"); | ||
| 158 | } else { | ||
| 159 | return -1; | ||
| 160 | } | ||
| 161 | } else { | ||
| 162 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 163 | adapter->name, | ||
| 164 | err); | ||
| 165 | |||
| 166 | return -EIO; | ||
| 167 | } | ||
| 168 | |||
| 169 | mantis->fe = fe; | ||
| 170 | dprintk(MANTIS_DEBUG, 1, "Done!"); | ||
| 171 | |||
| 172 | return 0; | ||
| 173 | } | ||
| 174 | |||
| 175 | struct mantis_hwconfig vp2033_config = { | ||
| 176 | .model_name = MANTIS_MODEL_NAME, | ||
| 177 | .dev_type = MANTIS_DEV_TYPE, | ||
| 178 | .ts_size = MANTIS_TS_204, | ||
| 179 | |||
| 180 | .baud_rate = MANTIS_BAUD_9600, | ||
| 181 | .parity = MANTIS_PARITY_NONE, | ||
| 182 | .bytes = 0, | ||
| 183 | |||
| 184 | .frontend_init = vp2033_frontend_init, | ||
| 185 | .power = GPIF_A12, | ||
| 186 | .reset = GPIF_A13, | ||
| 187 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp2033.h b/drivers/media/dvb/mantis/mantis_vp2033.h new file mode 100644 index 000000000000..c55242b79d54 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp2033.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-2033 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP2033_H | ||
| 22 | #define __MANTIS_VP2033_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_2033_DVB_C 0x0008 | ||
| 27 | |||
| 28 | extern struct mantis_hwconfig vp2033_config; | ||
| 29 | |||
| 30 | #endif /* __MANTIS_VP2033_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp2040.c b/drivers/media/dvb/mantis/mantis_vp2040.c new file mode 100644 index 000000000000..a7ca233e800b --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp2040.c | |||
| @@ -0,0 +1,186 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-2040 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "tda1002x.h" | ||
| 32 | #include "mantis_common.h" | ||
| 33 | #include "mantis_ioc.h" | ||
| 34 | #include "mantis_dvb.h" | ||
| 35 | #include "mantis_vp2040.h" | ||
| 36 | |||
| 37 | #define MANTIS_MODEL_NAME "VP-2040" | ||
| 38 | #define MANTIS_DEV_TYPE "DVB-C" | ||
| 39 | |||
| 40 | struct tda1002x_config vp2040_tda1002x_cu1216_config = { | ||
| 41 | .demod_address = 0x18 >> 1, | ||
| 42 | .invert = 1, | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct tda10023_config vp2040_tda10023_cu1216_config = { | ||
| 46 | .demod_address = 0x18 >> 1, | ||
| 47 | .invert = 1, | ||
| 48 | }; | ||
| 49 | |||
| 50 | static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params) | ||
| 51 | { | ||
| 52 | struct mantis_pci *mantis = fe->dvb->priv; | ||
| 53 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 54 | |||
| 55 | u8 buf[6]; | ||
| 56 | struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf)}; | ||
| 57 | int i; | ||
| 58 | |||
| 59 | #define CU1216_IF 36125000 | ||
| 60 | #define TUNER_MUL 62500 | ||
| 61 | |||
| 62 | u32 div = (params->frequency + CU1216_IF + TUNER_MUL / 2) / TUNER_MUL; | ||
| 63 | |||
| 64 | buf[0] = (div >> 8) & 0x7f; | ||
| 65 | buf[1] = div & 0xff; | ||
| 66 | buf[2] = 0xce; | ||
| 67 | buf[3] = (params->frequency < 150000000 ? 0x01 : | ||
| 68 | params->frequency < 445000000 ? 0x02 : 0x04); | ||
| 69 | buf[4] = 0xde; | ||
| 70 | buf[5] = 0x20; | ||
| 71 | |||
| 72 | if (fe->ops.i2c_gate_ctrl) | ||
| 73 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 74 | |||
| 75 | if (i2c_transfer(adapter, &msg, 1) != 1) | ||
| 76 | return -EIO; | ||
| 77 | |||
| 78 | /* wait for the pll lock */ | ||
| 79 | msg.flags = I2C_M_RD; | ||
| 80 | msg.len = 1; | ||
| 81 | for (i = 0; i < 20; i++) { | ||
| 82 | if (fe->ops.i2c_gate_ctrl) | ||
| 83 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 84 | |||
| 85 | if (i2c_transfer(adapter, &msg, 1) == 1 && (buf[0] & 0x40)) | ||
| 86 | break; | ||
| 87 | |||
| 88 | msleep(10); | ||
| 89 | } | ||
| 90 | |||
| 91 | /* switch the charge pump to the lower current */ | ||
| 92 | msg.flags = 0; | ||
| 93 | msg.len = 2; | ||
| 94 | msg.buf = &buf[2]; | ||
| 95 | buf[2] &= ~0x40; | ||
| 96 | if (fe->ops.i2c_gate_ctrl) | ||
| 97 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
| 98 | |||
| 99 | if (i2c_transfer(adapter, &msg, 1) != 1) | ||
| 100 | return -EIO; | ||
| 101 | |||
| 102 | return 0; | ||
| 103 | } | ||
| 104 | |||
| 105 | static u8 read_pwm(struct mantis_pci *mantis) | ||
| 106 | { | ||
| 107 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 108 | |||
| 109 | u8 b = 0xff; | ||
| 110 | u8 pwm; | ||
| 111 | struct i2c_msg msg[] = { | ||
| 112 | {.addr = 0x50, .flags = 0, .buf = &b, .len = 1}, | ||
| 113 | {.addr = 0x50, .flags = I2C_M_RD, .buf = &pwm, .len = 1} | ||
| 114 | }; | ||
| 115 | |||
| 116 | if ((i2c_transfer(adapter, msg, 2) != 2) | ||
| 117 | || (pwm == 0xff)) | ||
| 118 | pwm = 0x48; | ||
| 119 | |||
| 120 | return pwm; | ||
| 121 | } | ||
| 122 | |||
| 123 | static int vp2040_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 124 | { | ||
| 125 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 126 | |||
| 127 | int err = 0; | ||
| 128 | |||
| 129 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 130 | if (err == 0) { | ||
| 131 | mantis_frontend_soft_reset(mantis); | ||
| 132 | msleep(250); | ||
| 133 | |||
| 134 | dprintk(MANTIS_ERROR, 1, "Probing for CU1216 (DVB-C)"); | ||
| 135 | fe = tda10021_attach(&vp2040_tda1002x_cu1216_config, | ||
| 136 | adapter, | ||
| 137 | read_pwm(mantis)); | ||
| 138 | |||
| 139 | if (fe) { | ||
| 140 | dprintk(MANTIS_ERROR, 1, | ||
| 141 | "found Philips CU1216 DVB-C frontend (TDA10021) @ 0x%02x", | ||
| 142 | vp2040_tda1002x_cu1216_config.demod_address); | ||
| 143 | } else { | ||
| 144 | fe = tda10023_attach(&vp2040_tda10023_cu1216_config, | ||
| 145 | adapter, | ||
| 146 | read_pwm(mantis)); | ||
| 147 | |||
| 148 | if (fe) { | ||
| 149 | dprintk(MANTIS_ERROR, 1, | ||
| 150 | "found Philips CU1216 DVB-C frontend (TDA10023) @ 0x%02x", | ||
| 151 | vp2040_tda1002x_cu1216_config.demod_address); | ||
| 152 | } | ||
| 153 | } | ||
| 154 | |||
| 155 | if (fe) { | ||
| 156 | fe->ops.tuner_ops.set_params = tda1002x_cu1216_tuner_set; | ||
| 157 | dprintk(MANTIS_ERROR, 1, "Mantis DVB-C Philips CU1216 frontend attach success"); | ||
| 158 | } else { | ||
| 159 | return -1; | ||
| 160 | } | ||
| 161 | } else { | ||
| 162 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 163 | adapter->name, | ||
| 164 | err); | ||
| 165 | |||
| 166 | return -EIO; | ||
| 167 | } | ||
| 168 | mantis->fe = fe; | ||
| 169 | dprintk(MANTIS_DEBUG, 1, "Done!"); | ||
| 170 | |||
| 171 | return 0; | ||
| 172 | } | ||
| 173 | |||
| 174 | struct mantis_hwconfig vp2040_config = { | ||
| 175 | .model_name = MANTIS_MODEL_NAME, | ||
| 176 | .dev_type = MANTIS_DEV_TYPE, | ||
| 177 | .ts_size = MANTIS_TS_204, | ||
| 178 | |||
| 179 | .baud_rate = MANTIS_BAUD_9600, | ||
| 180 | .parity = MANTIS_PARITY_NONE, | ||
| 181 | .bytes = 0, | ||
| 182 | |||
| 183 | .frontend_init = vp2040_frontend_init, | ||
| 184 | .power = GPIF_A12, | ||
| 185 | .reset = GPIF_A13, | ||
| 186 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp2040.h b/drivers/media/dvb/mantis/mantis_vp2040.h new file mode 100644 index 000000000000..d125e219b685 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp2040.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-2040 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP2040_H | ||
| 22 | #define __MANTIS_VP2040_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_2040_DVB_C 0x0043 | ||
| 27 | #define CINERGY_C 0x1178 | ||
| 28 | #define CABLESTAR_HD2 0x0002 | ||
| 29 | |||
| 30 | extern struct mantis_hwconfig vp2040_config; | ||
| 31 | |||
| 32 | #endif /* __MANTIS_VP2040_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp3028.c b/drivers/media/dvb/mantis/mantis_vp3028.c new file mode 100644 index 000000000000..4155c838a18a --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp3028.c | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-3028 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include "mantis_common.h" | ||
| 22 | #include "mantis_vp3028.h" | ||
| 23 | |||
| 24 | struct zl10353_config mantis_vp3028_config = { | ||
| 25 | .demod_address = 0x0f, | ||
| 26 | }; | ||
| 27 | |||
| 28 | #define MANTIS_MODEL_NAME "VP-3028" | ||
| 29 | #define MANTIS_DEV_TYPE "DVB-T" | ||
| 30 | |||
| 31 | struct mantis_hwconfig vp3028_mantis_config = { | ||
| 32 | .model_name = MANTIS_MODEL_NAME, | ||
| 33 | .dev_type = MANTIS_DEV_TYPE, | ||
| 34 | .ts_size = MANTIS_TS_188, | ||
| 35 | .baud_rate = MANTIS_BAUD_9600, | ||
| 36 | .parity = MANTIS_PARITY_NONE, | ||
| 37 | .bytes = 0, | ||
| 38 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp3028.h b/drivers/media/dvb/mantis/mantis_vp3028.h new file mode 100644 index 000000000000..b07be6adc522 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp3028.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-3028 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP3028_H | ||
| 22 | #define __MANTIS_VP3028_H | ||
| 23 | |||
| 24 | #include "dvb_frontend.h" | ||
| 25 | #include "mantis_common.h" | ||
| 26 | #include "zl10353.h" | ||
| 27 | |||
| 28 | #define MANTIS_VP_3028_DVB_T 0x0028 | ||
| 29 | |||
| 30 | extern struct zl10353_config mantis_vp3028_config; | ||
| 31 | extern struct mantis_hwconfig vp3028_mantis_config; | ||
| 32 | |||
| 33 | #endif /* __MANTIS_VP3028_H */ | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp3030.c b/drivers/media/dvb/mantis/mantis_vp3030.c new file mode 100644 index 000000000000..1f4334214953 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp3030.c | |||
| @@ -0,0 +1,105 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-3030 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/sched.h> | ||
| 23 | #include <linux/interrupt.h> | ||
| 24 | |||
| 25 | #include "dmxdev.h" | ||
| 26 | #include "dvbdev.h" | ||
| 27 | #include "dvb_demux.h" | ||
| 28 | #include "dvb_frontend.h" | ||
| 29 | #include "dvb_net.h" | ||
| 30 | |||
| 31 | #include "zl10353.h" | ||
| 32 | #include "tda665x.h" | ||
| 33 | #include "mantis_common.h" | ||
| 34 | #include "mantis_ioc.h" | ||
| 35 | #include "mantis_dvb.h" | ||
| 36 | #include "mantis_vp3030.h" | ||
| 37 | |||
| 38 | struct zl10353_config mantis_vp3030_config = { | ||
| 39 | .demod_address = 0x0f, | ||
| 40 | }; | ||
| 41 | |||
| 42 | struct tda665x_config env57h12d5_config = { | ||
| 43 | .name = "ENV57H12D5 (ET-50DT)", | ||
| 44 | .addr = 0x60, | ||
| 45 | .frequency_min = 47000000, | ||
| 46 | .frequency_max = 862000000, | ||
| 47 | .frequency_offst = 3616667, | ||
| 48 | .ref_multiplier = 6, /* 1/6 MHz */ | ||
| 49 | .ref_divider = 100000, /* 1/6 MHz */ | ||
| 50 | }; | ||
| 51 | |||
| 52 | #define MANTIS_MODEL_NAME "VP-3030" | ||
| 53 | #define MANTIS_DEV_TYPE "DVB-T" | ||
| 54 | |||
| 55 | |||
| 56 | static int vp3030_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *fe) | ||
| 57 | { | ||
| 58 | struct i2c_adapter *adapter = &mantis->adapter; | ||
| 59 | struct mantis_hwconfig *config = mantis->hwconfig; | ||
| 60 | int err = 0; | ||
| 61 | |||
| 62 | gpio_set_bits(mantis, config->reset, 0); | ||
| 63 | msleep(100); | ||
| 64 | err = mantis_frontend_power(mantis, POWER_ON); | ||
| 65 | msleep(100); | ||
| 66 | gpio_set_bits(mantis, config->reset, 1); | ||
| 67 | |||
| 68 | if (err == 0) { | ||
| 69 | msleep(250); | ||
| 70 | dprintk(MANTIS_ERROR, 1, "Probing for 10353 (DVB-T)"); | ||
| 71 | fe = zl10353_attach(&mantis_vp3030_config, adapter); | ||
| 72 | |||
| 73 | if (!fe) | ||
| 74 | return -1; | ||
| 75 | |||
| 76 | tda665x_attach(fe, &env57h12d5_config, adapter); | ||
| 77 | } else { | ||
| 78 | dprintk(MANTIS_ERROR, 1, "Frontend on <%s> POWER ON failed! <%d>", | ||
| 79 | adapter->name, | ||
| 80 | err); | ||
| 81 | |||
| 82 | return -EIO; | ||
| 83 | |||
| 84 | } | ||
| 85 | mantis->fe = fe; | ||
| 86 | dprintk(MANTIS_ERROR, 1, "Done!"); | ||
| 87 | |||
| 88 | return 0; | ||
| 89 | } | ||
| 90 | |||
| 91 | struct mantis_hwconfig vp3030_config = { | ||
| 92 | .model_name = MANTIS_MODEL_NAME, | ||
| 93 | .dev_type = MANTIS_DEV_TYPE, | ||
| 94 | .ts_size = MANTIS_TS_188, | ||
| 95 | |||
| 96 | .baud_rate = MANTIS_BAUD_9600, | ||
| 97 | .parity = MANTIS_PARITY_NONE, | ||
| 98 | .bytes = 0, | ||
| 99 | |||
| 100 | .frontend_init = vp3030_frontend_init, | ||
| 101 | .power = GPIF_A12, | ||
| 102 | .reset = GPIF_A13, | ||
| 103 | |||
| 104 | .i2c_mode = MANTIS_BYTE_MODE | ||
| 105 | }; | ||
diff --git a/drivers/media/dvb/mantis/mantis_vp3030.h b/drivers/media/dvb/mantis/mantis_vp3030.h new file mode 100644 index 000000000000..5f12c4266277 --- /dev/null +++ b/drivers/media/dvb/mantis/mantis_vp3030.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Mantis VP-3030 driver | ||
| 3 | |||
| 4 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) | ||
| 5 | |||
| 6 | This program is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program; if not, write to the Free Software | ||
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __MANTIS_VP3030_H | ||
| 22 | #define __MANTIS_VP3030_H | ||
| 23 | |||
| 24 | #include "mantis_common.h" | ||
| 25 | |||
| 26 | #define MANTIS_VP_3030_DVB_T 0x0024 | ||
| 27 | |||
| 28 | extern struct mantis_hwconfig vp3030_config; | ||
| 29 | |||
| 30 | #endif /* __MANTIS_VP3030_H */ | ||
diff --git a/drivers/media/video/gspca/gspca.c b/drivers/media/video/gspca/gspca.c index e930a67d526b..bd6214d4ab3b 100644 --- a/drivers/media/video/gspca/gspca.c +++ b/drivers/media/video/gspca/gspca.c | |||
| @@ -1815,6 +1815,8 @@ static int vidioc_qbuf(struct file *file, void *priv, | |||
| 1815 | /* put the buffer in the 'queued' queue */ | 1815 | /* put the buffer in the 'queued' queue */ |
| 1816 | i = gspca_dev->fr_q; | 1816 | i = gspca_dev->fr_q; |
| 1817 | gspca_dev->fr_queue[i] = index; | 1817 | gspca_dev->fr_queue[i] = index; |
| 1818 | if (gspca_dev->fr_i == i) | ||
| 1819 | gspca_dev->cur_frame = frame; | ||
| 1818 | gspca_dev->fr_q = (i + 1) % gspca_dev->nframes; | 1820 | gspca_dev->fr_q = (i + 1) % gspca_dev->nframes; |
| 1819 | PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d", | 1821 | PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d", |
| 1820 | gspca_dev->fr_q, | 1822 | gspca_dev->fr_q, |
diff --git a/drivers/media/video/gspca/m5602/m5602_s5k4aa.c b/drivers/media/video/gspca/m5602/m5602_s5k4aa.c index aa2f3c7e2cb5..1b536f7d30cf 100644 --- a/drivers/media/video/gspca/m5602/m5602_s5k4aa.c +++ b/drivers/media/video/gspca/m5602/m5602_s5k4aa.c | |||
| @@ -48,6 +48,12 @@ static | |||
| 48 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528") | 48 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528") |
| 49 | } | 49 | } |
| 50 | }, { | 50 | }, { |
| 51 | .ident = "Fujitsu-Siemens Amilo Xi 2428", | ||
| 52 | .matches = { | ||
| 53 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | ||
| 54 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 2428") | ||
| 55 | } | ||
| 56 | }, { | ||
| 51 | .ident = "Fujitsu-Siemens Amilo Xi 2528", | 57 | .ident = "Fujitsu-Siemens Amilo Xi 2528", |
| 52 | .matches = { | 58 | .matches = { |
| 53 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | 59 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
diff --git a/drivers/media/video/gspca/ov534.c b/drivers/media/video/gspca/ov534.c index 4dbb882c83dc..0a6b8f07a69d 100644 --- a/drivers/media/video/gspca/ov534.c +++ b/drivers/media/video/gspca/ov534.c | |||
| @@ -1533,7 +1533,7 @@ static void setexposure_96(struct gspca_dev *gspca_dev) | |||
| 1533 | static void setsharpness_96(struct gspca_dev *gspca_dev) | 1533 | static void setsharpness_96(struct gspca_dev *gspca_dev) |
| 1534 | { | 1534 | { |
| 1535 | struct sd *sd = (struct sd *) gspca_dev; | 1535 | struct sd *sd = (struct sd *) gspca_dev; |
| 1536 | u8 val; | 1536 | s8 val; |
| 1537 | 1537 | ||
| 1538 | val = sd->sharpness; | 1538 | val = sd->sharpness; |
| 1539 | if (val < 0) { /* auto */ | 1539 | if (val < 0) { /* auto */ |
diff --git a/drivers/media/video/gspca/sn9c20x.c b/drivers/media/video/gspca/sn9c20x.c index 4cff8035614f..0ca1c06652b1 100644 --- a/drivers/media/video/gspca/sn9c20x.c +++ b/drivers/media/video/gspca/sn9c20x.c | |||
| @@ -2319,7 +2319,7 @@ static void do_autogain(struct gspca_dev *gspca_dev, u16 avg_lum) | |||
| 2319 | } | 2319 | } |
| 2320 | } | 2320 | } |
| 2321 | if (avg_lum > MAX_AVG_LUM) { | 2321 | if (avg_lum > MAX_AVG_LUM) { |
| 2322 | if (sd->gain - 1 >= 0) { | 2322 | if (sd->gain >= 1) { |
| 2323 | sd->gain--; | 2323 | sd->gain--; |
| 2324 | set_gain(gspca_dev); | 2324 | set_gain(gspca_dev); |
| 2325 | } | 2325 | } |
diff --git a/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h b/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h index 487d40555343..96c61926d372 100644 --- a/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h +++ b/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h | |||
| @@ -228,6 +228,7 @@ static const struct stv_init stv_bridge_init[] = { | |||
| 228 | /* This reg is written twice. Some kind of reset? */ | 228 | /* This reg is written twice. Some kind of reset? */ |
| 229 | {NULL, 0x1620, 0x80}, | 229 | {NULL, 0x1620, 0x80}, |
| 230 | {NULL, 0x1620, 0x00}, | 230 | {NULL, 0x1620, 0x00}, |
| 231 | {NULL, 0x1443, 0x00}, | ||
| 231 | {NULL, 0x1423, 0x04}, | 232 | {NULL, 0x1423, 0x04}, |
| 232 | {x1500, 0x1500, ARRAY_SIZE(x1500)}, | 233 | {x1500, 0x1500, ARRAY_SIZE(x1500)}, |
| 233 | {x1536, 0x1536, ARRAY_SIZE(x1536)}, | 234 | {x1536, 0x1536, ARRAY_SIZE(x1536)}, |
diff --git a/drivers/media/video/gspca/sunplus.c b/drivers/media/video/gspca/sunplus.c index 716df6b15fc5..306b7d75b4aa 100644 --- a/drivers/media/video/gspca/sunplus.c +++ b/drivers/media/video/gspca/sunplus.c | |||
| @@ -709,7 +709,7 @@ static void spca504B_SetSizeType(struct gspca_dev *gspca_dev) | |||
| 709 | spca504B_PollingDataReady(gspca_dev); | 709 | spca504B_PollingDataReady(gspca_dev); |
| 710 | 710 | ||
| 711 | /* Init the cam width height with some values get on init ? */ | 711 | /* Init the cam width height with some values get on init ? */ |
| 712 | reg_w_riv(gspca_dev, 0x31, 0, 0x04); | 712 | reg_w_riv(gspca_dev, 0x31, 0x0004, 0x00); |
| 713 | spca504B_WaitCmdStatus(gspca_dev); | 713 | spca504B_WaitCmdStatus(gspca_dev); |
| 714 | spca504B_PollingDataReady(gspca_dev); | 714 | spca504B_PollingDataReady(gspca_dev); |
| 715 | break; | 715 | break; |
| @@ -807,14 +807,14 @@ static void init_ctl_reg(struct gspca_dev *gspca_dev) | |||
| 807 | default: | 807 | default: |
| 808 | /* case BRIDGE_SPCA533: */ | 808 | /* case BRIDGE_SPCA533: */ |
| 809 | /* case BRIDGE_SPCA504B: */ | 809 | /* case BRIDGE_SPCA504B: */ |
| 810 | reg_w_riv(gspca_dev, 0, 0x00, 0x21ad); /* hue */ | 810 | reg_w_riv(gspca_dev, 0, 0x21ad, 0x00); /* hue */ |
| 811 | reg_w_riv(gspca_dev, 0, 0x01, 0x21ac); /* sat/hue */ | 811 | reg_w_riv(gspca_dev, 0, 0x21ac, 0x01); /* sat/hue */ |
| 812 | reg_w_riv(gspca_dev, 0, 0x00, 0x21a3); /* gamma */ | 812 | reg_w_riv(gspca_dev, 0, 0x21a3, 0x00); /* gamma */ |
| 813 | break; | 813 | break; |
| 814 | case BRIDGE_SPCA536: | 814 | case BRIDGE_SPCA536: |
| 815 | reg_w_riv(gspca_dev, 0, 0x40, 0x20f5); | 815 | reg_w_riv(gspca_dev, 0, 0x20f5, 0x40); |
| 816 | reg_w_riv(gspca_dev, 0, 0x01, 0x20f4); | 816 | reg_w_riv(gspca_dev, 0, 0x20f4, 0x01); |
| 817 | reg_w_riv(gspca_dev, 0, 0x00, 0x2089); | 817 | reg_w_riv(gspca_dev, 0, 0x2089, 0x00); |
| 818 | break; | 818 | break; |
| 819 | } | 819 | } |
| 820 | if (pollreg) | 820 | if (pollreg) |
| @@ -887,11 +887,11 @@ static int sd_init(struct gspca_dev *gspca_dev) | |||
| 887 | switch (sd->bridge) { | 887 | switch (sd->bridge) { |
| 888 | case BRIDGE_SPCA504B: | 888 | case BRIDGE_SPCA504B: |
| 889 | reg_w_riv(gspca_dev, 0x1d, 0x00, 0); | 889 | reg_w_riv(gspca_dev, 0x1d, 0x00, 0); |
| 890 | reg_w_riv(gspca_dev, 0, 0x01, 0x2306); | 890 | reg_w_riv(gspca_dev, 0x00, 0x2306, 0x01); |
| 891 | reg_w_riv(gspca_dev, 0, 0x00, 0x0d04); | 891 | reg_w_riv(gspca_dev, 0x00, 0x0d04, 0x00); |
| 892 | reg_w_riv(gspca_dev, 0, 0x00, 0x2000); | 892 | reg_w_riv(gspca_dev, 0x00, 0x2000, 0x00); |
| 893 | reg_w_riv(gspca_dev, 0, 0x13, 0x2301); | 893 | reg_w_riv(gspca_dev, 0x00, 0x2301, 0x13); |
| 894 | reg_w_riv(gspca_dev, 0, 0x00, 0x2306); | 894 | reg_w_riv(gspca_dev, 0x00, 0x2306, 0x00); |
| 895 | /* fall thru */ | 895 | /* fall thru */ |
| 896 | case BRIDGE_SPCA533: | 896 | case BRIDGE_SPCA533: |
| 897 | spca504B_PollingDataReady(gspca_dev); | 897 | spca504B_PollingDataReady(gspca_dev); |
| @@ -1000,7 +1000,7 @@ static int sd_start(struct gspca_dev *gspca_dev) | |||
| 1000 | spca504B_WaitCmdStatus(gspca_dev); | 1000 | spca504B_WaitCmdStatus(gspca_dev); |
| 1001 | break; | 1001 | break; |
| 1002 | default: | 1002 | default: |
| 1003 | reg_w_riv(gspca_dev, 0x31, 0, 0x04); | 1003 | reg_w_riv(gspca_dev, 0x31, 0x0004, 0x00); |
| 1004 | spca504B_WaitCmdStatus(gspca_dev); | 1004 | spca504B_WaitCmdStatus(gspca_dev); |
| 1005 | spca504B_PollingDataReady(gspca_dev); | 1005 | spca504B_PollingDataReady(gspca_dev); |
| 1006 | break; | 1006 | break; |
diff --git a/drivers/media/video/gspca/vc032x.c b/drivers/media/video/gspca/vc032x.c index c090efcd8045..71921c878424 100644 --- a/drivers/media/video/gspca/vc032x.c +++ b/drivers/media/video/gspca/vc032x.c | |||
| @@ -3009,6 +3009,10 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev, | |||
| 3009 | int l; | 3009 | int l; |
| 3010 | 3010 | ||
| 3011 | frame = gspca_get_i_frame(gspca_dev); | 3011 | frame = gspca_get_i_frame(gspca_dev); |
| 3012 | if (frame == NULL) { | ||
| 3013 | gspca_dev->last_packet_type = DISCARD_PACKET; | ||
| 3014 | return; | ||
| 3015 | } | ||
| 3012 | l = frame->data_end - frame->data; | 3016 | l = frame->data_end - frame->data; |
| 3013 | if (len > frame->v4l2_buf.length - l) | 3017 | if (len > frame->v4l2_buf.length - l) |
| 3014 | len = frame->v4l2_buf.length - l; | 3018 | len = frame->v4l2_buf.length - l; |
diff --git a/drivers/media/video/mx1_camera.c b/drivers/media/video/mx1_camera.c index 2ba14fb5b031..c167cc3de492 100644 --- a/drivers/media/video/mx1_camera.c +++ b/drivers/media/video/mx1_camera.c | |||
| @@ -718,7 +718,7 @@ static int __init mx1_camera_probe(struct platform_device *pdev) | |||
| 718 | 718 | ||
| 719 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 719 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 720 | irq = platform_get_irq(pdev, 0); | 720 | irq = platform_get_irq(pdev, 0); |
| 721 | if (!res || !irq) { | 721 | if (!res || (int)irq <= 0) { |
| 722 | err = -ENODEV; | 722 | err = -ENODEV; |
| 723 | goto exit; | 723 | goto exit; |
| 724 | } | 724 | } |
diff --git a/drivers/media/video/rj54n1cb0c.c b/drivers/media/video/rj54n1cb0c.c index 7e42989ce0e4..805226e0d9c1 100644 --- a/drivers/media/video/rj54n1cb0c.c +++ b/drivers/media/video/rj54n1cb0c.c | |||
| @@ -563,7 +563,7 @@ static int rj54n1_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) | |||
| 563 | struct i2c_client *client = sd->priv; | 563 | struct i2c_client *client = sd->priv; |
| 564 | struct rj54n1 *rj54n1 = to_rj54n1(client); | 564 | struct rj54n1 *rj54n1 = to_rj54n1(client); |
| 565 | struct v4l2_rect *rect = &a->c; | 565 | struct v4l2_rect *rect = &a->c; |
| 566 | unsigned int dummy, output_w, output_h, | 566 | unsigned int dummy = 0, output_w, output_h, |
| 567 | input_w = rect->width, input_h = rect->height; | 567 | input_w = rect->width, input_h = rect->height; |
| 568 | int ret; | 568 | int ret; |
| 569 | 569 | ||
diff --git a/drivers/media/video/saa7134/saa7134-core.c b/drivers/media/video/saa7134/saa7134-core.c index 9f85e917f9f3..a7ad7810fddc 100644 --- a/drivers/media/video/saa7134/saa7134-core.c +++ b/drivers/media/video/saa7134/saa7134-core.c | |||
| @@ -420,19 +420,6 @@ int saa7134_set_dmabits(struct saa7134_dev *dev) | |||
| 420 | ctrl |= SAA7134_MAIN_CTRL_TE5; | 420 | ctrl |= SAA7134_MAIN_CTRL_TE5; |
| 421 | irq |= SAA7134_IRQ1_INTE_RA2_1 | | 421 | irq |= SAA7134_IRQ1_INTE_RA2_1 | |
| 422 | SAA7134_IRQ1_INTE_RA2_0; | 422 | SAA7134_IRQ1_INTE_RA2_0; |
| 423 | |||
| 424 | /* dma: setup channel 5 (= TS) */ | ||
| 425 | |||
| 426 | saa_writeb(SAA7134_TS_DMA0, (dev->ts.nr_packets - 1) & 0xff); | ||
| 427 | saa_writeb(SAA7134_TS_DMA1, | ||
| 428 | ((dev->ts.nr_packets - 1) >> 8) & 0xff); | ||
| 429 | /* TSNOPIT=0, TSCOLAP=0 */ | ||
| 430 | saa_writeb(SAA7134_TS_DMA2, | ||
| 431 | (((dev->ts.nr_packets - 1) >> 16) & 0x3f) | 0x00); | ||
| 432 | saa_writel(SAA7134_RS_PITCH(5), TS_PACKET_SIZE); | ||
| 433 | saa_writel(SAA7134_RS_CONTROL(5), SAA7134_RS_CONTROL_BURST_16 | | ||
| 434 | SAA7134_RS_CONTROL_ME | | ||
| 435 | (dev->ts.pt_ts.dma >> 12)); | ||
| 436 | } | 423 | } |
| 437 | 424 | ||
| 438 | /* set task conditions + field handling */ | 425 | /* set task conditions + field handling */ |
diff --git a/drivers/media/video/saa7134/saa7134-empress.c b/drivers/media/video/saa7134/saa7134-empress.c index 7dfecfc6017c..ee5bff02a92c 100644 --- a/drivers/media/video/saa7134/saa7134-empress.c +++ b/drivers/media/video/saa7134/saa7134-empress.c | |||
| @@ -93,9 +93,9 @@ static int ts_open(struct file *file) | |||
| 93 | dprintk("open dev=%s\n", video_device_node_name(vdev)); | 93 | dprintk("open dev=%s\n", video_device_node_name(vdev)); |
| 94 | err = -EBUSY; | 94 | err = -EBUSY; |
| 95 | if (!mutex_trylock(&dev->empress_tsq.vb_lock)) | 95 | if (!mutex_trylock(&dev->empress_tsq.vb_lock)) |
| 96 | goto done; | 96 | return err; |
| 97 | if (atomic_read(&dev->empress_users)) | 97 | if (atomic_read(&dev->empress_users)) |
| 98 | goto done_up; | 98 | goto done; |
| 99 | 99 | ||
| 100 | /* Unmute audio */ | 100 | /* Unmute audio */ |
| 101 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, | 101 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, |
| @@ -105,10 +105,8 @@ static int ts_open(struct file *file) | |||
| 105 | file->private_data = dev; | 105 | file->private_data = dev; |
| 106 | err = 0; | 106 | err = 0; |
| 107 | 107 | ||
| 108 | done_up: | ||
| 109 | mutex_unlock(&dev->empress_tsq.vb_lock); | ||
| 110 | done: | 108 | done: |
| 111 | unlock_kernel(); | 109 | mutex_unlock(&dev->empress_tsq.vb_lock); |
| 112 | return err; | 110 | return err; |
| 113 | } | 111 | } |
| 114 | 112 | ||
diff --git a/drivers/media/video/saa7134/saa7134-ts.c b/drivers/media/video/saa7134/saa7134-ts.c index 03488ba4c99c..b9817d74943f 100644 --- a/drivers/media/video/saa7134/saa7134-ts.c +++ b/drivers/media/video/saa7134/saa7134-ts.c | |||
| @@ -250,6 +250,19 @@ int saa7134_ts_start(struct saa7134_dev *dev) | |||
| 250 | 250 | ||
| 251 | BUG_ON(dev->ts_started); | 251 | BUG_ON(dev->ts_started); |
| 252 | 252 | ||
| 253 | /* dma: setup channel 5 (= TS) */ | ||
| 254 | saa_writeb(SAA7134_TS_DMA0, (dev->ts.nr_packets - 1) & 0xff); | ||
| 255 | saa_writeb(SAA7134_TS_DMA1, | ||
| 256 | ((dev->ts.nr_packets - 1) >> 8) & 0xff); | ||
| 257 | /* TSNOPIT=0, TSCOLAP=0 */ | ||
| 258 | saa_writeb(SAA7134_TS_DMA2, | ||
| 259 | (((dev->ts.nr_packets - 1) >> 16) & 0x3f) | 0x00); | ||
| 260 | saa_writel(SAA7134_RS_PITCH(5), TS_PACKET_SIZE); | ||
| 261 | saa_writel(SAA7134_RS_CONTROL(5), SAA7134_RS_CONTROL_BURST_16 | | ||
| 262 | SAA7134_RS_CONTROL_ME | | ||
| 263 | (dev->ts.pt_ts.dma >> 12)); | ||
| 264 | |||
| 265 | /* reset hardware TS buffers */ | ||
| 253 | saa_writeb(SAA7134_TS_SERIAL1, 0x00); | 266 | saa_writeb(SAA7134_TS_SERIAL1, 0x00); |
| 254 | saa_writeb(SAA7134_TS_SERIAL1, 0x03); | 267 | saa_writeb(SAA7134_TS_SERIAL1, 0x03); |
| 255 | saa_writeb(SAA7134_TS_SERIAL1, 0x00); | 268 | saa_writeb(SAA7134_TS_SERIAL1, 0x00); |
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index d69363f0d8c9..f09c7140d6b2 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c | |||
| @@ -1827,7 +1827,7 @@ static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev) | |||
| 1827 | 1827 | ||
| 1828 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 1828 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1829 | irq = platform_get_irq(pdev, 0); | 1829 | irq = platform_get_irq(pdev, 0); |
| 1830 | if (!res || !irq) { | 1830 | if (!res || (int)irq <= 0) { |
| 1831 | dev_err(&pdev->dev, "Not enough CEU platform resources.\n"); | 1831 | dev_err(&pdev->dev, "Not enough CEU platform resources.\n"); |
| 1832 | err = -ENODEV; | 1832 | err = -ENODEV; |
| 1833 | goto exit; | 1833 | goto exit; |
diff --git a/drivers/media/video/uvc/uvc_ctrl.c b/drivers/media/video/uvc/uvc_ctrl.c index 0469d7a876a8..ec8ef8c5560a 100644 --- a/drivers/media/video/uvc/uvc_ctrl.c +++ b/drivers/media/video/uvc/uvc_ctrl.c | |||
| @@ -1393,7 +1393,7 @@ uvc_ctrl_prune_entity(struct uvc_device *dev, struct uvc_entity *entity) | |||
| 1393 | size = entity->processing.bControlSize; | 1393 | size = entity->processing.bControlSize; |
| 1394 | 1394 | ||
| 1395 | for (i = 0; i < ARRAY_SIZE(blacklist); ++i) { | 1395 | for (i = 0; i < ARRAY_SIZE(blacklist); ++i) { |
| 1396 | if (!usb_match_id(dev->intf, &blacklist[i].id)) | 1396 | if (!usb_match_one_id(dev->intf, &blacklist[i].id)) |
| 1397 | continue; | 1397 | continue; |
| 1398 | 1398 | ||
| 1399 | if (blacklist[i].index >= 8 * size || | 1399 | if (blacklist[i].index >= 8 * size || |
diff --git a/drivers/media/video/uvc/uvc_queue.c b/drivers/media/video/uvc/uvc_queue.c index f854698c4061..ea11839cba4a 100644 --- a/drivers/media/video/uvc/uvc_queue.c +++ b/drivers/media/video/uvc/uvc_queue.c | |||
| @@ -59,9 +59,9 @@ | |||
| 59 | * returns immediately. | 59 | * returns immediately. |
| 60 | * | 60 | * |
| 61 | * When the buffer is full, the completion handler removes it from the irq | 61 | * When the buffer is full, the completion handler removes it from the irq |
| 62 | * queue, marks it as ready (UVC_BUF_STATE_DONE) and wakes its wait queue. | 62 | * queue, marks it as done (UVC_BUF_STATE_DONE) and wakes its wait queue. |
| 63 | * At that point, any process waiting on the buffer will be woken up. If a | 63 | * At that point, any process waiting on the buffer will be woken up. If a |
| 64 | * process tries to dequeue a buffer after it has been marked ready, the | 64 | * process tries to dequeue a buffer after it has been marked done, the |
| 65 | * dequeing will succeed immediately. | 65 | * dequeing will succeed immediately. |
| 66 | * | 66 | * |
| 67 | * 2. Buffers are queued, user is waiting on a buffer and the device gets | 67 | * 2. Buffers are queued, user is waiting on a buffer and the device gets |
| @@ -201,6 +201,7 @@ static void __uvc_query_buffer(struct uvc_buffer *buf, | |||
| 201 | break; | 201 | break; |
| 202 | case UVC_BUF_STATE_QUEUED: | 202 | case UVC_BUF_STATE_QUEUED: |
| 203 | case UVC_BUF_STATE_ACTIVE: | 203 | case UVC_BUF_STATE_ACTIVE: |
| 204 | case UVC_BUF_STATE_READY: | ||
| 204 | v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED; | 205 | v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED; |
| 205 | break; | 206 | break; |
| 206 | case UVC_BUF_STATE_IDLE: | 207 | case UVC_BUF_STATE_IDLE: |
| @@ -295,13 +296,15 @@ static int uvc_queue_waiton(struct uvc_buffer *buf, int nonblocking) | |||
| 295 | { | 296 | { |
| 296 | if (nonblocking) { | 297 | if (nonblocking) { |
| 297 | return (buf->state != UVC_BUF_STATE_QUEUED && | 298 | return (buf->state != UVC_BUF_STATE_QUEUED && |
| 298 | buf->state != UVC_BUF_STATE_ACTIVE) | 299 | buf->state != UVC_BUF_STATE_ACTIVE && |
| 300 | buf->state != UVC_BUF_STATE_READY) | ||
| 299 | ? 0 : -EAGAIN; | 301 | ? 0 : -EAGAIN; |
| 300 | } | 302 | } |
| 301 | 303 | ||
| 302 | return wait_event_interruptible(buf->wait, | 304 | return wait_event_interruptible(buf->wait, |
| 303 | buf->state != UVC_BUF_STATE_QUEUED && | 305 | buf->state != UVC_BUF_STATE_QUEUED && |
| 304 | buf->state != UVC_BUF_STATE_ACTIVE); | 306 | buf->state != UVC_BUF_STATE_ACTIVE && |
| 307 | buf->state != UVC_BUF_STATE_READY); | ||
| 305 | } | 308 | } |
| 306 | 309 | ||
| 307 | /* | 310 | /* |
| @@ -348,6 +351,7 @@ int uvc_dequeue_buffer(struct uvc_video_queue *queue, | |||
| 348 | case UVC_BUF_STATE_IDLE: | 351 | case UVC_BUF_STATE_IDLE: |
| 349 | case UVC_BUF_STATE_QUEUED: | 352 | case UVC_BUF_STATE_QUEUED: |
| 350 | case UVC_BUF_STATE_ACTIVE: | 353 | case UVC_BUF_STATE_ACTIVE: |
| 354 | case UVC_BUF_STATE_READY: | ||
| 351 | default: | 355 | default: |
| 352 | uvc_trace(UVC_TRACE_CAPTURE, "[E] Invalid buffer state %u " | 356 | uvc_trace(UVC_TRACE_CAPTURE, "[E] Invalid buffer state %u " |
| 353 | "(driver bug?).\n", buf->state); | 357 | "(driver bug?).\n", buf->state); |
| @@ -489,6 +493,7 @@ struct uvc_buffer *uvc_queue_next_buffer(struct uvc_video_queue *queue, | |||
| 489 | 493 | ||
| 490 | spin_lock_irqsave(&queue->irqlock, flags); | 494 | spin_lock_irqsave(&queue->irqlock, flags); |
| 491 | list_del(&buf->queue); | 495 | list_del(&buf->queue); |
| 496 | buf->state = UVC_BUF_STATE_DONE; | ||
| 492 | if (!list_empty(&queue->irqqueue)) | 497 | if (!list_empty(&queue->irqqueue)) |
| 493 | nextbuf = list_first_entry(&queue->irqqueue, struct uvc_buffer, | 498 | nextbuf = list_first_entry(&queue->irqqueue, struct uvc_buffer, |
| 494 | queue); | 499 | queue); |
diff --git a/drivers/media/video/uvc/uvc_video.c b/drivers/media/video/uvc/uvc_video.c index 9a9802830d41..7dcf534a0cf3 100644 --- a/drivers/media/video/uvc/uvc_video.c +++ b/drivers/media/video/uvc/uvc_video.c | |||
| @@ -441,7 +441,7 @@ static int uvc_video_decode_start(struct uvc_streaming *stream, | |||
| 441 | if (fid != stream->last_fid && buf->buf.bytesused != 0) { | 441 | if (fid != stream->last_fid && buf->buf.bytesused != 0) { |
| 442 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (FID bit " | 442 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (FID bit " |
| 443 | "toggled).\n"); | 443 | "toggled).\n"); |
| 444 | buf->state = UVC_BUF_STATE_DONE; | 444 | buf->state = UVC_BUF_STATE_READY; |
| 445 | return -EAGAIN; | 445 | return -EAGAIN; |
| 446 | } | 446 | } |
| 447 | 447 | ||
| @@ -470,7 +470,7 @@ static void uvc_video_decode_data(struct uvc_streaming *stream, | |||
| 470 | /* Complete the current frame if the buffer size was exceeded. */ | 470 | /* Complete the current frame if the buffer size was exceeded. */ |
| 471 | if (len > maxlen) { | 471 | if (len > maxlen) { |
| 472 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (overflow).\n"); | 472 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (overflow).\n"); |
| 473 | buf->state = UVC_BUF_STATE_DONE; | 473 | buf->state = UVC_BUF_STATE_READY; |
| 474 | } | 474 | } |
| 475 | } | 475 | } |
| 476 | 476 | ||
| @@ -482,7 +482,7 @@ static void uvc_video_decode_end(struct uvc_streaming *stream, | |||
| 482 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (EOF found).\n"); | 482 | uvc_trace(UVC_TRACE_FRAME, "Frame complete (EOF found).\n"); |
| 483 | if (data[0] == len) | 483 | if (data[0] == len) |
| 484 | uvc_trace(UVC_TRACE_FRAME, "EOF in empty payload.\n"); | 484 | uvc_trace(UVC_TRACE_FRAME, "EOF in empty payload.\n"); |
| 485 | buf->state = UVC_BUF_STATE_DONE; | 485 | buf->state = UVC_BUF_STATE_READY; |
| 486 | if (stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID) | 486 | if (stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID) |
| 487 | stream->last_fid ^= UVC_STREAM_FID; | 487 | stream->last_fid ^= UVC_STREAM_FID; |
| 488 | } | 488 | } |
| @@ -568,8 +568,7 @@ static void uvc_video_decode_isoc(struct urb *urb, struct uvc_streaming *stream, | |||
| 568 | uvc_video_decode_end(stream, buf, mem, | 568 | uvc_video_decode_end(stream, buf, mem, |
| 569 | urb->iso_frame_desc[i].actual_length); | 569 | urb->iso_frame_desc[i].actual_length); |
| 570 | 570 | ||
| 571 | if (buf->state == UVC_BUF_STATE_DONE || | 571 | if (buf->state == UVC_BUF_STATE_READY) |
| 572 | buf->state == UVC_BUF_STATE_ERROR) | ||
| 573 | buf = uvc_queue_next_buffer(&stream->queue, buf); | 572 | buf = uvc_queue_next_buffer(&stream->queue, buf); |
| 574 | } | 573 | } |
| 575 | } | 574 | } |
| @@ -627,8 +626,7 @@ static void uvc_video_decode_bulk(struct urb *urb, struct uvc_streaming *stream, | |||
| 627 | if (!stream->bulk.skip_payload && buf != NULL) { | 626 | if (!stream->bulk.skip_payload && buf != NULL) { |
| 628 | uvc_video_decode_end(stream, buf, stream->bulk.header, | 627 | uvc_video_decode_end(stream, buf, stream->bulk.header, |
| 629 | stream->bulk.payload_size); | 628 | stream->bulk.payload_size); |
| 630 | if (buf->state == UVC_BUF_STATE_DONE || | 629 | if (buf->state == UVC_BUF_STATE_READY) |
| 631 | buf->state == UVC_BUF_STATE_ERROR) | ||
| 632 | buf = uvc_queue_next_buffer(&stream->queue, | 630 | buf = uvc_queue_next_buffer(&stream->queue, |
| 633 | buf); | 631 | buf); |
| 634 | } | 632 | } |
| @@ -669,7 +667,7 @@ static void uvc_video_encode_bulk(struct urb *urb, struct uvc_streaming *stream, | |||
| 669 | stream->bulk.payload_size == stream->bulk.max_payload_size) { | 667 | stream->bulk.payload_size == stream->bulk.max_payload_size) { |
| 670 | if (buf->buf.bytesused == stream->queue.buf_used) { | 668 | if (buf->buf.bytesused == stream->queue.buf_used) { |
| 671 | stream->queue.buf_used = 0; | 669 | stream->queue.buf_used = 0; |
| 672 | buf->state = UVC_BUF_STATE_DONE; | 670 | buf->state = UVC_BUF_STATE_READY; |
| 673 | uvc_queue_next_buffer(&stream->queue, buf); | 671 | uvc_queue_next_buffer(&stream->queue, buf); |
| 674 | stream->last_fid ^= UVC_STREAM_FID; | 672 | stream->last_fid ^= UVC_STREAM_FID; |
| 675 | } | 673 | } |
| @@ -924,10 +922,8 @@ static int uvc_init_video_bulk(struct uvc_streaming *stream, | |||
| 924 | static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags) | 922 | static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags) |
| 925 | { | 923 | { |
| 926 | struct usb_interface *intf = stream->intf; | 924 | struct usb_interface *intf = stream->intf; |
| 927 | struct usb_host_interface *alts; | 925 | struct usb_host_endpoint *ep; |
| 928 | struct usb_host_endpoint *ep = NULL; | 926 | unsigned int i; |
| 929 | int intfnum = stream->intfnum; | ||
| 930 | unsigned int bandwidth, psize, i; | ||
| 931 | int ret; | 927 | int ret; |
| 932 | 928 | ||
| 933 | stream->last_fid = -1; | 929 | stream->last_fid = -1; |
| @@ -936,6 +932,12 @@ static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags) | |||
| 936 | stream->bulk.payload_size = 0; | 932 | stream->bulk.payload_size = 0; |
| 937 | 933 | ||
| 938 | if (intf->num_altsetting > 1) { | 934 | if (intf->num_altsetting > 1) { |
| 935 | struct usb_host_endpoint *best_ep = NULL; | ||
| 936 | unsigned int best_psize = 3 * 1024; | ||
| 937 | unsigned int bandwidth; | ||
| 938 | unsigned int uninitialized_var(altsetting); | ||
| 939 | int intfnum = stream->intfnum; | ||
| 940 | |||
| 939 | /* Isochronous endpoint, select the alternate setting. */ | 941 | /* Isochronous endpoint, select the alternate setting. */ |
| 940 | bandwidth = stream->ctrl.dwMaxPayloadTransferSize; | 942 | bandwidth = stream->ctrl.dwMaxPayloadTransferSize; |
| 941 | 943 | ||
| @@ -949,6 +951,9 @@ static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags) | |||
| 949 | } | 951 | } |
| 950 | 952 | ||
| 951 | for (i = 0; i < intf->num_altsetting; ++i) { | 953 | for (i = 0; i < intf->num_altsetting; ++i) { |
| 954 | struct usb_host_interface *alts; | ||
| 955 | unsigned int psize; | ||
| 956 | |||
| 952 | alts = &intf->altsetting[i]; | 957 | alts = &intf->altsetting[i]; |
| 953 | ep = uvc_find_endpoint(alts, | 958 | ep = uvc_find_endpoint(alts, |
| 954 | stream->header.bEndpointAddress); | 959 | stream->header.bEndpointAddress); |
| @@ -958,21 +963,27 @@ static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags) | |||
| 958 | /* Check if the bandwidth is high enough. */ | 963 | /* Check if the bandwidth is high enough. */ |
| 959 | psize = le16_to_cpu(ep->desc.wMaxPacketSize); | 964 | psize = le16_to_cpu(ep->desc.wMaxPacketSize); |
| 960 | psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3)); | 965 | psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3)); |
| 961 | if (psize >= bandwidth) | 966 | if (psize >= bandwidth && psize <= best_psize) { |
| 962 | break; | 967 | altsetting = i; |
| 968 | best_psize = psize; | ||
| 969 | best_ep = ep; | ||
| 970 | } | ||
| 963 | } | 971 | } |
| 964 | 972 | ||
| 965 | if (i >= intf->num_altsetting) { | 973 | if (best_ep == NULL) { |
| 966 | uvc_trace(UVC_TRACE_VIDEO, "No fast enough alt setting " | 974 | uvc_trace(UVC_TRACE_VIDEO, "No fast enough alt setting " |
| 967 | "for requested bandwidth.\n"); | 975 | "for requested bandwidth.\n"); |
| 968 | return -EIO; | 976 | return -EIO; |
| 969 | } | 977 | } |
| 970 | 978 | ||
| 971 | ret = usb_set_interface(stream->dev->udev, intfnum, i); | 979 | uvc_trace(UVC_TRACE_VIDEO, "Selecting alternate setting %u " |
| 980 | "(%u B/frame bandwidth).\n", altsetting, best_psize); | ||
| 981 | |||
| 982 | ret = usb_set_interface(stream->dev->udev, intfnum, altsetting); | ||
| 972 | if (ret < 0) | 983 | if (ret < 0) |
| 973 | return ret; | 984 | return ret; |
| 974 | 985 | ||
| 975 | ret = uvc_init_video_isoc(stream, ep, gfp_flags); | 986 | ret = uvc_init_video_isoc(stream, best_ep, gfp_flags); |
| 976 | } else { | 987 | } else { |
| 977 | /* Bulk endpoint, proceed to URB initialization. */ | 988 | /* Bulk endpoint, proceed to URB initialization. */ |
| 978 | ep = uvc_find_endpoint(&intf->altsetting[0], | 989 | ep = uvc_find_endpoint(&intf->altsetting[0], |
diff --git a/drivers/media/video/uvc/uvcvideo.h b/drivers/media/video/uvc/uvcvideo.h index 7ec9a04ced50..2337585001ea 100644 --- a/drivers/media/video/uvc/uvcvideo.h +++ b/drivers/media/video/uvc/uvcvideo.h | |||
| @@ -365,8 +365,9 @@ enum uvc_buffer_state { | |||
| 365 | UVC_BUF_STATE_IDLE = 0, | 365 | UVC_BUF_STATE_IDLE = 0, |
| 366 | UVC_BUF_STATE_QUEUED = 1, | 366 | UVC_BUF_STATE_QUEUED = 1, |
| 367 | UVC_BUF_STATE_ACTIVE = 2, | 367 | UVC_BUF_STATE_ACTIVE = 2, |
| 368 | UVC_BUF_STATE_DONE = 3, | 368 | UVC_BUF_STATE_READY = 3, |
| 369 | UVC_BUF_STATE_ERROR = 4, | 369 | UVC_BUF_STATE_DONE = 4, |
| 370 | UVC_BUF_STATE_ERROR = 5, | ||
| 370 | }; | 371 | }; |
| 371 | 372 | ||
| 372 | struct uvc_buffer { | 373 | struct uvc_buffer { |
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index 85bc6a685e36..44d2037e9e56 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
| @@ -4330,6 +4330,8 @@ initChainBuffers(MPT_ADAPTER *ioc) | |||
| 4330 | 4330 | ||
| 4331 | if (ioc->bus_type == SPI) | 4331 | if (ioc->bus_type == SPI) |
| 4332 | num_chain *= MPT_SCSI_CAN_QUEUE; | 4332 | num_chain *= MPT_SCSI_CAN_QUEUE; |
| 4333 | else if (ioc->bus_type == SAS) | ||
| 4334 | num_chain *= MPT_SAS_CAN_QUEUE; | ||
| 4333 | else | 4335 | else |
| 4334 | num_chain *= MPT_FC_CAN_QUEUE; | 4336 | num_chain *= MPT_FC_CAN_QUEUE; |
| 4335 | 4337 | ||
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index ca2f2c4ff05e..e09eb4870db6 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | obj-$(CONFIG_MFD_SM501) += sm501.o | 5 | obj-$(CONFIG_MFD_SM501) += sm501.o |
| 6 | obj-$(CONFIG_MFD_ASIC3) += asic3.o | 6 | obj-$(CONFIG_MFD_ASIC3) += asic3.o tmio_core.o |
| 7 | obj-$(CONFIG_MFD_SH_MOBILE_SDHI) += sh_mobile_sdhi.o | 7 | obj-$(CONFIG_MFD_SH_MOBILE_SDHI) += sh_mobile_sdhi.o |
| 8 | 8 | ||
| 9 | obj-$(CONFIG_HTC_EGPIO) += htc-egpio.o | 9 | obj-$(CONFIG_HTC_EGPIO) += htc-egpio.o |
| @@ -11,9 +11,9 @@ obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o | |||
| 11 | 11 | ||
| 12 | obj-$(CONFIG_MFD_DM355EVM_MSP) += dm355evm_msp.o | 12 | obj-$(CONFIG_MFD_DM355EVM_MSP) += dm355evm_msp.o |
| 13 | 13 | ||
| 14 | obj-$(CONFIG_MFD_T7L66XB) += t7l66xb.o | 14 | obj-$(CONFIG_MFD_T7L66XB) += t7l66xb.o tmio_core.o |
| 15 | obj-$(CONFIG_MFD_TC6387XB) += tc6387xb.o | 15 | obj-$(CONFIG_MFD_TC6387XB) += tc6387xb.o tmio_core.o |
| 16 | obj-$(CONFIG_MFD_TC6393XB) += tc6393xb.o | 16 | obj-$(CONFIG_MFD_TC6393XB) += tc6393xb.o tmio_core.o |
| 17 | 17 | ||
| 18 | obj-$(CONFIG_MFD_WM8400) += wm8400-core.o | 18 | obj-$(CONFIG_MFD_WM8400) += wm8400-core.o |
| 19 | wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o | 19 | wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o |
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index e22128c3e9a8..95c1e6bd1729 100644 --- a/drivers/mfd/asic3.c +++ b/drivers/mfd/asic3.c | |||
| @@ -80,6 +80,7 @@ struct asic3 { | |||
| 80 | u16 irq_bothedge[4]; | 80 | u16 irq_bothedge[4]; |
| 81 | struct gpio_chip gpio; | 81 | struct gpio_chip gpio; |
| 82 | struct device *dev; | 82 | struct device *dev; |
| 83 | void __iomem *tmio_cnf; | ||
| 83 | 84 | ||
| 84 | struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)]; | 85 | struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)]; |
| 85 | }; | 86 | }; |
| @@ -685,8 +686,24 @@ static struct mfd_cell asic3_cell_ds1wm = { | |||
| 685 | .resources = ds1wm_resources, | 686 | .resources = ds1wm_resources, |
| 686 | }; | 687 | }; |
| 687 | 688 | ||
| 689 | static void asic3_mmc_pwr(struct platform_device *pdev, int state) | ||
| 690 | { | ||
| 691 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | ||
| 692 | |||
| 693 | tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state); | ||
| 694 | } | ||
| 695 | |||
| 696 | static void asic3_mmc_clk_div(struct platform_device *pdev, int state) | ||
| 697 | { | ||
| 698 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | ||
| 699 | |||
| 700 | tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state); | ||
| 701 | } | ||
| 702 | |||
| 688 | static struct tmio_mmc_data asic3_mmc_data = { | 703 | static struct tmio_mmc_data asic3_mmc_data = { |
| 689 | .hclk = 24576000, | 704 | .hclk = 24576000, |
| 705 | .set_pwr = asic3_mmc_pwr, | ||
| 706 | .set_clk_div = asic3_mmc_clk_div, | ||
| 690 | }; | 707 | }; |
| 691 | 708 | ||
| 692 | static struct resource asic3_mmc_resources[] = { | 709 | static struct resource asic3_mmc_resources[] = { |
| @@ -696,11 +713,6 @@ static struct resource asic3_mmc_resources[] = { | |||
| 696 | .flags = IORESOURCE_MEM, | 713 | .flags = IORESOURCE_MEM, |
| 697 | }, | 714 | }, |
| 698 | { | 715 | { |
| 699 | .start = ASIC3_SD_CONFIG_BASE, | ||
| 700 | .end = ASIC3_SD_CONFIG_BASE + 0x1ff, | ||
| 701 | .flags = IORESOURCE_MEM, | ||
| 702 | }, | ||
| 703 | { | ||
| 704 | .start = 0, | 716 | .start = 0, |
| 705 | .end = 0, | 717 | .end = 0, |
| 706 | .flags = IORESOURCE_IRQ, | 718 | .flags = IORESOURCE_IRQ, |
| @@ -743,6 +755,10 @@ static int asic3_mmc_enable(struct platform_device *pdev) | |||
| 743 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | 755 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 744 | ASIC3_SDHWCTRL_SDPWR, 1); | 756 | ASIC3_SDHWCTRL_SDPWR, 1); |
| 745 | 757 | ||
| 758 | /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */ | ||
| 759 | tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift, | ||
| 760 | ASIC3_SD_CTRL_BASE >> 1); | ||
| 761 | |||
| 746 | return 0; | 762 | return 0; |
| 747 | } | 763 | } |
| 748 | 764 | ||
| @@ -797,10 +813,15 @@ static int __init asic3_mfd_probe(struct platform_device *pdev, | |||
| 797 | asic3_cell_ds1wm.data_size = sizeof(asic3_cell_ds1wm); | 813 | asic3_cell_ds1wm.data_size = sizeof(asic3_cell_ds1wm); |
| 798 | 814 | ||
| 799 | /* MMC */ | 815 | /* MMC */ |
| 816 | asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> asic->bus_shift) + | ||
| 817 | mem_sdio->start, 0x400 >> asic->bus_shift); | ||
| 818 | if (!asic->tmio_cnf) { | ||
| 819 | ret = -ENOMEM; | ||
| 820 | dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n"); | ||
| 821 | goto out; | ||
| 822 | } | ||
| 800 | asic3_mmc_resources[0].start >>= asic->bus_shift; | 823 | asic3_mmc_resources[0].start >>= asic->bus_shift; |
| 801 | asic3_mmc_resources[0].end >>= asic->bus_shift; | 824 | asic3_mmc_resources[0].end >>= asic->bus_shift; |
| 802 | asic3_mmc_resources[1].start >>= asic->bus_shift; | ||
| 803 | asic3_mmc_resources[1].end >>= asic->bus_shift; | ||
| 804 | 825 | ||
| 805 | asic3_cell_mmc.platform_data = &asic3_cell_mmc; | 826 | asic3_cell_mmc.platform_data = &asic3_cell_mmc; |
| 806 | asic3_cell_mmc.data_size = sizeof(asic3_cell_mmc); | 827 | asic3_cell_mmc.data_size = sizeof(asic3_cell_mmc); |
| @@ -820,7 +841,10 @@ static int __init asic3_mfd_probe(struct platform_device *pdev, | |||
| 820 | 841 | ||
| 821 | static void asic3_mfd_remove(struct platform_device *pdev) | 842 | static void asic3_mfd_remove(struct platform_device *pdev) |
| 822 | { | 843 | { |
| 844 | struct asic3 *asic = platform_get_drvdata(pdev); | ||
| 845 | |||
| 823 | mfd_remove_devices(&pdev->dev); | 846 | mfd_remove_devices(&pdev->dev); |
| 847 | iounmap(asic->tmio_cnf); | ||
| 824 | } | 848 | } |
| 825 | 849 | ||
| 826 | /* Core */ | 850 | /* Core */ |
diff --git a/drivers/mfd/mc13783-core.c b/drivers/mfd/mc13783-core.c index a1ade2324ea9..735c8a4d164f 100644 --- a/drivers/mfd/mc13783-core.c +++ b/drivers/mfd/mc13783-core.c | |||
| @@ -619,6 +619,8 @@ err_revision: | |||
| 619 | } | 619 | } |
| 620 | /* This should go away (END) */ | 620 | /* This should go away (END) */ |
| 621 | 621 | ||
| 622 | mc13783_unlock(mc13783); | ||
| 623 | |||
| 622 | if (pdata->flags & MC13783_USE_ADC) | 624 | if (pdata->flags & MC13783_USE_ADC) |
| 623 | mc13783_add_subdevice(mc13783, "mc13783-adc"); | 625 | mc13783_add_subdevice(mc13783, "mc13783-adc"); |
| 624 | 626 | ||
| @@ -641,8 +643,6 @@ err_revision: | |||
| 641 | if (pdata->flags & MC13783_USE_TOUCHSCREEN) | 643 | if (pdata->flags & MC13783_USE_TOUCHSCREEN) |
| 642 | mc13783_add_subdevice(mc13783, "mc13783-ts"); | 644 | mc13783_add_subdevice(mc13783, "mc13783-ts"); |
| 643 | 645 | ||
| 644 | mc13783_unlock(mc13783); | ||
| 645 | |||
| 646 | return 0; | 646 | return 0; |
| 647 | } | 647 | } |
| 648 | 648 | ||
diff --git a/drivers/mfd/t7l66xb.c b/drivers/mfd/t7l66xb.c index 0a255c1f1ce7..bcf4687d4af5 100644 --- a/drivers/mfd/t7l66xb.c +++ b/drivers/mfd/t7l66xb.c | |||
| @@ -38,6 +38,19 @@ enum { | |||
| 38 | T7L66XB_CELL_MMC, | 38 | T7L66XB_CELL_MMC, |
| 39 | }; | 39 | }; |
| 40 | 40 | ||
| 41 | static const struct resource t7l66xb_mmc_resources[] = { | ||
| 42 | { | ||
| 43 | .start = 0x800, | ||
| 44 | .end = 0x9ff, | ||
| 45 | .flags = IORESOURCE_MEM, | ||
| 46 | }, | ||
| 47 | { | ||
| 48 | .start = IRQ_T7L66XB_MMC, | ||
| 49 | .end = IRQ_T7L66XB_MMC, | ||
| 50 | .flags = IORESOURCE_IRQ, | ||
| 51 | }, | ||
| 52 | }; | ||
| 53 | |||
| 41 | #define SCR_REVID 0x08 /* b Revision ID */ | 54 | #define SCR_REVID 0x08 /* b Revision ID */ |
| 42 | #define SCR_IMR 0x42 /* b Interrupt Mask */ | 55 | #define SCR_IMR 0x42 /* b Interrupt Mask */ |
| 43 | #define SCR_DEV_CTL 0xe0 /* b Device control */ | 56 | #define SCR_DEV_CTL 0xe0 /* b Device control */ |
| @@ -83,6 +96,9 @@ static int t7l66xb_mmc_enable(struct platform_device *mmc) | |||
| 83 | 96 | ||
| 84 | spin_unlock_irqrestore(&t7l66xb->lock, flags); | 97 | spin_unlock_irqrestore(&t7l66xb->lock, flags); |
| 85 | 98 | ||
| 99 | tmio_core_mmc_enable(t7l66xb->scr + 0x200, 0, | ||
| 100 | t7l66xb_mmc_resources[0].start & 0xfffe); | ||
| 101 | |||
| 86 | return 0; | 102 | return 0; |
| 87 | } | 103 | } |
| 88 | 104 | ||
| @@ -106,28 +122,28 @@ static int t7l66xb_mmc_disable(struct platform_device *mmc) | |||
| 106 | return 0; | 122 | return 0; |
| 107 | } | 123 | } |
| 108 | 124 | ||
| 125 | static void t7l66xb_mmc_pwr(struct platform_device *mmc, int state) | ||
| 126 | { | ||
| 127 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 128 | struct t7l66xb *t7l66xb = platform_get_drvdata(dev); | ||
| 129 | |||
| 130 | tmio_core_mmc_pwr(t7l66xb->scr + 0x200, 0, state); | ||
| 131 | } | ||
| 132 | |||
| 133 | static void t7l66xb_mmc_clk_div(struct platform_device *mmc, int state) | ||
| 134 | { | ||
| 135 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 136 | struct t7l66xb *t7l66xb = platform_get_drvdata(dev); | ||
| 137 | |||
| 138 | tmio_core_mmc_clk_div(t7l66xb->scr + 0x200, 0, state); | ||
| 139 | } | ||
| 140 | |||
| 109 | /*--------------------------------------------------------------------------*/ | 141 | /*--------------------------------------------------------------------------*/ |
| 110 | 142 | ||
| 111 | static struct tmio_mmc_data t7166xb_mmc_data = { | 143 | static struct tmio_mmc_data t7166xb_mmc_data = { |
| 112 | .hclk = 24000000, | 144 | .hclk = 24000000, |
| 113 | }; | 145 | .set_pwr = t7l66xb_mmc_pwr, |
| 114 | 146 | .set_clk_div = t7l66xb_mmc_clk_div, | |
| 115 | static const struct resource t7l66xb_mmc_resources[] = { | ||
| 116 | { | ||
| 117 | .start = 0x800, | ||
| 118 | .end = 0x9ff, | ||
| 119 | .flags = IORESOURCE_MEM, | ||
| 120 | }, | ||
| 121 | { | ||
| 122 | .start = 0x200, | ||
| 123 | .end = 0x2ff, | ||
| 124 | .flags = IORESOURCE_MEM, | ||
| 125 | }, | ||
| 126 | { | ||
| 127 | .start = IRQ_T7L66XB_MMC, | ||
| 128 | .end = IRQ_T7L66XB_MMC, | ||
| 129 | .flags = IORESOURCE_IRQ, | ||
| 130 | }, | ||
| 131 | }; | 147 | }; |
| 132 | 148 | ||
| 133 | static const struct resource t7l66xb_nand_resources[] = { | 149 | static const struct resource t7l66xb_nand_resources[] = { |
| @@ -282,6 +298,9 @@ static int t7l66xb_resume(struct platform_device *dev) | |||
| 282 | if (pdata && pdata->resume) | 298 | if (pdata && pdata->resume) |
| 283 | pdata->resume(dev); | 299 | pdata->resume(dev); |
| 284 | 300 | ||
| 301 | tmio_core_mmc_enable(t7l66xb->scr + 0x200, 0, | ||
| 302 | t7l66xb_mmc_resources[0].start & 0xfffe); | ||
| 303 | |||
| 285 | return 0; | 304 | return 0; |
| 286 | } | 305 | } |
| 287 | #else | 306 | #else |
diff --git a/drivers/mfd/tc6387xb.c b/drivers/mfd/tc6387xb.c index 3280ab33f88a..5c7f04343d5c 100644 --- a/drivers/mfd/tc6387xb.c +++ b/drivers/mfd/tc6387xb.c | |||
| @@ -22,28 +22,52 @@ enum { | |||
| 22 | TC6387XB_CELL_MMC, | 22 | TC6387XB_CELL_MMC, |
| 23 | }; | 23 | }; |
| 24 | 24 | ||
| 25 | struct tc6387xb { | ||
| 26 | void __iomem *scr; | ||
| 27 | struct clk *clk32k; | ||
| 28 | struct resource rscr; | ||
| 29 | }; | ||
| 30 | |||
| 31 | static struct resource tc6387xb_mmc_resources[] = { | ||
| 32 | { | ||
| 33 | .start = 0x800, | ||
| 34 | .end = 0x9ff, | ||
| 35 | .flags = IORESOURCE_MEM, | ||
| 36 | }, | ||
| 37 | { | ||
| 38 | .start = 0, | ||
| 39 | .end = 0, | ||
| 40 | .flags = IORESOURCE_IRQ, | ||
| 41 | }, | ||
| 42 | }; | ||
| 43 | |||
| 44 | /*--------------------------------------------------------------------------*/ | ||
| 45 | |||
| 25 | #ifdef CONFIG_PM | 46 | #ifdef CONFIG_PM |
| 26 | static int tc6387xb_suspend(struct platform_device *dev, pm_message_t state) | 47 | static int tc6387xb_suspend(struct platform_device *dev, pm_message_t state) |
| 27 | { | 48 | { |
| 28 | struct clk *clk32k = platform_get_drvdata(dev); | 49 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); |
| 29 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; | 50 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; |
| 30 | 51 | ||
| 31 | if (pdata && pdata->suspend) | 52 | if (pdata && pdata->suspend) |
| 32 | pdata->suspend(dev); | 53 | pdata->suspend(dev); |
| 33 | clk_disable(clk32k); | 54 | clk_disable(tc6387xb->clk32k); |
| 34 | 55 | ||
| 35 | return 0; | 56 | return 0; |
| 36 | } | 57 | } |
| 37 | 58 | ||
| 38 | static int tc6387xb_resume(struct platform_device *dev) | 59 | static int tc6387xb_resume(struct platform_device *dev) |
| 39 | { | 60 | { |
| 40 | struct clk *clk32k = platform_get_drvdata(dev); | 61 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); |
| 41 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; | 62 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; |
| 42 | 63 | ||
| 43 | clk_enable(clk32k); | 64 | clk_enable(tc6387xb->clk32k); |
| 44 | if (pdata && pdata->resume) | 65 | if (pdata && pdata->resume) |
| 45 | pdata->resume(dev); | 66 | pdata->resume(dev); |
| 46 | 67 | ||
| 68 | tmio_core_mmc_resume(tc6387xb->scr + 0x200, 0, | ||
| 69 | tc6387xb_mmc_resources[0].start & 0xfffe); | ||
| 70 | |||
| 47 | return 0; | 71 | return 0; |
| 48 | } | 72 | } |
| 49 | #else | 73 | #else |
| @@ -53,12 +77,32 @@ static int tc6387xb_resume(struct platform_device *dev) | |||
| 53 | 77 | ||
| 54 | /*--------------------------------------------------------------------------*/ | 78 | /*--------------------------------------------------------------------------*/ |
| 55 | 79 | ||
| 80 | static void tc6387xb_mmc_pwr(struct platform_device *mmc, int state) | ||
| 81 | { | ||
| 82 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 83 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); | ||
| 84 | |||
| 85 | tmio_core_mmc_pwr(tc6387xb->scr + 0x200, 0, state); | ||
| 86 | } | ||
| 87 | |||
| 88 | static void tc6387xb_mmc_clk_div(struct platform_device *mmc, int state) | ||
| 89 | { | ||
| 90 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 91 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); | ||
| 92 | |||
| 93 | tmio_core_mmc_clk_div(tc6387xb->scr + 0x200, 0, state); | ||
| 94 | } | ||
| 95 | |||
| 96 | |||
| 56 | static int tc6387xb_mmc_enable(struct platform_device *mmc) | 97 | static int tc6387xb_mmc_enable(struct platform_device *mmc) |
| 57 | { | 98 | { |
| 58 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | 99 | struct platform_device *dev = to_platform_device(mmc->dev.parent); |
| 59 | struct clk *clk32k = platform_get_drvdata(dev); | 100 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); |
| 60 | 101 | ||
| 61 | clk_enable(clk32k); | 102 | clk_enable(tc6387xb->clk32k); |
| 103 | |||
| 104 | tmio_core_mmc_enable(tc6387xb->scr + 0x200, 0, | ||
| 105 | tc6387xb_mmc_resources[0].start & 0xfffe); | ||
| 62 | 106 | ||
| 63 | return 0; | 107 | return 0; |
| 64 | } | 108 | } |
| @@ -66,36 +110,20 @@ static int tc6387xb_mmc_enable(struct platform_device *mmc) | |||
| 66 | static int tc6387xb_mmc_disable(struct platform_device *mmc) | 110 | static int tc6387xb_mmc_disable(struct platform_device *mmc) |
| 67 | { | 111 | { |
| 68 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | 112 | struct platform_device *dev = to_platform_device(mmc->dev.parent); |
| 69 | struct clk *clk32k = platform_get_drvdata(dev); | 113 | struct tc6387xb *tc6387xb = platform_get_drvdata(dev); |
| 70 | 114 | ||
| 71 | clk_disable(clk32k); | 115 | clk_disable(tc6387xb->clk32k); |
| 72 | 116 | ||
| 73 | return 0; | 117 | return 0; |
| 74 | } | 118 | } |
| 75 | 119 | ||
| 76 | /*--------------------------------------------------------------------------*/ | ||
| 77 | |||
| 78 | static struct tmio_mmc_data tc6387xb_mmc_data = { | 120 | static struct tmio_mmc_data tc6387xb_mmc_data = { |
| 79 | .hclk = 24000000, | 121 | .hclk = 24000000, |
| 122 | .set_pwr = tc6387xb_mmc_pwr, | ||
| 123 | .set_clk_div = tc6387xb_mmc_clk_div, | ||
| 80 | }; | 124 | }; |
| 81 | 125 | ||
| 82 | static struct resource tc6387xb_mmc_resources[] = { | 126 | /*--------------------------------------------------------------------------*/ |
| 83 | { | ||
| 84 | .start = 0x800, | ||
| 85 | .end = 0x9ff, | ||
| 86 | .flags = IORESOURCE_MEM, | ||
| 87 | }, | ||
| 88 | { | ||
| 89 | .start = 0x200, | ||
| 90 | .end = 0x2ff, | ||
| 91 | .flags = IORESOURCE_MEM, | ||
| 92 | }, | ||
| 93 | { | ||
| 94 | .start = 0, | ||
| 95 | .end = 0, | ||
| 96 | .flags = IORESOURCE_IRQ, | ||
| 97 | }, | ||
| 98 | }; | ||
| 99 | 127 | ||
| 100 | static struct mfd_cell tc6387xb_cells[] = { | 128 | static struct mfd_cell tc6387xb_cells[] = { |
| 101 | [TC6387XB_CELL_MMC] = { | 129 | [TC6387XB_CELL_MMC] = { |
| @@ -111,8 +139,9 @@ static struct mfd_cell tc6387xb_cells[] = { | |||
| 111 | static int tc6387xb_probe(struct platform_device *dev) | 139 | static int tc6387xb_probe(struct platform_device *dev) |
| 112 | { | 140 | { |
| 113 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; | 141 | struct tc6387xb_platform_data *pdata = dev->dev.platform_data; |
| 114 | struct resource *iomem; | 142 | struct resource *iomem, *rscr; |
| 115 | struct clk *clk32k; | 143 | struct clk *clk32k; |
| 144 | struct tc6387xb *tc6387xb; | ||
| 116 | int irq, ret; | 145 | int irq, ret; |
| 117 | 146 | ||
| 118 | iomem = platform_get_resource(dev, IORESOURCE_MEM, 0); | 147 | iomem = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| @@ -120,18 +149,40 @@ static int tc6387xb_probe(struct platform_device *dev) | |||
| 120 | return -EINVAL; | 149 | return -EINVAL; |
| 121 | } | 150 | } |
| 122 | 151 | ||
| 152 | tc6387xb = kzalloc(sizeof *tc6387xb, GFP_KERNEL); | ||
| 153 | if (!tc6387xb) | ||
| 154 | return -ENOMEM; | ||
| 155 | |||
| 123 | ret = platform_get_irq(dev, 0); | 156 | ret = platform_get_irq(dev, 0); |
| 124 | if (ret >= 0) | 157 | if (ret >= 0) |
| 125 | irq = ret; | 158 | irq = ret; |
| 126 | else | 159 | else |
| 127 | goto err_resource; | 160 | goto err_no_irq; |
| 128 | 161 | ||
| 129 | clk32k = clk_get(&dev->dev, "CLK_CK32K"); | 162 | clk32k = clk_get(&dev->dev, "CLK_CK32K"); |
| 130 | if (IS_ERR(clk32k)) { | 163 | if (IS_ERR(clk32k)) { |
| 131 | ret = PTR_ERR(clk32k); | 164 | ret = PTR_ERR(clk32k); |
| 165 | goto err_no_clk; | ||
| 166 | } | ||
| 167 | |||
| 168 | rscr = &tc6387xb->rscr; | ||
| 169 | rscr->name = "tc6387xb-core"; | ||
| 170 | rscr->start = iomem->start; | ||
| 171 | rscr->end = iomem->start + 0xff; | ||
| 172 | rscr->flags = IORESOURCE_MEM; | ||
| 173 | |||
| 174 | ret = request_resource(iomem, rscr); | ||
| 175 | if (ret) | ||
| 132 | goto err_resource; | 176 | goto err_resource; |
| 177 | |||
| 178 | tc6387xb->scr = ioremap(rscr->start, rscr->end - rscr->start + 1); | ||
| 179 | if (!tc6387xb->scr) { | ||
| 180 | ret = -ENOMEM; | ||
| 181 | goto err_ioremap; | ||
| 133 | } | 182 | } |
| 134 | platform_set_drvdata(dev, clk32k); | 183 | |
| 184 | tc6387xb->clk32k = clk32k; | ||
| 185 | platform_set_drvdata(dev, tc6387xb); | ||
| 135 | 186 | ||
| 136 | if (pdata && pdata->enable) | 187 | if (pdata && pdata->enable) |
| 137 | pdata->enable(dev); | 188 | pdata->enable(dev); |
| @@ -149,8 +200,13 @@ static int tc6387xb_probe(struct platform_device *dev) | |||
| 149 | if (!ret) | 200 | if (!ret) |
| 150 | return 0; | 201 | return 0; |
| 151 | 202 | ||
| 152 | clk_put(clk32k); | 203 | err_ioremap: |
| 204 | release_resource(&tc6387xb->rscr); | ||
| 153 | err_resource: | 205 | err_resource: |
| 206 | clk_put(clk32k); | ||
| 207 | err_no_clk: | ||
| 208 | err_no_irq: | ||
| 209 | kfree(tc6387xb); | ||
| 154 | return ret; | 210 | return ret; |
| 155 | } | 211 | } |
| 156 | 212 | ||
| @@ -195,3 +251,4 @@ MODULE_DESCRIPTION("Toshiba TC6387XB core driver"); | |||
| 195 | MODULE_LICENSE("GPL v2"); | 251 | MODULE_LICENSE("GPL v2"); |
| 196 | MODULE_AUTHOR("Ian Molton"); | 252 | MODULE_AUTHOR("Ian Molton"); |
| 197 | MODULE_ALIAS("platform:tc6387xb"); | 253 | MODULE_ALIAS("platform:tc6387xb"); |
| 254 | |||
diff --git a/drivers/mfd/tc6393xb.c b/drivers/mfd/tc6393xb.c index 1429a7341a9a..4bc5a08a2b09 100644 --- a/drivers/mfd/tc6393xb.c +++ b/drivers/mfd/tc6393xb.c | |||
| @@ -136,10 +136,6 @@ static int tc6393xb_nand_enable(struct platform_device *nand) | |||
| 136 | return 0; | 136 | return 0; |
| 137 | } | 137 | } |
| 138 | 138 | ||
| 139 | static struct tmio_mmc_data tc6393xb_mmc_data = { | ||
| 140 | .hclk = 24000000, | ||
| 141 | }; | ||
| 142 | |||
| 143 | static struct resource __devinitdata tc6393xb_nand_resources[] = { | 139 | static struct resource __devinitdata tc6393xb_nand_resources[] = { |
| 144 | { | 140 | { |
| 145 | .start = 0x1000, | 141 | .start = 0x1000, |
| @@ -165,11 +161,6 @@ static struct resource __devinitdata tc6393xb_mmc_resources[] = { | |||
| 165 | .flags = IORESOURCE_MEM, | 161 | .flags = IORESOURCE_MEM, |
| 166 | }, | 162 | }, |
| 167 | { | 163 | { |
| 168 | .start = 0x200, | ||
| 169 | .end = 0x2ff, | ||
| 170 | .flags = IORESOURCE_MEM, | ||
| 171 | }, | ||
| 172 | { | ||
| 173 | .start = IRQ_TC6393_MMC, | 164 | .start = IRQ_TC6393_MMC, |
| 174 | .end = IRQ_TC6393_MMC, | 165 | .end = IRQ_TC6393_MMC, |
| 175 | .flags = IORESOURCE_IRQ, | 166 | .flags = IORESOURCE_IRQ, |
| @@ -346,6 +337,50 @@ int tc6393xb_lcd_mode(struct platform_device *fb, | |||
| 346 | } | 337 | } |
| 347 | EXPORT_SYMBOL(tc6393xb_lcd_mode); | 338 | EXPORT_SYMBOL(tc6393xb_lcd_mode); |
| 348 | 339 | ||
| 340 | static int tc6393xb_mmc_enable(struct platform_device *mmc) | ||
| 341 | { | ||
| 342 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 343 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); | ||
| 344 | |||
| 345 | tmio_core_mmc_enable(tc6393xb->scr + 0x200, 0, | ||
| 346 | tc6393xb_mmc_resources[0].start & 0xfffe); | ||
| 347 | |||
| 348 | return 0; | ||
| 349 | } | ||
| 350 | |||
| 351 | static int tc6393xb_mmc_resume(struct platform_device *mmc) | ||
| 352 | { | ||
| 353 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 354 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); | ||
| 355 | |||
| 356 | tmio_core_mmc_resume(tc6393xb->scr + 0x200, 0, | ||
| 357 | tc6393xb_mmc_resources[0].start & 0xfffe); | ||
| 358 | |||
| 359 | return 0; | ||
| 360 | } | ||
| 361 | |||
| 362 | static void tc6393xb_mmc_pwr(struct platform_device *mmc, int state) | ||
| 363 | { | ||
| 364 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 365 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); | ||
| 366 | |||
| 367 | tmio_core_mmc_pwr(tc6393xb->scr + 0x200, 0, state); | ||
| 368 | } | ||
| 369 | |||
| 370 | static void tc6393xb_mmc_clk_div(struct platform_device *mmc, int state) | ||
| 371 | { | ||
| 372 | struct platform_device *dev = to_platform_device(mmc->dev.parent); | ||
| 373 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); | ||
| 374 | |||
| 375 | tmio_core_mmc_clk_div(tc6393xb->scr + 0x200, 0, state); | ||
| 376 | } | ||
| 377 | |||
| 378 | static struct tmio_mmc_data tc6393xb_mmc_data = { | ||
| 379 | .hclk = 24000000, | ||
| 380 | .set_pwr = tc6393xb_mmc_pwr, | ||
| 381 | .set_clk_div = tc6393xb_mmc_clk_div, | ||
| 382 | }; | ||
| 383 | |||
| 349 | static struct mfd_cell __devinitdata tc6393xb_cells[] = { | 384 | static struct mfd_cell __devinitdata tc6393xb_cells[] = { |
| 350 | [TC6393XB_CELL_NAND] = { | 385 | [TC6393XB_CELL_NAND] = { |
| 351 | .name = "tmio-nand", | 386 | .name = "tmio-nand", |
| @@ -355,6 +390,8 @@ static struct mfd_cell __devinitdata tc6393xb_cells[] = { | |||
| 355 | }, | 390 | }, |
| 356 | [TC6393XB_CELL_MMC] = { | 391 | [TC6393XB_CELL_MMC] = { |
| 357 | .name = "tmio-mmc", | 392 | .name = "tmio-mmc", |
| 393 | .enable = tc6393xb_mmc_enable, | ||
| 394 | .resume = tc6393xb_mmc_resume, | ||
| 358 | .driver_data = &tc6393xb_mmc_data, | 395 | .driver_data = &tc6393xb_mmc_data, |
| 359 | .num_resources = ARRAY_SIZE(tc6393xb_mmc_resources), | 396 | .num_resources = ARRAY_SIZE(tc6393xb_mmc_resources), |
| 360 | .resources = tc6393xb_mmc_resources, | 397 | .resources = tc6393xb_mmc_resources, |
| @@ -836,3 +873,4 @@ MODULE_LICENSE("GPL v2"); | |||
| 836 | MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov and Dirk Opfer"); | 873 | MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov and Dirk Opfer"); |
| 837 | MODULE_DESCRIPTION("tc6393xb Toshiba Mobile IO Controller"); | 874 | MODULE_DESCRIPTION("tc6393xb Toshiba Mobile IO Controller"); |
| 838 | MODULE_ALIAS("platform:tc6393xb"); | 875 | MODULE_ALIAS("platform:tc6393xb"); |
| 876 | |||
diff --git a/drivers/mfd/tmio_core.c b/drivers/mfd/tmio_core.c new file mode 100644 index 000000000000..eddc19ae464b --- /dev/null +++ b/drivers/mfd/tmio_core.c | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | * Copyright(c) 2009 Ian Molton <spyro@f2s.com> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 as | ||
| 6 | * published by the Free Software Foundation. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <linux/mfd/tmio.h> | ||
| 10 | |||
| 11 | int tmio_core_mmc_enable(void __iomem *cnf, int shift, unsigned long base) | ||
| 12 | { | ||
| 13 | /* Enable the MMC/SD Control registers */ | ||
| 14 | sd_config_write16(cnf, shift, CNF_CMD, SDCREN); | ||
| 15 | sd_config_write32(cnf, shift, CNF_CTL_BASE, base & 0xfffe); | ||
| 16 | |||
| 17 | /* Disable SD power during suspend */ | ||
| 18 | sd_config_write8(cnf, shift, CNF_PWR_CTL_3, 0x01); | ||
| 19 | |||
| 20 | /* The below is required but why? FIXME */ | ||
| 21 | sd_config_write8(cnf, shift, CNF_STOP_CLK_CTL, 0x1f); | ||
| 22 | |||
| 23 | /* Power down SD bus */ | ||
| 24 | sd_config_write8(cnf, shift, CNF_PWR_CTL_2, 0x00); | ||
| 25 | |||
| 26 | return 0; | ||
| 27 | } | ||
| 28 | EXPORT_SYMBOL(tmio_core_mmc_enable); | ||
| 29 | |||
| 30 | int tmio_core_mmc_resume(void __iomem *cnf, int shift, unsigned long base) | ||
| 31 | { | ||
| 32 | |||
| 33 | /* Enable the MMC/SD Control registers */ | ||
| 34 | sd_config_write16(cnf, shift, CNF_CMD, SDCREN); | ||
| 35 | sd_config_write32(cnf, shift, CNF_CTL_BASE, base & 0xfffe); | ||
| 36 | |||
| 37 | return 0; | ||
| 38 | } | ||
| 39 | EXPORT_SYMBOL(tmio_core_mmc_resume); | ||
| 40 | |||
| 41 | void tmio_core_mmc_pwr(void __iomem *cnf, int shift, int state) | ||
| 42 | { | ||
| 43 | sd_config_write8(cnf, shift, CNF_PWR_CTL_2, state ? 0x02 : 0x00); | ||
| 44 | } | ||
| 45 | EXPORT_SYMBOL(tmio_core_mmc_pwr); | ||
| 46 | |||
| 47 | void tmio_core_mmc_clk_div(void __iomem *cnf, int shift, int state) | ||
| 48 | { | ||
| 49 | sd_config_write8(cnf, shift, CNF_SD_CLK_MODE, state ? 1 : 0); | ||
| 50 | } | ||
| 51 | EXPORT_SYMBOL(tmio_core_mmc_clk_div); | ||
| 52 | |||
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c index 8485a7018060..9a970bd68775 100644 --- a/drivers/mfd/wm8350-core.c +++ b/drivers/mfd/wm8350-core.c | |||
| @@ -134,8 +134,7 @@ static inline int is_reg_locked(struct wm8350 *wm8350, u8 reg) | |||
| 134 | wm8350->reg_cache[WM8350_SECURITY] == WM8350_UNLOCK_KEY) | 134 | wm8350->reg_cache[WM8350_SECURITY] == WM8350_UNLOCK_KEY) |
| 135 | return 0; | 135 | return 0; |
| 136 | 136 | ||
| 137 | if ((reg == WM8350_GPIO_CONFIGURATION_I_O) || | 137 | if ((reg >= WM8350_GPIO_FUNCTION_SELECT_1 && |
| 138 | (reg >= WM8350_GPIO_FUNCTION_SELECT_1 && | ||
| 139 | reg <= WM8350_GPIO_FUNCTION_SELECT_4) || | 138 | reg <= WM8350_GPIO_FUNCTION_SELECT_4) || |
| 140 | (reg >= WM8350_BATTERY_CHARGER_CONTROL_1 && | 139 | (reg >= WM8350_BATTERY_CHARGER_CONTROL_1 && |
| 141 | reg <= WM8350_BATTERY_CHARGER_CONTROL_3)) | 140 | reg <= WM8350_BATTERY_CHARGER_CONTROL_3)) |
diff --git a/drivers/mfd/wm8350-irq.c b/drivers/mfd/wm8350-irq.c index c8df547c4747..9025f29e2707 100644 --- a/drivers/mfd/wm8350-irq.c +++ b/drivers/mfd/wm8350-irq.c | |||
| @@ -434,7 +434,7 @@ int wm8350_register_irq(struct wm8350 *wm8350, int irq, | |||
| 434 | irq_handler_t handler, unsigned long flags, | 434 | irq_handler_t handler, unsigned long flags, |
| 435 | const char *name, void *data) | 435 | const char *name, void *data) |
| 436 | { | 436 | { |
| 437 | if (irq < 0 || irq > WM8350_NUM_IRQ || !handler) | 437 | if (irq < 0 || irq >= WM8350_NUM_IRQ || !handler) |
| 438 | return -EINVAL; | 438 | return -EINVAL; |
| 439 | 439 | ||
| 440 | if (wm8350->irq[irq].handler) | 440 | if (wm8350->irq[irq].handler) |
| @@ -453,7 +453,7 @@ EXPORT_SYMBOL_GPL(wm8350_register_irq); | |||
| 453 | 453 | ||
| 454 | int wm8350_free_irq(struct wm8350 *wm8350, int irq) | 454 | int wm8350_free_irq(struct wm8350 *wm8350, int irq) |
| 455 | { | 455 | { |
| 456 | if (irq < 0 || irq > WM8350_NUM_IRQ) | 456 | if (irq < 0 || irq >= WM8350_NUM_IRQ) |
| 457 | return -EINVAL; | 457 | return -EINVAL; |
| 458 | 458 | ||
| 459 | wm8350_mask_irq(wm8350, irq); | 459 | wm8350_mask_irq(wm8350, irq); |
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c index 7cccc8523747..e22c3fa3516a 100644 --- a/drivers/mmc/host/tmio_mmc.c +++ b/drivers/mmc/host/tmio_mmc.c | |||
| @@ -46,7 +46,9 @@ static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock) | |||
| 46 | clk |= 0x100; | 46 | clk |= 0x100; |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | sd_config_write8(host, CNF_SD_CLK_MODE, clk >> 22); | 49 | if (host->set_clk_div) |
| 50 | host->set_clk_div(host->pdev, (clk>>22) & 1); | ||
| 51 | |||
| 50 | sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & 0x1ff); | 52 | sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & 0x1ff); |
| 51 | } | 53 | } |
| 52 | 54 | ||
| @@ -427,12 +429,13 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
| 427 | /* Power sequence - OFF -> ON -> UP */ | 429 | /* Power sequence - OFF -> ON -> UP */ |
| 428 | switch (ios->power_mode) { | 430 | switch (ios->power_mode) { |
| 429 | case MMC_POWER_OFF: /* power down SD bus */ | 431 | case MMC_POWER_OFF: /* power down SD bus */ |
| 430 | sd_config_write8(host, CNF_PWR_CTL_2, 0x00); | 432 | if (host->set_pwr) |
| 433 | host->set_pwr(host->pdev, 0); | ||
| 431 | tmio_mmc_clk_stop(host); | 434 | tmio_mmc_clk_stop(host); |
| 432 | break; | 435 | break; |
| 433 | case MMC_POWER_ON: /* power up SD bus */ | 436 | case MMC_POWER_ON: /* power up SD bus */ |
| 434 | 437 | if (host->set_pwr) | |
| 435 | sd_config_write8(host, CNF_PWR_CTL_2, 0x02); | 438 | host->set_pwr(host->pdev, 1); |
| 436 | break; | 439 | break; |
| 437 | case MMC_POWER_UP: /* start bus clock */ | 440 | case MMC_POWER_UP: /* start bus clock */ |
| 438 | tmio_mmc_clk_start(host); | 441 | tmio_mmc_clk_start(host); |
| @@ -485,21 +488,15 @@ static int tmio_mmc_resume(struct platform_device *dev) | |||
| 485 | { | 488 | { |
| 486 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; | 489 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; |
| 487 | struct mmc_host *mmc = platform_get_drvdata(dev); | 490 | struct mmc_host *mmc = platform_get_drvdata(dev); |
| 488 | struct tmio_mmc_host *host = mmc_priv(mmc); | ||
| 489 | int ret = 0; | 491 | int ret = 0; |
| 490 | 492 | ||
| 491 | /* Tell the MFD core we are ready to be enabled */ | 493 | /* Tell the MFD core we are ready to be enabled */ |
| 492 | if (cell->enable) { | 494 | if (cell->resume) { |
| 493 | ret = cell->enable(dev); | 495 | ret = cell->resume(dev); |
| 494 | if (ret) | 496 | if (ret) |
| 495 | goto out; | 497 | goto out; |
| 496 | } | 498 | } |
| 497 | 499 | ||
| 498 | /* Enable the MMC/SD Control registers */ | ||
| 499 | sd_config_write16(host, CNF_CMD, SDCREN); | ||
| 500 | sd_config_write32(host, CNF_CTL_BASE, | ||
| 501 | (dev->resource[0].start >> host->bus_shift) & 0xfffe); | ||
| 502 | |||
| 503 | mmc_resume_host(mmc); | 500 | mmc_resume_host(mmc); |
| 504 | 501 | ||
| 505 | out: | 502 | out: |
| @@ -514,17 +511,16 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 514 | { | 511 | { |
| 515 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; | 512 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; |
| 516 | struct tmio_mmc_data *pdata; | 513 | struct tmio_mmc_data *pdata; |
| 517 | struct resource *res_ctl, *res_cnf; | 514 | struct resource *res_ctl; |
| 518 | struct tmio_mmc_host *host; | 515 | struct tmio_mmc_host *host; |
| 519 | struct mmc_host *mmc; | 516 | struct mmc_host *mmc; |
| 520 | int ret = -EINVAL; | 517 | int ret = -EINVAL; |
| 521 | 518 | ||
| 522 | if (dev->num_resources != 3) | 519 | if (dev->num_resources != 2) |
| 523 | goto out; | 520 | goto out; |
| 524 | 521 | ||
| 525 | res_ctl = platform_get_resource(dev, IORESOURCE_MEM, 0); | 522 | res_ctl = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 526 | res_cnf = platform_get_resource(dev, IORESOURCE_MEM, 1); | 523 | if (!res_ctl) |
| 527 | if (!res_ctl || !res_cnf) | ||
| 528 | goto out; | 524 | goto out; |
| 529 | 525 | ||
| 530 | pdata = cell->driver_data; | 526 | pdata = cell->driver_data; |
| @@ -539,8 +535,12 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 539 | 535 | ||
| 540 | host = mmc_priv(mmc); | 536 | host = mmc_priv(mmc); |
| 541 | host->mmc = mmc; | 537 | host->mmc = mmc; |
| 538 | host->pdev = dev; | ||
| 542 | platform_set_drvdata(dev, mmc); | 539 | platform_set_drvdata(dev, mmc); |
| 543 | 540 | ||
| 541 | host->set_pwr = pdata->set_pwr; | ||
| 542 | host->set_clk_div = pdata->set_clk_div; | ||
| 543 | |||
| 544 | /* SD control register space size is 0x200, 0x400 for bus_shift=1 */ | 544 | /* SD control register space size is 0x200, 0x400 for bus_shift=1 */ |
| 545 | host->bus_shift = resource_size(res_ctl) >> 10; | 545 | host->bus_shift = resource_size(res_ctl) >> 10; |
| 546 | 546 | ||
| @@ -548,10 +548,6 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 548 | if (!host->ctl) | 548 | if (!host->ctl) |
| 549 | goto host_free; | 549 | goto host_free; |
| 550 | 550 | ||
| 551 | host->cnf = ioremap(res_cnf->start, resource_size(res_cnf)); | ||
| 552 | if (!host->cnf) | ||
| 553 | goto unmap_ctl; | ||
| 554 | |||
| 555 | mmc->ops = &tmio_mmc_ops; | 551 | mmc->ops = &tmio_mmc_ops; |
| 556 | mmc->caps = MMC_CAP_4_BIT_DATA; | 552 | mmc->caps = MMC_CAP_4_BIT_DATA; |
| 557 | mmc->f_max = pdata->hclk; | 553 | mmc->f_max = pdata->hclk; |
| @@ -562,23 +558,9 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 562 | if (cell->enable) { | 558 | if (cell->enable) { |
| 563 | ret = cell->enable(dev); | 559 | ret = cell->enable(dev); |
| 564 | if (ret) | 560 | if (ret) |
| 565 | goto unmap_cnf; | 561 | goto unmap_ctl; |
| 566 | } | 562 | } |
| 567 | 563 | ||
| 568 | /* Enable the MMC/SD Control registers */ | ||
| 569 | sd_config_write16(host, CNF_CMD, SDCREN); | ||
| 570 | sd_config_write32(host, CNF_CTL_BASE, | ||
| 571 | (dev->resource[0].start >> host->bus_shift) & 0xfffe); | ||
| 572 | |||
| 573 | /* Disable SD power during suspend */ | ||
| 574 | sd_config_write8(host, CNF_PWR_CTL_3, 0x01); | ||
| 575 | |||
| 576 | /* The below is required but why? FIXME */ | ||
| 577 | sd_config_write8(host, CNF_STOP_CLK_CTL, 0x1f); | ||
| 578 | |||
| 579 | /* Power down SD bus*/ | ||
| 580 | sd_config_write8(host, CNF_PWR_CTL_2, 0x00); | ||
| 581 | |||
| 582 | tmio_mmc_clk_stop(host); | 564 | tmio_mmc_clk_stop(host); |
| 583 | reset(host); | 565 | reset(host); |
| 584 | 566 | ||
| @@ -586,14 +568,14 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 586 | if (ret >= 0) | 568 | if (ret >= 0) |
| 587 | host->irq = ret; | 569 | host->irq = ret; |
| 588 | else | 570 | else |
| 589 | goto unmap_cnf; | 571 | goto unmap_ctl; |
| 590 | 572 | ||
| 591 | disable_mmc_irqs(host, TMIO_MASK_ALL); | 573 | disable_mmc_irqs(host, TMIO_MASK_ALL); |
| 592 | 574 | ||
| 593 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED | | 575 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED | |
| 594 | IRQF_TRIGGER_FALLING, dev_name(&dev->dev), host); | 576 | IRQF_TRIGGER_FALLING, dev_name(&dev->dev), host); |
| 595 | if (ret) | 577 | if (ret) |
| 596 | goto unmap_cnf; | 578 | goto unmap_ctl; |
| 597 | 579 | ||
| 598 | mmc_add_host(mmc); | 580 | mmc_add_host(mmc); |
| 599 | 581 | ||
| @@ -605,8 +587,6 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 605 | 587 | ||
| 606 | return 0; | 588 | return 0; |
| 607 | 589 | ||
| 608 | unmap_cnf: | ||
| 609 | iounmap(host->cnf); | ||
| 610 | unmap_ctl: | 590 | unmap_ctl: |
| 611 | iounmap(host->ctl); | 591 | iounmap(host->ctl); |
| 612 | host_free: | 592 | host_free: |
| @@ -626,7 +606,6 @@ static int __devexit tmio_mmc_remove(struct platform_device *dev) | |||
| 626 | mmc_remove_host(mmc); | 606 | mmc_remove_host(mmc); |
| 627 | free_irq(host->irq, host); | 607 | free_irq(host->irq, host); |
| 628 | iounmap(host->ctl); | 608 | iounmap(host->ctl); |
| 629 | iounmap(host->cnf); | ||
| 630 | mmc_free_host(mmc); | 609 | mmc_free_host(mmc); |
| 631 | } | 610 | } |
| 632 | 611 | ||
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index 9fa998594974..692dc23363b9 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h | |||
| @@ -11,26 +11,6 @@ | |||
| 11 | 11 | ||
| 12 | #include <linux/highmem.h> | 12 | #include <linux/highmem.h> |
| 13 | 13 | ||
| 14 | #define CNF_CMD 0x04 | ||
| 15 | #define CNF_CTL_BASE 0x10 | ||
| 16 | #define CNF_INT_PIN 0x3d | ||
| 17 | #define CNF_STOP_CLK_CTL 0x40 | ||
| 18 | #define CNF_GCLK_CTL 0x41 | ||
| 19 | #define CNF_SD_CLK_MODE 0x42 | ||
| 20 | #define CNF_PIN_STATUS 0x44 | ||
| 21 | #define CNF_PWR_CTL_1 0x48 | ||
| 22 | #define CNF_PWR_CTL_2 0x49 | ||
| 23 | #define CNF_PWR_CTL_3 0x4a | ||
| 24 | #define CNF_CARD_DETECT_MODE 0x4c | ||
| 25 | #define CNF_SD_SLOT 0x50 | ||
| 26 | #define CNF_EXT_GCLK_CTL_1 0xf0 | ||
| 27 | #define CNF_EXT_GCLK_CTL_2 0xf1 | ||
| 28 | #define CNF_EXT_GCLK_CTL_3 0xf9 | ||
| 29 | #define CNF_SD_LED_EN_1 0xfa | ||
| 30 | #define CNF_SD_LED_EN_2 0xfe | ||
| 31 | |||
| 32 | #define SDCREN 0x2 /* Enable access to MMC CTL regs. (flag in COMMAND_REG)*/ | ||
| 33 | |||
| 34 | #define CTL_SD_CMD 0x00 | 14 | #define CTL_SD_CMD 0x00 |
| 35 | #define CTL_ARG_REG 0x04 | 15 | #define CTL_ARG_REG 0x04 |
| 36 | #define CTL_STOP_INTERNAL_ACTION 0x08 | 16 | #define CTL_STOP_INTERNAL_ACTION 0x08 |
| @@ -110,7 +90,6 @@ | |||
| 110 | 90 | ||
| 111 | 91 | ||
| 112 | struct tmio_mmc_host { | 92 | struct tmio_mmc_host { |
| 113 | void __iomem *cnf; | ||
| 114 | void __iomem *ctl; | 93 | void __iomem *ctl; |
| 115 | unsigned long bus_shift; | 94 | unsigned long bus_shift; |
| 116 | struct mmc_command *cmd; | 95 | struct mmc_command *cmd; |
| @@ -119,10 +98,16 @@ struct tmio_mmc_host { | |||
| 119 | struct mmc_host *mmc; | 98 | struct mmc_host *mmc; |
| 120 | int irq; | 99 | int irq; |
| 121 | 100 | ||
| 101 | /* Callbacks for clock / power control */ | ||
| 102 | void (*set_pwr)(struct platform_device *host, int state); | ||
| 103 | void (*set_clk_div)(struct platform_device *host, int state); | ||
| 104 | |||
| 122 | /* pio related stuff */ | 105 | /* pio related stuff */ |
| 123 | struct scatterlist *sg_ptr; | 106 | struct scatterlist *sg_ptr; |
| 124 | unsigned int sg_len; | 107 | unsigned int sg_len; |
| 125 | unsigned int sg_off; | 108 | unsigned int sg_off; |
| 109 | |||
| 110 | struct platform_device *pdev; | ||
| 126 | }; | 111 | }; |
| 127 | 112 | ||
| 128 | #include <linux/io.h> | 113 | #include <linux/io.h> |
| @@ -163,25 +148,6 @@ static inline void sd_ctrl_write32(struct tmio_mmc_host *host, int addr, | |||
| 163 | writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift)); | 148 | writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift)); |
| 164 | } | 149 | } |
| 165 | 150 | ||
| 166 | static inline void sd_config_write8(struct tmio_mmc_host *host, int addr, | ||
| 167 | u8 val) | ||
| 168 | { | ||
| 169 | writeb(val, host->cnf + (addr << host->bus_shift)); | ||
| 170 | } | ||
| 171 | |||
| 172 | static inline void sd_config_write16(struct tmio_mmc_host *host, int addr, | ||
| 173 | u16 val) | ||
| 174 | { | ||
| 175 | writew(val, host->cnf + (addr << host->bus_shift)); | ||
| 176 | } | ||
| 177 | |||
| 178 | static inline void sd_config_write32(struct tmio_mmc_host *host, int addr, | ||
| 179 | u32 val) | ||
| 180 | { | ||
| 181 | writew(val, host->cnf + (addr << host->bus_shift)); | ||
| 182 | writew(val >> 16, host->cnf + ((addr + 2) << host->bus_shift)); | ||
| 183 | } | ||
| 184 | |||
| 185 | #include <linux/scatterlist.h> | 151 | #include <linux/scatterlist.h> |
| 186 | #include <linux/blkdev.h> | 152 | #include <linux/blkdev.h> |
| 187 | 153 | ||
diff --git a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig index 4c364d44ad59..2de0cc823d60 100644 --- a/drivers/mtd/maps/Kconfig +++ b/drivers/mtd/maps/Kconfig | |||
| @@ -549,4 +549,21 @@ config MTD_VMU | |||
| 549 | To build this as a module select M here, the module will be called | 549 | To build this as a module select M here, the module will be called |
| 550 | vmu-flash. | 550 | vmu-flash. |
| 551 | 551 | ||
| 552 | config MTD_PISMO | ||
| 553 | tristate "MTD discovery driver for PISMO modules" | ||
| 554 | depends on I2C | ||
| 555 | depends on ARCH_VERSATILE | ||
| 556 | help | ||
| 557 | This driver allows for discovery of PISMO modules - see | ||
| 558 | <http://www.pismoworld.org/>. These are small modules containing | ||
| 559 | up to five memory devices (eg, SRAM, flash, DOC) described by an | ||
| 560 | I2C EEPROM. | ||
| 561 | |||
| 562 | This driver does not create any MTD maps itself; instead it | ||
| 563 | creates MTD physmap and MTD SRAM platform devices. If you | ||
| 564 | enable this option, you should consider enabling MTD_PHYSMAP | ||
| 565 | and/or MTD_PLATRAM according to the devices on your module. | ||
| 566 | |||
| 567 | When built as a module, it will be called pismo.ko | ||
| 568 | |||
| 552 | endmenu | 569 | endmenu |
diff --git a/drivers/mtd/maps/pismo.c b/drivers/mtd/maps/pismo.c new file mode 100644 index 000000000000..c48cad271f5d --- /dev/null +++ b/drivers/mtd/maps/pismo.c | |||
| @@ -0,0 +1,320 @@ | |||
| 1 | /* | ||
| 2 | * PISMO memory driver - http://www.pismoworld.org/ | ||
| 3 | * | ||
| 4 | * For ARM Realview and Versatile platforms | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License. | ||
| 9 | */ | ||
| 10 | #include <linux/init.h> | ||
| 11 | #include <linux/module.h> | ||
| 12 | #include <linux/i2c.h> | ||
| 13 | #include <linux/platform_device.h> | ||
| 14 | #include <linux/spinlock.h> | ||
| 15 | #include <linux/mutex.h> | ||
| 16 | #include <linux/mtd/physmap.h> | ||
| 17 | #include <linux/mtd/plat-ram.h> | ||
| 18 | #include <linux/mtd/pismo.h> | ||
| 19 | |||
| 20 | #define PISMO_NUM_CS 5 | ||
| 21 | |||
| 22 | struct pismo_cs_block { | ||
| 23 | u8 type; | ||
| 24 | u8 width; | ||
| 25 | __le16 access; | ||
| 26 | __le32 size; | ||
| 27 | u32 reserved[2]; | ||
| 28 | char device[32]; | ||
| 29 | } __packed; | ||
| 30 | |||
| 31 | struct pismo_eeprom { | ||
| 32 | struct pismo_cs_block cs[PISMO_NUM_CS]; | ||
| 33 | char board[15]; | ||
| 34 | u8 sum; | ||
| 35 | } __packed; | ||
| 36 | |||
| 37 | struct pismo_mem { | ||
| 38 | phys_addr_t base; | ||
| 39 | u32 size; | ||
| 40 | u16 access; | ||
| 41 | u8 width; | ||
| 42 | u8 type; | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct pismo_data { | ||
| 46 | struct i2c_client *client; | ||
| 47 | void (*vpp)(void *, int); | ||
| 48 | void *vpp_data; | ||
| 49 | struct platform_device *dev[PISMO_NUM_CS]; | ||
| 50 | }; | ||
| 51 | |||
| 52 | /* FIXME: set_vpp could do with a better calling convention */ | ||
| 53 | static struct pismo_data *vpp_pismo; | ||
| 54 | static DEFINE_MUTEX(pismo_mutex); | ||
| 55 | |||
| 56 | static int pismo_setvpp_probe_fix(struct pismo_data *pismo) | ||
| 57 | { | ||
| 58 | mutex_lock(&pismo_mutex); | ||
| 59 | if (vpp_pismo) { | ||
| 60 | mutex_unlock(&pismo_mutex); | ||
| 61 | kfree(pismo); | ||
| 62 | return -EBUSY; | ||
| 63 | } | ||
| 64 | vpp_pismo = pismo; | ||
| 65 | mutex_unlock(&pismo_mutex); | ||
| 66 | return 0; | ||
| 67 | } | ||
| 68 | |||
| 69 | static void pismo_setvpp_remove_fix(struct pismo_data *pismo) | ||
| 70 | { | ||
| 71 | mutex_lock(&pismo_mutex); | ||
| 72 | if (vpp_pismo == pismo) | ||
| 73 | vpp_pismo = NULL; | ||
| 74 | mutex_unlock(&pismo_mutex); | ||
| 75 | } | ||
| 76 | |||
| 77 | static void pismo_set_vpp(struct map_info *map, int on) | ||
| 78 | { | ||
| 79 | struct pismo_data *pismo = vpp_pismo; | ||
| 80 | |||
| 81 | pismo->vpp(pismo->vpp_data, on); | ||
| 82 | } | ||
| 83 | /* end of hack */ | ||
| 84 | |||
| 85 | |||
| 86 | static unsigned int __devinit pismo_width_to_bytes(unsigned int width) | ||
| 87 | { | ||
| 88 | width &= 15; | ||
| 89 | if (width > 2) | ||
| 90 | return 0; | ||
| 91 | return 1 << width; | ||
| 92 | } | ||
| 93 | |||
| 94 | static int __devinit pismo_eeprom_read(struct i2c_client *client, void *buf, | ||
| 95 | u8 addr, size_t size) | ||
| 96 | { | ||
| 97 | int ret; | ||
| 98 | struct i2c_msg msg[] = { | ||
| 99 | { | ||
| 100 | .addr = client->addr, | ||
| 101 | .len = sizeof(addr), | ||
| 102 | .buf = &addr, | ||
| 103 | }, { | ||
| 104 | .addr = client->addr, | ||
| 105 | .flags = I2C_M_RD, | ||
| 106 | .len = size, | ||
| 107 | .buf = buf, | ||
| 108 | }, | ||
| 109 | }; | ||
| 110 | |||
| 111 | ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg)); | ||
| 112 | |||
| 113 | return ret == ARRAY_SIZE(msg) ? size : -EIO; | ||
| 114 | } | ||
| 115 | |||
| 116 | static int __devinit pismo_add_device(struct pismo_data *pismo, int i, | ||
| 117 | struct pismo_mem *region, const char *name, void *pdata, size_t psize) | ||
| 118 | { | ||
| 119 | struct platform_device *dev; | ||
| 120 | struct resource res = { }; | ||
| 121 | phys_addr_t base = region.base; | ||
| 122 | int ret; | ||
| 123 | |||
| 124 | if (base == ~0) | ||
| 125 | return -ENXIO; | ||
| 126 | |||
| 127 | res.start = base; | ||
| 128 | res.end = base + region->size - 1; | ||
| 129 | res.flags = IORESOURCE_MEM; | ||
| 130 | |||
| 131 | dev = platform_device_alloc(name, i); | ||
| 132 | if (!dev) | ||
| 133 | return -ENOMEM; | ||
| 134 | dev->dev.parent = &pismo->client->dev; | ||
| 135 | |||
| 136 | do { | ||
| 137 | ret = platform_device_add_resources(dev, &res, 1); | ||
| 138 | if (ret) | ||
| 139 | break; | ||
| 140 | |||
| 141 | ret = platform_device_add_data(dev, pdata, psize); | ||
| 142 | if (ret) | ||
| 143 | break; | ||
| 144 | |||
| 145 | ret = platform_device_add(dev); | ||
| 146 | if (ret) | ||
| 147 | break; | ||
| 148 | |||
| 149 | pismo->dev[i] = dev; | ||
| 150 | return 0; | ||
| 151 | } while (0); | ||
| 152 | |||
| 153 | platform_device_put(dev); | ||
| 154 | return ret; | ||
| 155 | } | ||
| 156 | |||
| 157 | static int __devinit pismo_add_nor(struct pismo_data *pismo, int i, | ||
| 158 | struct pismo_mem *region) | ||
| 159 | { | ||
| 160 | struct physmap_flash_data data = { | ||
| 161 | .width = region->width, | ||
| 162 | }; | ||
| 163 | |||
| 164 | if (pismo->vpp) | ||
| 165 | data.set_vpp = pismo_set_vpp; | ||
| 166 | |||
| 167 | return pismo_add_device(pismo, i, region, "physmap-flash", | ||
| 168 | &data, sizeof(data)); | ||
| 169 | } | ||
| 170 | |||
| 171 | static int __devinit pismo_add_sram(struct pismo_data *pismo, int i, | ||
| 172 | struct pismo_mem *region) | ||
| 173 | { | ||
| 174 | struct platdata_mtd_ram data = { | ||
| 175 | .bankwidth = region->width, | ||
| 176 | }; | ||
| 177 | |||
| 178 | return pismo_add_device(pismo, i, region, "mtd-ram", | ||
| 179 | &data, sizeof(data)); | ||
| 180 | } | ||
| 181 | |||
| 182 | static void __devinit pismo_add_one(struct pismo_data *pismo, int i, | ||
| 183 | const struct pismo_cs_block *cs, phys_addr_t base) | ||
| 184 | { | ||
| 185 | struct device *dev = &pismo->client->dev; | ||
| 186 | struct pismo_mem region; | ||
| 187 | |||
| 188 | region.base = base; | ||
| 189 | region.type = cs->type; | ||
| 190 | region.width = pismo_width_to_bytes(cs->width); | ||
| 191 | region.access = le16_to_cpu(cs->access); | ||
| 192 | region.size = le32_to_cpu(cs->size); | ||
| 193 | |||
| 194 | if (region.width == 0) { | ||
| 195 | dev_err(dev, "cs%u: bad width: %02x, ignoring\n", i, cs->width); | ||
| 196 | return; | ||
| 197 | } | ||
| 198 | |||
| 199 | /* | ||
| 200 | * FIXME: may need to the platforms memory controller here, but at | ||
| 201 | * the moment we assume that it has already been correctly setup. | ||
| 202 | * The memory controller can also tell us the base address as well. | ||
| 203 | */ | ||
| 204 | |||
| 205 | dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n", | ||
| 206 | i, cs->device, region.type, region.access, region.size / 1024); | ||
| 207 | |||
| 208 | switch (region.type) { | ||
| 209 | case 0: | ||
| 210 | break; | ||
| 211 | case 1: | ||
| 212 | /* static DOC */ | ||
| 213 | break; | ||
| 214 | case 2: | ||
| 215 | /* static NOR */ | ||
| 216 | pismo_add_nor(pismo, i, ®ion); | ||
| 217 | break; | ||
| 218 | case 3: | ||
| 219 | /* static RAM */ | ||
| 220 | pismo_add_sram(pismo, i, ®ion); | ||
| 221 | break; | ||
| 222 | } | ||
| 223 | } | ||
| 224 | |||
| 225 | static int __devexit pismo_remove(struct i2c_client *client) | ||
| 226 | { | ||
| 227 | struct pismo_data *pismo = i2c_get_clientdata(client); | ||
| 228 | int i; | ||
| 229 | |||
| 230 | for (i = 0; i < ARRAY_SIZE(pismo->dev); i++) | ||
| 231 | platform_device_unregister(pismo->dev[i]); | ||
| 232 | |||
| 233 | /* FIXME: set_vpp needs saner arguments */ | ||
| 234 | pismo_setvpp_remove_fix(pismo); | ||
| 235 | |||
| 236 | kfree(pismo); | ||
| 237 | |||
| 238 | return 0; | ||
| 239 | } | ||
| 240 | |||
| 241 | static int __devinit pismo_probe(struct i2c_client *client, | ||
| 242 | const struct i2c_device_id *id) | ||
| 243 | { | ||
| 244 | struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); | ||
| 245 | struct pismo_pdata *pdata = client->dev.platform_data; | ||
| 246 | struct pismo_eeprom eeprom; | ||
| 247 | struct pismo_data *pismo; | ||
| 248 | int ret, i; | ||
| 249 | |||
| 250 | if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { | ||
| 251 | dev_err(&client->dev, "functionality mismatch\n"); | ||
| 252 | return -EIO; | ||
| 253 | } | ||
| 254 | |||
| 255 | pismo = kzalloc(sizeof(*pismo), GFP_KERNEL); | ||
| 256 | if (!pismo) | ||
| 257 | return -ENOMEM; | ||
| 258 | |||
| 259 | /* FIXME: set_vpp needs saner arguments */ | ||
| 260 | ret = pismo_setvpp_probe_fix(pismo); | ||
| 261 | if (ret) | ||
| 262 | return ret; | ||
| 263 | |||
| 264 | pismo->client = client; | ||
| 265 | if (pdata) { | ||
| 266 | pismo->vpp = pdata->set_vpp; | ||
| 267 | pismo->vpp_data = pdata->vpp_data; | ||
| 268 | } | ||
| 269 | i2c_set_clientdata(client, pismo); | ||
| 270 | |||
| 271 | ret = pismo_eeprom_read(client, &eeprom, 0, sizeof(eeprom)); | ||
| 272 | if (ret < 0) { | ||
| 273 | dev_err(&client->dev, "error reading EEPROM: %d\n", ret); | ||
| 274 | return ret; | ||
| 275 | } | ||
| 276 | |||
| 277 | dev_info(&client->dev, "%.15s board found\n", eeprom.board); | ||
| 278 | |||
| 279 | for (i = 0; i < ARRAY_SIZE(eeprom.cs); i++) | ||
| 280 | if (eeprom.cs[i].type != 0xff) | ||
| 281 | pismo_add_one(pismo, i, &eeprom.cs[i], | ||
| 282 | pdata->cs_addrs[i]); | ||
| 283 | |||
| 284 | return 0; | ||
| 285 | } | ||
| 286 | |||
| 287 | static const struct i2c_device_id pismo_id[] = { | ||
| 288 | { "pismo" }, | ||
| 289 | { }, | ||
| 290 | }; | ||
| 291 | MODULE_DEVICE_TABLE(i2c, pismo_id); | ||
| 292 | |||
| 293 | static struct i2c_driver pismo_driver = { | ||
| 294 | .driver = { | ||
| 295 | .name = "pismo", | ||
| 296 | .owner = THIS_MODULE, | ||
| 297 | }, | ||
| 298 | .probe = pismo_probe, | ||
| 299 | .remove = __devexit_p(pismo_remove), | ||
| 300 | .id_table = pismo_id, | ||
| 301 | }; | ||
| 302 | |||
| 303 | static int __init pismo_init(void) | ||
| 304 | { | ||
| 305 | BUILD_BUG_ON(sizeof(struct pismo_cs_block) != 48); | ||
| 306 | BUILD_BUG_ON(sizeof(struct pismo_eeprom) != 256); | ||
| 307 | |||
| 308 | return i2c_add_driver(&pismo_driver); | ||
| 309 | } | ||
| 310 | module_init(pismo_init); | ||
| 311 | |||
| 312 | static void __exit pismo_exit(void) | ||
| 313 | { | ||
| 314 | i2c_del_driver(&pismo_driver); | ||
| 315 | } | ||
| 316 | module_exit(pismo_exit); | ||
| 317 | |||
| 318 | MODULE_AUTHOR("Russell King <linux@arm.linux.org.uk>"); | ||
| 319 | MODULE_DESCRIPTION("PISMO memory driver"); | ||
| 320 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index a714ec482761..92e12df0917f 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
| @@ -322,7 +322,7 @@ static void mtdoops_do_dump(struct kmsg_dumper *dumper, | |||
| 322 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); | 322 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); |
| 323 | 323 | ||
| 324 | /* Panics must be written immediately */ | 324 | /* Panics must be written immediately */ |
| 325 | if (reason == KMSG_DUMP_PANIC) { | 325 | if (reason != KMSG_DUMP_OOPS) { |
| 326 | if (!cxt->mtd->panic_write) | 326 | if (!cxt->mtd->panic_write) |
| 327 | printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n"); | 327 | printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n"); |
| 328 | else | 328 | else |
diff --git a/drivers/mtd/tests/mtd_readtest.c b/drivers/mtd/tests/mtd_readtest.c index 79fc4530987b..25c5dd03a837 100644 --- a/drivers/mtd/tests/mtd_readtest.c +++ b/drivers/mtd/tests/mtd_readtest.c | |||
| @@ -147,6 +147,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 147 | } | 147 | } |
| 148 | memset(bbt, 0 , ebcnt); | 148 | memset(bbt, 0 , ebcnt); |
| 149 | 149 | ||
| 150 | /* NOR flash does not implement block_isbad */ | ||
| 151 | if (mtd->block_isbad == NULL) | ||
| 152 | return 0; | ||
| 153 | |||
| 150 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 154 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 151 | for (i = 0; i < ebcnt; ++i) { | 155 | for (i = 0; i < ebcnt; ++i) { |
| 152 | bbt[i] = is_block_bad(i) ? 1 : 0; | 156 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -184,7 +188,7 @@ static int __init mtd_readtest_init(void) | |||
| 184 | tmp = mtd->size; | 188 | tmp = mtd->size; |
| 185 | do_div(tmp, mtd->erasesize); | 189 | do_div(tmp, mtd->erasesize); |
| 186 | ebcnt = tmp; | 190 | ebcnt = tmp; |
| 187 | pgcnt = mtd->erasesize / mtd->writesize; | 191 | pgcnt = mtd->erasesize / pgsize; |
| 188 | 192 | ||
| 189 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 193 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 190 | "page size %u, count of eraseblocks %u, pages per " | 194 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/drivers/mtd/tests/mtd_speedtest.c b/drivers/mtd/tests/mtd_speedtest.c index 141363a7e805..7fbb51d4eabe 100644 --- a/drivers/mtd/tests/mtd_speedtest.c +++ b/drivers/mtd/tests/mtd_speedtest.c | |||
| @@ -301,6 +301,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 301 | } | 301 | } |
| 302 | memset(bbt, 0 , ebcnt); | 302 | memset(bbt, 0 , ebcnt); |
| 303 | 303 | ||
| 304 | /* NOR flash does not implement block_isbad */ | ||
| 305 | if (mtd->block_isbad == NULL) | ||
| 306 | goto out; | ||
| 307 | |||
| 304 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 308 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 305 | for (i = 0; i < ebcnt; ++i) { | 309 | for (i = 0; i < ebcnt; ++i) { |
| 306 | bbt[i] = is_block_bad(i) ? 1 : 0; | 310 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -309,6 +313,7 @@ static int scan_for_bad_eraseblocks(void) | |||
| 309 | cond_resched(); | 313 | cond_resched(); |
| 310 | } | 314 | } |
| 311 | printk(PRINT_PREF "scanned %d eraseblocks, %d are bad\n", i, bad); | 315 | printk(PRINT_PREF "scanned %d eraseblocks, %d are bad\n", i, bad); |
| 316 | out: | ||
| 312 | goodebcnt = ebcnt - bad; | 317 | goodebcnt = ebcnt - bad; |
| 313 | return 0; | 318 | return 0; |
| 314 | } | 319 | } |
| @@ -340,7 +345,7 @@ static int __init mtd_speedtest_init(void) | |||
| 340 | tmp = mtd->size; | 345 | tmp = mtd->size; |
| 341 | do_div(tmp, mtd->erasesize); | 346 | do_div(tmp, mtd->erasesize); |
| 342 | ebcnt = tmp; | 347 | ebcnt = tmp; |
| 343 | pgcnt = mtd->erasesize / mtd->writesize; | 348 | pgcnt = mtd->erasesize / pgsize; |
| 344 | 349 | ||
| 345 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 350 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 346 | "page size %u, count of eraseblocks %u, pages per " | 351 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/drivers/mtd/tests/mtd_stresstest.c b/drivers/mtd/tests/mtd_stresstest.c index 63920476b57a..a99d3cd737d8 100644 --- a/drivers/mtd/tests/mtd_stresstest.c +++ b/drivers/mtd/tests/mtd_stresstest.c | |||
| @@ -227,6 +227,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 227 | } | 227 | } |
| 228 | memset(bbt, 0 , ebcnt); | 228 | memset(bbt, 0 , ebcnt); |
| 229 | 229 | ||
| 230 | /* NOR flash does not implement block_isbad */ | ||
| 231 | if (mtd->block_isbad == NULL) | ||
| 232 | return 0; | ||
| 233 | |||
| 230 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 234 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 231 | for (i = 0; i < ebcnt; ++i) { | 235 | for (i = 0; i < ebcnt; ++i) { |
| 232 | bbt[i] = is_block_bad(i) ? 1 : 0; | 236 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -265,7 +269,7 @@ static int __init mtd_stresstest_init(void) | |||
| 265 | tmp = mtd->size; | 269 | tmp = mtd->size; |
| 266 | do_div(tmp, mtd->erasesize); | 270 | do_div(tmp, mtd->erasesize); |
| 267 | ebcnt = tmp; | 271 | ebcnt = tmp; |
| 268 | pgcnt = mtd->erasesize / mtd->writesize; | 272 | pgcnt = mtd->erasesize / pgsize; |
| 269 | 273 | ||
| 270 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 274 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 271 | "page size %u, count of eraseblocks %u, pages per " | 275 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c index f237ddbb2713..111ea41c4ecd 100644 --- a/drivers/mtd/ubi/cdev.c +++ b/drivers/mtd/ubi/cdev.c | |||
| @@ -853,7 +853,6 @@ static long ubi_cdev_ioctl(struct file *file, unsigned int cmd, | |||
| 853 | break; | 853 | break; |
| 854 | } | 854 | } |
| 855 | 855 | ||
| 856 | req.name[req.name_len] = '\0'; | ||
| 857 | err = verify_mkvol_req(ubi, &req); | 856 | err = verify_mkvol_req(ubi, &req); |
| 858 | if (err) | 857 | if (err) |
| 859 | break; | 858 | break; |
diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c index 277786ebaa2c..1361574e2b00 100644 --- a/drivers/mtd/ubi/kapi.c +++ b/drivers/mtd/ubi/kapi.c | |||
| @@ -291,8 +291,7 @@ EXPORT_SYMBOL_GPL(ubi_open_volume_nm); | |||
| 291 | */ | 291 | */ |
| 292 | struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode) | 292 | struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode) |
| 293 | { | 293 | { |
| 294 | int error, ubi_num, vol_id; | 294 | int error, ubi_num, vol_id, mod; |
| 295 | struct ubi_volume_desc *ret; | ||
| 296 | struct inode *inode; | 295 | struct inode *inode; |
| 297 | struct path path; | 296 | struct path path; |
| 298 | 297 | ||
| @@ -306,16 +305,16 @@ struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode) | |||
| 306 | return ERR_PTR(error); | 305 | return ERR_PTR(error); |
| 307 | 306 | ||
| 308 | inode = path.dentry->d_inode; | 307 | inode = path.dentry->d_inode; |
| 308 | mod = inode->i_mode; | ||
| 309 | ubi_num = ubi_major2num(imajor(inode)); | 309 | ubi_num = ubi_major2num(imajor(inode)); |
| 310 | vol_id = iminor(inode) - 1; | 310 | vol_id = iminor(inode) - 1; |
| 311 | path_put(&path); | ||
| 311 | 312 | ||
| 313 | if (!S_ISCHR(mod)) | ||
| 314 | return ERR_PTR(-EINVAL); | ||
| 312 | if (vol_id >= 0 && ubi_num >= 0) | 315 | if (vol_id >= 0 && ubi_num >= 0) |
| 313 | ret = ubi_open_volume(ubi_num, vol_id, mode); | 316 | return ubi_open_volume(ubi_num, vol_id, mode); |
| 314 | else | 317 | return ERR_PTR(-ENODEV); |
| 315 | ret = ERR_PTR(-ENODEV); | ||
| 316 | |||
| 317 | path_put(&path); | ||
| 318 | return ret; | ||
| 319 | } | 318 | } |
| 320 | EXPORT_SYMBOL_GPL(ubi_open_volume_path); | 319 | EXPORT_SYMBOL_GPL(ubi_open_volume_path); |
| 321 | 320 | ||
diff --git a/drivers/mtd/ubi/upd.c b/drivers/mtd/ubi/upd.c index c1d7b880c795..425bf5a3edd4 100644 --- a/drivers/mtd/ubi/upd.c +++ b/drivers/mtd/ubi/upd.c | |||
| @@ -155,6 +155,7 @@ int ubi_start_update(struct ubi_device *ubi, struct ubi_volume *vol, | |||
| 155 | if (err) | 155 | if (err) |
| 156 | return err; | 156 | return err; |
| 157 | vol->updating = 0; | 157 | vol->updating = 0; |
| 158 | return 0; | ||
| 158 | } | 159 | } |
| 159 | 160 | ||
| 160 | vol->upd_buf = vmalloc(ubi->leb_size); | 161 | vol->upd_buf = vmalloc(ubi->leb_size); |
diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c index 1afc61e7455d..40044028d682 100644 --- a/drivers/mtd/ubi/vtbl.c +++ b/drivers/mtd/ubi/vtbl.c | |||
| @@ -566,6 +566,7 @@ static int init_volumes(struct ubi_device *ubi, const struct ubi_scan_info *si, | |||
| 566 | vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs); | 566 | vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs); |
| 567 | vol->alignment = be32_to_cpu(vtbl[i].alignment); | 567 | vol->alignment = be32_to_cpu(vtbl[i].alignment); |
| 568 | vol->data_pad = be32_to_cpu(vtbl[i].data_pad); | 568 | vol->data_pad = be32_to_cpu(vtbl[i].data_pad); |
| 569 | vol->upd_marker = vtbl[i].upd_marker; | ||
| 569 | vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ? | 570 | vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ? |
| 570 | UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME; | 571 | UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME; |
| 571 | vol->name_len = be16_to_cpu(vtbl[i].name_len); | 572 | vol->name_len = be16_to_cpu(vtbl[i].name_len); |
diff --git a/drivers/net/atarilance.c b/drivers/net/atarilance.c index c5721cb38265..cc9ed8643910 100644 --- a/drivers/net/atarilance.c +++ b/drivers/net/atarilance.c | |||
| @@ -663,7 +663,7 @@ static int lance_open( struct net_device *dev ) | |||
| 663 | while (--i > 0) | 663 | while (--i > 0) |
| 664 | if (DREG & CSR0_IDON) | 664 | if (DREG & CSR0_IDON) |
| 665 | break; | 665 | break; |
| 666 | if (i < 0 || (DREG & CSR0_ERR)) { | 666 | if (i <= 0 || (DREG & CSR0_ERR)) { |
| 667 | DPRINTK( 2, ( "lance_open(): opening %s failed, i=%d, csr0=%04x\n", | 667 | DPRINTK( 2, ( "lance_open(): opening %s failed, i=%d, csr0=%04x\n", |
| 668 | dev->name, i, DREG )); | 668 | dev->name, i, DREG )); |
| 669 | DREG = CSR0_STOP; | 669 | DREG = CSR0_STOP; |
diff --git a/drivers/net/atlx/atl2.c b/drivers/net/atlx/atl2.c index c0451d75cdcf..ec52529394ad 100644 --- a/drivers/net/atlx/atl2.c +++ b/drivers/net/atlx/atl2.c | |||
| @@ -1959,12 +1959,15 @@ static int atl2_get_eeprom(struct net_device *netdev, | |||
| 1959 | return -ENOMEM; | 1959 | return -ENOMEM; |
| 1960 | 1960 | ||
| 1961 | for (i = first_dword; i < last_dword; i++) { | 1961 | for (i = first_dword; i < last_dword; i++) { |
| 1962 | if (!atl2_read_eeprom(hw, i*4, &(eeprom_buff[i-first_dword]))) | 1962 | if (!atl2_read_eeprom(hw, i*4, &(eeprom_buff[i-first_dword]))) { |
| 1963 | return -EIO; | 1963 | ret_val = -EIO; |
| 1964 | goto free; | ||
| 1965 | } | ||
| 1964 | } | 1966 | } |
| 1965 | 1967 | ||
| 1966 | memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 3), | 1968 | memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 3), |
| 1967 | eeprom->len); | 1969 | eeprom->len); |
| 1970 | free: | ||
| 1968 | kfree(eeprom_buff); | 1971 | kfree(eeprom_buff); |
| 1969 | 1972 | ||
| 1970 | return ret_val; | 1973 | return ret_val; |
diff --git a/drivers/net/benet/be.h b/drivers/net/benet/be.h index 9fd8e5ecd5d7..5bc74590c73e 100644 --- a/drivers/net/benet/be.h +++ b/drivers/net/benet/be.h | |||
| @@ -276,8 +276,13 @@ struct be_adapter { | |||
| 276 | int link_speed; | 276 | int link_speed; |
| 277 | u8 port_type; | 277 | u8 port_type; |
| 278 | u8 transceiver; | 278 | u8 transceiver; |
| 279 | u8 generation; /* BladeEngine ASIC generation */ | ||
| 279 | }; | 280 | }; |
| 280 | 281 | ||
| 282 | /* BladeEngine Generation numbers */ | ||
| 283 | #define BE_GEN2 2 | ||
| 284 | #define BE_GEN3 3 | ||
| 285 | |||
| 281 | extern const struct ethtool_ops be_ethtool_ops; | 286 | extern const struct ethtool_ops be_ethtool_ops; |
| 282 | 287 | ||
| 283 | #define drvr_stats(adapter) (&adapter->stats.drvr_stats) | 288 | #define drvr_stats(adapter) (&adapter->stats.drvr_stats) |
diff --git a/drivers/net/benet/be_cmds.c b/drivers/net/benet/be_cmds.c index 102ade134165..fee6eee7ae5b 100644 --- a/drivers/net/benet/be_cmds.c +++ b/drivers/net/benet/be_cmds.c | |||
| @@ -286,7 +286,7 @@ static void be_wrb_hdr_prepare(struct be_mcc_wrb *wrb, int payload_len, | |||
| 286 | MCC_WRB_SGE_CNT_SHIFT; | 286 | MCC_WRB_SGE_CNT_SHIFT; |
| 287 | wrb->payload_length = payload_len; | 287 | wrb->payload_length = payload_len; |
| 288 | wrb->tag0 = opcode; | 288 | wrb->tag0 = opcode; |
| 289 | be_dws_cpu_to_le(wrb, 20); | 289 | be_dws_cpu_to_le(wrb, 8); |
| 290 | } | 290 | } |
| 291 | 291 | ||
| 292 | /* Don't touch the hdr after it's prepared */ | 292 | /* Don't touch the hdr after it's prepared */ |
diff --git a/drivers/net/benet/be_cmds.h b/drivers/net/benet/be_cmds.h index c002b8391b4d..13b33c841083 100644 --- a/drivers/net/benet/be_cmds.h +++ b/drivers/net/benet/be_cmds.h | |||
| @@ -164,7 +164,8 @@ struct be_cmd_req_hdr { | |||
| 164 | u8 domain; /* dword 0 */ | 164 | u8 domain; /* dword 0 */ |
| 165 | u32 timeout; /* dword 1 */ | 165 | u32 timeout; /* dword 1 */ |
| 166 | u32 request_length; /* dword 2 */ | 166 | u32 request_length; /* dword 2 */ |
| 167 | u32 rsvd; /* dword 3 */ | 167 | u8 version; /* dword 3 */ |
| 168 | u8 rsvd[3]; /* dword 3 */ | ||
| 168 | }; | 169 | }; |
| 169 | 170 | ||
| 170 | #define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */ | 171 | #define RESP_HDR_INFO_OPCODE_SHIFT 0 /* bits 0 - 7 */ |
diff --git a/drivers/net/benet/be_main.c b/drivers/net/benet/be_main.c index 3a1f7902c16d..626b76c0ebc7 100644 --- a/drivers/net/benet/be_main.c +++ b/drivers/net/benet/be_main.c | |||
| @@ -910,7 +910,7 @@ static inline struct page *be_alloc_pages(u32 size) | |||
| 910 | static void be_post_rx_frags(struct be_adapter *adapter) | 910 | static void be_post_rx_frags(struct be_adapter *adapter) |
| 911 | { | 911 | { |
| 912 | struct be_rx_page_info *page_info_tbl = adapter->rx_obj.page_info_tbl; | 912 | struct be_rx_page_info *page_info_tbl = adapter->rx_obj.page_info_tbl; |
| 913 | struct be_rx_page_info *page_info = NULL; | 913 | struct be_rx_page_info *page_info = NULL, *prev_page_info = NULL; |
| 914 | struct be_queue_info *rxq = &adapter->rx_obj.q; | 914 | struct be_queue_info *rxq = &adapter->rx_obj.q; |
| 915 | struct page *pagep = NULL; | 915 | struct page *pagep = NULL; |
| 916 | struct be_eth_rx_d *rxd; | 916 | struct be_eth_rx_d *rxd; |
| @@ -941,7 +941,6 @@ static void be_post_rx_frags(struct be_adapter *adapter) | |||
| 941 | rxd = queue_head_node(rxq); | 941 | rxd = queue_head_node(rxq); |
| 942 | rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF); | 942 | rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF); |
| 943 | rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr)); | 943 | rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr)); |
| 944 | queue_head_inc(rxq); | ||
| 945 | 944 | ||
| 946 | /* Any space left in the current big page for another frag? */ | 945 | /* Any space left in the current big page for another frag? */ |
| 947 | if ((page_offset + rx_frag_size + rx_frag_size) > | 946 | if ((page_offset + rx_frag_size + rx_frag_size) > |
| @@ -949,10 +948,13 @@ static void be_post_rx_frags(struct be_adapter *adapter) | |||
| 949 | pagep = NULL; | 948 | pagep = NULL; |
| 950 | page_info->last_page_user = true; | 949 | page_info->last_page_user = true; |
| 951 | } | 950 | } |
| 951 | |||
| 952 | prev_page_info = page_info; | ||
| 953 | queue_head_inc(rxq); | ||
| 952 | page_info = &page_info_tbl[rxq->head]; | 954 | page_info = &page_info_tbl[rxq->head]; |
| 953 | } | 955 | } |
| 954 | if (pagep) | 956 | if (pagep) |
| 955 | page_info->last_page_user = true; | 957 | prev_page_info->last_page_user = true; |
| 956 | 958 | ||
| 957 | if (posted) { | 959 | if (posted) { |
| 958 | atomic_add(posted, &rxq->used); | 960 | atomic_add(posted, &rxq->used); |
| @@ -1348,7 +1350,7 @@ static irqreturn_t be_intx(int irq, void *dev) | |||
| 1348 | int isr; | 1350 | int isr; |
| 1349 | 1351 | ||
| 1350 | isr = ioread32(adapter->csr + CEV_ISR0_OFFSET + | 1352 | isr = ioread32(adapter->csr + CEV_ISR0_OFFSET + |
| 1351 | be_pci_func(adapter) * CEV_ISR_SIZE); | 1353 | (adapter->tx_eq.q.id/ 8) * CEV_ISR_SIZE); |
| 1352 | if (!isr) | 1354 | if (!isr) |
| 1353 | return IRQ_NONE; | 1355 | return IRQ_NONE; |
| 1354 | 1356 | ||
| @@ -2049,6 +2051,7 @@ static void be_unmap_pci_bars(struct be_adapter *adapter) | |||
| 2049 | static int be_map_pci_bars(struct be_adapter *adapter) | 2051 | static int be_map_pci_bars(struct be_adapter *adapter) |
| 2050 | { | 2052 | { |
| 2051 | u8 __iomem *addr; | 2053 | u8 __iomem *addr; |
| 2054 | int pcicfg_reg; | ||
| 2052 | 2055 | ||
| 2053 | addr = ioremap_nocache(pci_resource_start(adapter->pdev, 2), | 2056 | addr = ioremap_nocache(pci_resource_start(adapter->pdev, 2), |
| 2054 | pci_resource_len(adapter->pdev, 2)); | 2057 | pci_resource_len(adapter->pdev, 2)); |
| @@ -2062,8 +2065,13 @@ static int be_map_pci_bars(struct be_adapter *adapter) | |||
| 2062 | goto pci_map_err; | 2065 | goto pci_map_err; |
| 2063 | adapter->db = addr; | 2066 | adapter->db = addr; |
| 2064 | 2067 | ||
| 2065 | addr = ioremap_nocache(pci_resource_start(adapter->pdev, 1), | 2068 | if (adapter->generation == BE_GEN2) |
| 2066 | pci_resource_len(adapter->pdev, 1)); | 2069 | pcicfg_reg = 1; |
| 2070 | else | ||
| 2071 | pcicfg_reg = 0; | ||
| 2072 | |||
| 2073 | addr = ioremap_nocache(pci_resource_start(adapter->pdev, pcicfg_reg), | ||
| 2074 | pci_resource_len(adapter->pdev, pcicfg_reg)); | ||
| 2067 | if (addr == NULL) | 2075 | if (addr == NULL) |
| 2068 | goto pci_map_err; | 2076 | goto pci_map_err; |
| 2069 | adapter->pcicfg = addr; | 2077 | adapter->pcicfg = addr; |
| @@ -2160,6 +2168,7 @@ static int be_stats_init(struct be_adapter *adapter) | |||
| 2160 | cmd->va = pci_alloc_consistent(adapter->pdev, cmd->size, &cmd->dma); | 2168 | cmd->va = pci_alloc_consistent(adapter->pdev, cmd->size, &cmd->dma); |
| 2161 | if (cmd->va == NULL) | 2169 | if (cmd->va == NULL) |
| 2162 | return -1; | 2170 | return -1; |
| 2171 | memset(cmd->va, 0, cmd->size); | ||
| 2163 | return 0; | 2172 | return 0; |
| 2164 | } | 2173 | } |
| 2165 | 2174 | ||
| @@ -2238,6 +2247,20 @@ static int __devinit be_probe(struct pci_dev *pdev, | |||
| 2238 | goto rel_reg; | 2247 | goto rel_reg; |
| 2239 | } | 2248 | } |
| 2240 | adapter = netdev_priv(netdev); | 2249 | adapter = netdev_priv(netdev); |
| 2250 | |||
| 2251 | switch (pdev->device) { | ||
| 2252 | case BE_DEVICE_ID1: | ||
| 2253 | case OC_DEVICE_ID1: | ||
| 2254 | adapter->generation = BE_GEN2; | ||
| 2255 | break; | ||
| 2256 | case BE_DEVICE_ID2: | ||
| 2257 | case OC_DEVICE_ID2: | ||
| 2258 | adapter->generation = BE_GEN3; | ||
| 2259 | break; | ||
| 2260 | default: | ||
| 2261 | adapter->generation = 0; | ||
| 2262 | } | ||
| 2263 | |||
| 2241 | adapter->pdev = pdev; | 2264 | adapter->pdev = pdev; |
| 2242 | pci_set_drvdata(pdev, adapter); | 2265 | pci_set_drvdata(pdev, adapter); |
| 2243 | adapter->netdev = netdev; | 2266 | adapter->netdev = netdev; |
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index 8ffea3990d07..0b23bc4f56c6 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <asm/dma.h> | 33 | #include <asm/dma.h> |
| 34 | #include <linux/dma-mapping.h> | 34 | #include <linux/dma-mapping.h> |
| 35 | 35 | ||
| 36 | #include <asm/dpmc.h> | ||
| 36 | #include <asm/blackfin.h> | 37 | #include <asm/blackfin.h> |
| 37 | #include <asm/cacheflush.h> | 38 | #include <asm/cacheflush.h> |
| 38 | #include <asm/portmux.h> | 39 | #include <asm/portmux.h> |
| @@ -386,8 +387,8 @@ static int mii_probe(struct net_device *dev) | |||
| 386 | u32 sclk, mdc_div; | 387 | u32 sclk, mdc_div; |
| 387 | 388 | ||
| 388 | /* Enable PHY output early */ | 389 | /* Enable PHY output early */ |
| 389 | if (!(bfin_read_VR_CTL() & PHYCLKOE)) | 390 | if (!(bfin_read_VR_CTL() & CLKBUFOE)) |
| 390 | bfin_write_VR_CTL(bfin_read_VR_CTL() | PHYCLKOE); | 391 | bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE); |
| 391 | 392 | ||
| 392 | sclk = get_sclk(); | 393 | sclk = get_sclk(); |
| 393 | mdc_div = ((sclk / MDC_CLK) / 2) - 1; | 394 | mdc_div = ((sclk / MDC_CLK) / 2) - 1; |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 3f0071cfe56b..efa0e41bf3ec 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
| @@ -3639,7 +3639,7 @@ static int bond_open(struct net_device *bond_dev) | |||
| 3639 | */ | 3639 | */ |
| 3640 | if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) { | 3640 | if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) { |
| 3641 | /* something went wrong - fail the open operation */ | 3641 | /* something went wrong - fail the open operation */ |
| 3642 | return -1; | 3642 | return -ENOMEM; |
| 3643 | } | 3643 | } |
| 3644 | 3644 | ||
| 3645 | INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor); | 3645 | INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor); |
diff --git a/drivers/net/can/mcp251x.c b/drivers/net/can/mcp251x.c index 9c5a1537939c..1a72ca066a17 100644 --- a/drivers/net/can/mcp251x.c +++ b/drivers/net/can/mcp251x.c | |||
| @@ -990,7 +990,7 @@ static int __devinit mcp251x_can_probe(struct spi_device *spi) | |||
| 990 | goto error_tx_buf; | 990 | goto error_tx_buf; |
| 991 | } | 991 | } |
| 992 | priv->spi_rx_buf = kmalloc(SPI_TRANSFER_BUF_LEN, GFP_KERNEL); | 992 | priv->spi_rx_buf = kmalloc(SPI_TRANSFER_BUF_LEN, GFP_KERNEL); |
| 993 | if (!priv->spi_tx_buf) { | 993 | if (!priv->spi_rx_buf) { |
| 994 | ret = -ENOMEM; | 994 | ret = -ENOMEM; |
| 995 | goto error_rx_buf; | 995 | goto error_rx_buf; |
| 996 | } | 996 | } |
diff --git a/drivers/net/cs89x0.c b/drivers/net/cs89x0.c index af9321617ce4..0e79cef95c0a 100644 --- a/drivers/net/cs89x0.c +++ b/drivers/net/cs89x0.c | |||
| @@ -1325,8 +1325,7 @@ net_open(struct net_device *dev) | |||
| 1325 | write_irq(dev, lp->chip_type, dev->irq); | 1325 | write_irq(dev, lp->chip_type, dev->irq); |
| 1326 | ret = request_irq(dev->irq, net_interrupt, 0, dev->name, dev); | 1326 | ret = request_irq(dev->irq, net_interrupt, 0, dev->name, dev); |
| 1327 | if (ret) { | 1327 | if (ret) { |
| 1328 | if (net_debug) | 1328 | printk(KERN_ERR "cs89x0: request_irq(%d) failed\n", dev->irq); |
| 1329 | printk(KERN_DEBUG "cs89x0: request_irq(%d) failed\n", dev->irq); | ||
| 1330 | goto bad_out; | 1329 | goto bad_out; |
| 1331 | } | 1330 | } |
| 1332 | } | 1331 | } |
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c index 34e03104c3c1..33c4fe26178c 100644 --- a/drivers/net/davinci_emac.c +++ b/drivers/net/davinci_emac.c | |||
| @@ -2711,6 +2711,8 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev) | |||
| 2711 | SET_ETHTOOL_OPS(ndev, ðtool_ops); | 2711 | SET_ETHTOOL_OPS(ndev, ðtool_ops); |
| 2712 | netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT); | 2712 | netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT); |
| 2713 | 2713 | ||
| 2714 | clk_enable(emac_clk); | ||
| 2715 | |||
| 2714 | /* register the network device */ | 2716 | /* register the network device */ |
| 2715 | SET_NETDEV_DEV(ndev, &pdev->dev); | 2717 | SET_NETDEV_DEV(ndev, &pdev->dev); |
| 2716 | rc = register_netdev(ndev); | 2718 | rc = register_netdev(ndev); |
| @@ -2720,7 +2722,6 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev) | |||
| 2720 | goto netdev_reg_err; | 2722 | goto netdev_reg_err; |
| 2721 | } | 2723 | } |
| 2722 | 2724 | ||
| 2723 | clk_enable(emac_clk); | ||
| 2724 | 2725 | ||
| 2725 | /* MII/Phy intialisation, mdio bus registration */ | 2726 | /* MII/Phy intialisation, mdio bus registration */ |
| 2726 | emac_mii = mdiobus_alloc(); | 2727 | emac_mii = mdiobus_alloc(); |
| @@ -2760,6 +2761,7 @@ mdiobus_quit: | |||
| 2760 | 2761 | ||
| 2761 | netdev_reg_err: | 2762 | netdev_reg_err: |
| 2762 | mdio_alloc_err: | 2763 | mdio_alloc_err: |
| 2764 | clk_disable(emac_clk); | ||
| 2763 | no_irq_res: | 2765 | no_irq_res: |
| 2764 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 2766 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 2765 | release_mem_region(res->start, res->end - res->start + 1); | 2767 | release_mem_region(res->start, res->end - res->start + 1); |
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index 2a567df3ea71..e8932db7ee77 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h | |||
| @@ -326,6 +326,8 @@ struct e1000_adapter { | |||
| 326 | /* for ioport free */ | 326 | /* for ioport free */ |
| 327 | int bars; | 327 | int bars; |
| 328 | int need_ioport; | 328 | int need_ioport; |
| 329 | |||
| 330 | bool discarding; | ||
| 329 | }; | 331 | }; |
| 330 | 332 | ||
| 331 | enum e1000_state_t { | 333 | enum e1000_state_t { |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index 7e855f9bbd97..d29bb532eccf 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
| @@ -1698,18 +1698,6 @@ static void e1000_setup_rctl(struct e1000_adapter *adapter) | |||
| 1698 | rctl &= ~E1000_RCTL_SZ_4096; | 1698 | rctl &= ~E1000_RCTL_SZ_4096; |
| 1699 | rctl |= E1000_RCTL_BSEX; | 1699 | rctl |= E1000_RCTL_BSEX; |
| 1700 | switch (adapter->rx_buffer_len) { | 1700 | switch (adapter->rx_buffer_len) { |
| 1701 | case E1000_RXBUFFER_256: | ||
| 1702 | rctl |= E1000_RCTL_SZ_256; | ||
| 1703 | rctl &= ~E1000_RCTL_BSEX; | ||
| 1704 | break; | ||
| 1705 | case E1000_RXBUFFER_512: | ||
| 1706 | rctl |= E1000_RCTL_SZ_512; | ||
| 1707 | rctl &= ~E1000_RCTL_BSEX; | ||
| 1708 | break; | ||
| 1709 | case E1000_RXBUFFER_1024: | ||
| 1710 | rctl |= E1000_RCTL_SZ_1024; | ||
| 1711 | rctl &= ~E1000_RCTL_BSEX; | ||
| 1712 | break; | ||
| 1713 | case E1000_RXBUFFER_2048: | 1701 | case E1000_RXBUFFER_2048: |
| 1714 | default: | 1702 | default: |
| 1715 | rctl |= E1000_RCTL_SZ_2048; | 1703 | rctl |= E1000_RCTL_SZ_2048; |
| @@ -2802,13 +2790,13 @@ static int e1000_tx_map(struct e1000_adapter *adapter, | |||
| 2802 | dma_error: | 2790 | dma_error: |
| 2803 | dev_err(&pdev->dev, "TX DMA map failed\n"); | 2791 | dev_err(&pdev->dev, "TX DMA map failed\n"); |
| 2804 | buffer_info->dma = 0; | 2792 | buffer_info->dma = 0; |
| 2805 | count--; | 2793 | if (count) |
| 2806 | |||
| 2807 | while (count >= 0) { | ||
| 2808 | count--; | 2794 | count--; |
| 2809 | i--; | 2795 | |
| 2810 | if (i < 0) | 2796 | while (count--) { |
| 2797 | if (i==0) | ||
| 2811 | i += tx_ring->count; | 2798 | i += tx_ring->count; |
| 2799 | i--; | ||
| 2812 | buffer_info = &tx_ring->buffer_info[i]; | 2800 | buffer_info = &tx_ring->buffer_info[i]; |
| 2813 | e1000_unmap_and_free_tx_resource(adapter, buffer_info); | 2801 | e1000_unmap_and_free_tx_resource(adapter, buffer_info); |
| 2814 | } | 2802 | } |
| @@ -3176,13 +3164,7 @@ static int e1000_change_mtu(struct net_device *netdev, int new_mtu) | |||
| 3176 | * however with the new *_jumbo_rx* routines, jumbo receives will use | 3164 | * however with the new *_jumbo_rx* routines, jumbo receives will use |
| 3177 | * fragmented skbs */ | 3165 | * fragmented skbs */ |
| 3178 | 3166 | ||
| 3179 | if (max_frame <= E1000_RXBUFFER_256) | 3167 | if (max_frame <= E1000_RXBUFFER_2048) |
| 3180 | adapter->rx_buffer_len = E1000_RXBUFFER_256; | ||
| 3181 | else if (max_frame <= E1000_RXBUFFER_512) | ||
| 3182 | adapter->rx_buffer_len = E1000_RXBUFFER_512; | ||
| 3183 | else if (max_frame <= E1000_RXBUFFER_1024) | ||
| 3184 | adapter->rx_buffer_len = E1000_RXBUFFER_1024; | ||
| 3185 | else if (max_frame <= E1000_RXBUFFER_2048) | ||
| 3186 | adapter->rx_buffer_len = E1000_RXBUFFER_2048; | 3168 | adapter->rx_buffer_len = E1000_RXBUFFER_2048; |
| 3187 | else | 3169 | else |
| 3188 | #if (PAGE_SIZE >= E1000_RXBUFFER_16384) | 3170 | #if (PAGE_SIZE >= E1000_RXBUFFER_16384) |
| @@ -3850,13 +3832,22 @@ static bool e1000_clean_rx_irq(struct e1000_adapter *adapter, | |||
| 3850 | 3832 | ||
| 3851 | length = le16_to_cpu(rx_desc->length); | 3833 | length = le16_to_cpu(rx_desc->length); |
| 3852 | /* !EOP means multiple descriptors were used to store a single | 3834 | /* !EOP means multiple descriptors were used to store a single |
| 3853 | * packet, also make sure the frame isn't just CRC only */ | 3835 | * packet, if thats the case we need to toss it. In fact, we |
| 3854 | if (unlikely(!(status & E1000_RXD_STAT_EOP) || (length <= 4))) { | 3836 | * to toss every packet with the EOP bit clear and the next |
| 3837 | * frame that _does_ have the EOP bit set, as it is by | ||
| 3838 | * definition only a frame fragment | ||
| 3839 | */ | ||
| 3840 | if (unlikely(!(status & E1000_RXD_STAT_EOP))) | ||
| 3841 | adapter->discarding = true; | ||
| 3842 | |||
| 3843 | if (adapter->discarding) { | ||
| 3855 | /* All receives must fit into a single buffer */ | 3844 | /* All receives must fit into a single buffer */ |
| 3856 | E1000_DBG("%s: Receive packet consumed multiple" | 3845 | E1000_DBG("%s: Receive packet consumed multiple" |
| 3857 | " buffers\n", netdev->name); | 3846 | " buffers\n", netdev->name); |
| 3858 | /* recycle */ | 3847 | /* recycle */ |
| 3859 | buffer_info->skb = skb; | 3848 | buffer_info->skb = skb; |
| 3849 | if (status & E1000_RXD_STAT_EOP) | ||
| 3850 | adapter->discarding = false; | ||
| 3860 | goto next_desc; | 3851 | goto next_desc; |
| 3861 | } | 3852 | } |
| 3862 | 3853 | ||
diff --git a/drivers/net/e1000e/82571.c b/drivers/net/e1000e/82571.c index b979464091bb..02d67d047d96 100644 --- a/drivers/net/e1000e/82571.c +++ b/drivers/net/e1000e/82571.c | |||
| @@ -237,6 +237,8 @@ static s32 e1000_init_mac_params_82571(struct e1000_adapter *adapter) | |||
| 237 | /* Set if manageability features are enabled. */ | 237 | /* Set if manageability features are enabled. */ |
| 238 | mac->arc_subsystem_valid = (er32(FWSM) & E1000_FWSM_MODE_MASK) | 238 | mac->arc_subsystem_valid = (er32(FWSM) & E1000_FWSM_MODE_MASK) |
| 239 | ? true : false; | 239 | ? true : false; |
| 240 | /* Adaptive IFS supported */ | ||
| 241 | mac->adaptive_ifs = true; | ||
| 240 | 242 | ||
| 241 | /* check for link */ | 243 | /* check for link */ |
| 242 | switch (hw->phy.media_type) { | 244 | switch (hw->phy.media_type) { |
diff --git a/drivers/net/e1000e/e1000.h b/drivers/net/e1000e/e1000.h index cebbd9079d53..d236efaf7478 100644 --- a/drivers/net/e1000e/e1000.h +++ b/drivers/net/e1000e/e1000.h | |||
| @@ -421,6 +421,7 @@ struct e1000_info { | |||
| 421 | /* CRC Stripping defines */ | 421 | /* CRC Stripping defines */ |
| 422 | #define FLAG2_CRC_STRIPPING (1 << 0) | 422 | #define FLAG2_CRC_STRIPPING (1 << 0) |
| 423 | #define FLAG2_HAS_PHY_WAKEUP (1 << 1) | 423 | #define FLAG2_HAS_PHY_WAKEUP (1 << 1) |
| 424 | #define FLAG2_IS_DISCARDING (1 << 2) | ||
| 424 | 425 | ||
| 425 | #define E1000_RX_DESC_PS(R, i) \ | 426 | #define E1000_RX_DESC_PS(R, i) \ |
| 426 | (&(((union e1000_rx_desc_packet_split *)((R).desc))[i])) | 427 | (&(((union e1000_rx_desc_packet_split *)((R).desc))[i])) |
| @@ -582,7 +583,6 @@ extern s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, | |||
| 582 | extern s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data); | 583 | extern s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data); |
| 583 | extern s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, | 584 | extern s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, |
| 584 | u16 data); | 585 | u16 data); |
| 585 | extern s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw, bool slow); | ||
| 586 | extern s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw); | 586 | extern s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw); |
| 587 | extern s32 e1000_copper_link_setup_82577(struct e1000_hw *hw); | 587 | extern s32 e1000_copper_link_setup_82577(struct e1000_hw *hw); |
| 588 | extern s32 e1000_check_polarity_82577(struct e1000_hw *hw); | 588 | extern s32 e1000_check_polarity_82577(struct e1000_hw *hw); |
diff --git a/drivers/net/e1000e/es2lan.c b/drivers/net/e1000e/es2lan.c index 3028f23da891..e2aa3b788564 100644 --- a/drivers/net/e1000e/es2lan.c +++ b/drivers/net/e1000e/es2lan.c | |||
| @@ -224,6 +224,8 @@ static s32 e1000_init_mac_params_80003es2lan(struct e1000_adapter *adapter) | |||
| 224 | /* Set if manageability features are enabled. */ | 224 | /* Set if manageability features are enabled. */ |
| 225 | mac->arc_subsystem_valid = (er32(FWSM) & E1000_FWSM_MODE_MASK) | 225 | mac->arc_subsystem_valid = (er32(FWSM) & E1000_FWSM_MODE_MASK) |
| 226 | ? true : false; | 226 | ? true : false; |
| 227 | /* Adaptive IFS not supported */ | ||
| 228 | mac->adaptive_ifs = false; | ||
| 227 | 229 | ||
| 228 | /* check for link */ | 230 | /* check for link */ |
| 229 | switch (hw->phy.media_type) { | 231 | switch (hw->phy.media_type) { |
diff --git a/drivers/net/e1000e/hw.h b/drivers/net/e1000e/hw.h index 2784cf44a6f3..eccf29b75c41 100644 --- a/drivers/net/e1000e/hw.h +++ b/drivers/net/e1000e/hw.h | |||
| @@ -818,6 +818,7 @@ struct e1000_mac_info { | |||
| 818 | 818 | ||
| 819 | u8 forced_speed_duplex; | 819 | u8 forced_speed_duplex; |
| 820 | 820 | ||
| 821 | bool adaptive_ifs; | ||
| 821 | bool arc_subsystem_valid; | 822 | bool arc_subsystem_valid; |
| 822 | bool autoneg; | 823 | bool autoneg; |
| 823 | bool autoneg_failed; | 824 | bool autoneg_failed; |
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c index 9b09246af064..8b6ecd127889 100644 --- a/drivers/net/e1000e/ich8lan.c +++ b/drivers/net/e1000e/ich8lan.c | |||
| @@ -138,6 +138,10 @@ | |||
| 138 | #define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */ | 138 | #define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */ |
| 139 | #define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */ | 139 | #define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */ |
| 140 | 140 | ||
| 141 | /* KMRN Mode Control */ | ||
| 142 | #define HV_KMRN_MODE_CTRL PHY_REG(769, 16) | ||
| 143 | #define HV_KMRN_MDIO_SLOW 0x0400 | ||
| 144 | |||
| 141 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ | 145 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ |
| 142 | /* Offset 04h HSFSTS */ | 146 | /* Offset 04h HSFSTS */ |
| 143 | union ich8_hws_flash_status { | 147 | union ich8_hws_flash_status { |
| @@ -219,6 +223,7 @@ static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active); | |||
| 219 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw); | 223 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw); |
| 220 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw); | 224 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw); |
| 221 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link); | 225 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link); |
| 226 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw); | ||
| 222 | 227 | ||
| 223 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) | 228 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) |
| 224 | { | 229 | { |
| @@ -270,7 +275,21 @@ static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw) | |||
| 270 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; | 275 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
| 271 | 276 | ||
| 272 | phy->id = e1000_phy_unknown; | 277 | phy->id = e1000_phy_unknown; |
| 273 | e1000e_get_phy_id(hw); | 278 | ret_val = e1000e_get_phy_id(hw); |
| 279 | if (ret_val) | ||
| 280 | goto out; | ||
| 281 | if ((phy->id == 0) || (phy->id == PHY_REVISION_MASK)) { | ||
| 282 | /* | ||
| 283 | * In case the PHY needs to be in mdio slow mode (eg. 82577), | ||
| 284 | * set slow mode and try to get the PHY id again. | ||
| 285 | */ | ||
| 286 | ret_val = e1000_set_mdio_slow_mode_hv(hw); | ||
| 287 | if (ret_val) | ||
| 288 | goto out; | ||
| 289 | ret_val = e1000e_get_phy_id(hw); | ||
| 290 | if (ret_val) | ||
| 291 | goto out; | ||
| 292 | } | ||
| 274 | phy->type = e1000e_get_phy_type_from_id(phy->id); | 293 | phy->type = e1000e_get_phy_type_from_id(phy->id); |
| 275 | 294 | ||
| 276 | switch (phy->type) { | 295 | switch (phy->type) { |
| @@ -292,6 +311,7 @@ static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw) | |||
| 292 | break; | 311 | break; |
| 293 | } | 312 | } |
| 294 | 313 | ||
| 314 | out: | ||
| 295 | return ret_val; | 315 | return ret_val; |
| 296 | } | 316 | } |
| 297 | 317 | ||
| @@ -454,6 +474,8 @@ static s32 e1000_init_mac_params_ich8lan(struct e1000_adapter *adapter) | |||
| 454 | mac->rar_entry_count--; | 474 | mac->rar_entry_count--; |
| 455 | /* Set if manageability features are enabled. */ | 475 | /* Set if manageability features are enabled. */ |
| 456 | mac->arc_subsystem_valid = true; | 476 | mac->arc_subsystem_valid = true; |
| 477 | /* Adaptive IFS supported */ | ||
| 478 | mac->adaptive_ifs = true; | ||
| 457 | 479 | ||
| 458 | /* LED operations */ | 480 | /* LED operations */ |
| 459 | switch (mac->type) { | 481 | switch (mac->type) { |
| @@ -1074,16 +1096,44 @@ out: | |||
| 1074 | 1096 | ||
| 1075 | 1097 | ||
| 1076 | /** | 1098 | /** |
| 1099 | * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode | ||
| 1100 | * @hw: pointer to the HW structure | ||
| 1101 | **/ | ||
| 1102 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw) | ||
| 1103 | { | ||
| 1104 | s32 ret_val; | ||
| 1105 | u16 data; | ||
| 1106 | |||
| 1107 | ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data); | ||
| 1108 | if (ret_val) | ||
| 1109 | return ret_val; | ||
| 1110 | |||
| 1111 | data |= HV_KMRN_MDIO_SLOW; | ||
| 1112 | |||
| 1113 | ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data); | ||
| 1114 | |||
| 1115 | return ret_val; | ||
| 1116 | } | ||
| 1117 | |||
| 1118 | /** | ||
| 1077 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be | 1119 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 1078 | * done after every PHY reset. | 1120 | * done after every PHY reset. |
| 1079 | **/ | 1121 | **/ |
| 1080 | static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) | 1122 | static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) |
| 1081 | { | 1123 | { |
| 1082 | s32 ret_val = 0; | 1124 | s32 ret_val = 0; |
| 1125 | u16 phy_data; | ||
| 1083 | 1126 | ||
| 1084 | if (hw->mac.type != e1000_pchlan) | 1127 | if (hw->mac.type != e1000_pchlan) |
| 1085 | return ret_val; | 1128 | return ret_val; |
| 1086 | 1129 | ||
| 1130 | /* Set MDIO slow mode before any other MDIO access */ | ||
| 1131 | if (hw->phy.type == e1000_phy_82577) { | ||
| 1132 | ret_val = e1000_set_mdio_slow_mode_hv(hw); | ||
| 1133 | if (ret_val) | ||
| 1134 | goto out; | ||
| 1135 | } | ||
| 1136 | |||
| 1087 | if (((hw->phy.type == e1000_phy_82577) && | 1137 | if (((hw->phy.type == e1000_phy_82577) && |
| 1088 | ((hw->phy.revision == 1) || (hw->phy.revision == 2))) || | 1138 | ((hw->phy.revision == 1) || (hw->phy.revision == 2))) || |
| 1089 | ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) { | 1139 | ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) { |
| @@ -1116,16 +1166,32 @@ static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) | |||
| 1116 | 1166 | ||
| 1117 | hw->phy.addr = 1; | 1167 | hw->phy.addr = 1; |
| 1118 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); | 1168 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); |
| 1169 | hw->phy.ops.release(hw); | ||
| 1119 | if (ret_val) | 1170 | if (ret_val) |
| 1120 | goto out; | 1171 | goto out; |
| 1121 | hw->phy.ops.release(hw); | ||
| 1122 | 1172 | ||
| 1123 | /* | 1173 | /* |
| 1124 | * Configure the K1 Si workaround during phy reset assuming there is | 1174 | * Configure the K1 Si workaround during phy reset assuming there is |
| 1125 | * link so that it disables K1 if link is in 1Gbps. | 1175 | * link so that it disables K1 if link is in 1Gbps. |
| 1126 | */ | 1176 | */ |
| 1127 | ret_val = e1000_k1_gig_workaround_hv(hw, true); | 1177 | ret_val = e1000_k1_gig_workaround_hv(hw, true); |
| 1178 | if (ret_val) | ||
| 1179 | goto out; | ||
| 1128 | 1180 | ||
| 1181 | /* Workaround for link disconnects on a busy hub in half duplex */ | ||
| 1182 | ret_val = hw->phy.ops.acquire(hw); | ||
| 1183 | if (ret_val) | ||
| 1184 | goto out; | ||
| 1185 | ret_val = hw->phy.ops.read_reg_locked(hw, | ||
| 1186 | PHY_REG(BM_PORT_CTRL_PAGE, 17), | ||
| 1187 | &phy_data); | ||
| 1188 | if (ret_val) | ||
| 1189 | goto release; | ||
| 1190 | ret_val = hw->phy.ops.write_reg_locked(hw, | ||
| 1191 | PHY_REG(BM_PORT_CTRL_PAGE, 17), | ||
| 1192 | phy_data & 0x00FF); | ||
| 1193 | release: | ||
| 1194 | hw->phy.ops.release(hw); | ||
| 1129 | out: | 1195 | out: |
| 1130 | return ret_val; | 1196 | return ret_val; |
| 1131 | } | 1197 | } |
| @@ -1182,6 +1248,7 @@ static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) | |||
| 1182 | /* Allow time for h/w to get to a quiescent state after reset */ | 1248 | /* Allow time for h/w to get to a quiescent state after reset */ |
| 1183 | mdelay(10); | 1249 | mdelay(10); |
| 1184 | 1250 | ||
| 1251 | /* Perform any necessary post-reset workarounds */ | ||
| 1185 | if (hw->mac.type == e1000_pchlan) { | 1252 | if (hw->mac.type == e1000_pchlan) { |
| 1186 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); | 1253 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); |
| 1187 | if (ret_val) | 1254 | if (ret_val) |
| @@ -2482,6 +2549,10 @@ static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | |||
| 2482 | if (!ret_val) | 2549 | if (!ret_val) |
| 2483 | e1000_release_swflag_ich8lan(hw); | 2550 | e1000_release_swflag_ich8lan(hw); |
| 2484 | 2551 | ||
| 2552 | /* Perform any necessary post-reset workarounds */ | ||
| 2553 | if (hw->mac.type == e1000_pchlan) | ||
| 2554 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); | ||
| 2555 | |||
| 2485 | if (ctrl & E1000_CTRL_PHY_RST) | 2556 | if (ctrl & E1000_CTRL_PHY_RST) |
| 2486 | ret_val = hw->phy.ops.get_cfg_done(hw); | 2557 | ret_val = hw->phy.ops.get_cfg_done(hw); |
| 2487 | 2558 | ||
| @@ -2526,9 +2597,6 @@ static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | |||
| 2526 | kab |= E1000_KABGTXD_BGSQLBIAS; | 2597 | kab |= E1000_KABGTXD_BGSQLBIAS; |
| 2527 | ew32(KABGTXD, kab); | 2598 | ew32(KABGTXD, kab); |
| 2528 | 2599 | ||
| 2529 | if (hw->mac.type == e1000_pchlan) | ||
| 2530 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); | ||
| 2531 | |||
| 2532 | out: | 2600 | out: |
| 2533 | return ret_val; | 2601 | return ret_val; |
| 2534 | } | 2602 | } |
diff --git a/drivers/net/e1000e/lib.c b/drivers/net/e1000e/lib.c index a86c17548c1e..2fa9b36a2c5a 100644 --- a/drivers/net/e1000e/lib.c +++ b/drivers/net/e1000e/lib.c | |||
| @@ -125,6 +125,7 @@ void e1000_write_vfta_generic(struct e1000_hw *hw, u32 offset, u32 value) | |||
| 125 | void e1000e_init_rx_addrs(struct e1000_hw *hw, u16 rar_count) | 125 | void e1000e_init_rx_addrs(struct e1000_hw *hw, u16 rar_count) |
| 126 | { | 126 | { |
| 127 | u32 i; | 127 | u32 i; |
| 128 | u8 mac_addr[ETH_ALEN] = {0}; | ||
| 128 | 129 | ||
| 129 | /* Setup the receive address */ | 130 | /* Setup the receive address */ |
| 130 | e_dbg("Programming MAC Address into RAR[0]\n"); | 131 | e_dbg("Programming MAC Address into RAR[0]\n"); |
| @@ -133,12 +134,8 @@ void e1000e_init_rx_addrs(struct e1000_hw *hw, u16 rar_count) | |||
| 133 | 134 | ||
| 134 | /* Zero out the other (rar_entry_count - 1) receive addresses */ | 135 | /* Zero out the other (rar_entry_count - 1) receive addresses */ |
| 135 | e_dbg("Clearing RAR[1-%u]\n", rar_count-1); | 136 | e_dbg("Clearing RAR[1-%u]\n", rar_count-1); |
| 136 | for (i = 1; i < rar_count; i++) { | 137 | for (i = 1; i < rar_count; i++) |
| 137 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, (i << 1), 0); | 138 | e1000e_rar_set(hw, mac_addr, i); |
| 138 | e1e_flush(); | ||
| 139 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, ((i << 1) + 1), 0); | ||
| 140 | e1e_flush(); | ||
| 141 | } | ||
| 142 | } | 139 | } |
| 143 | 140 | ||
| 144 | /** | 141 | /** |
| @@ -164,10 +161,19 @@ void e1000e_rar_set(struct e1000_hw *hw, u8 *addr, u32 index) | |||
| 164 | 161 | ||
| 165 | rar_high = ((u32) addr[4] | ((u32) addr[5] << 8)); | 162 | rar_high = ((u32) addr[4] | ((u32) addr[5] << 8)); |
| 166 | 163 | ||
| 167 | rar_high |= E1000_RAH_AV; | 164 | /* If MAC address zero, no need to set the AV bit */ |
| 165 | if (rar_low || rar_high) | ||
| 166 | rar_high |= E1000_RAH_AV; | ||
| 168 | 167 | ||
| 169 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, (index << 1), rar_low); | 168 | /* |
| 170 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, ((index << 1) + 1), rar_high); | 169 | * Some bridges will combine consecutive 32-bit writes into |
| 170 | * a single burst write, which will malfunction on some parts. | ||
| 171 | * The flushes avoid this. | ||
| 172 | */ | ||
| 173 | ew32(RAL(index), rar_low); | ||
| 174 | e1e_flush(); | ||
| 175 | ew32(RAH(index), rar_high); | ||
| 176 | e1e_flush(); | ||
| 171 | } | 177 | } |
| 172 | 178 | ||
| 173 | /** | 179 | /** |
| @@ -1609,6 +1615,11 @@ void e1000e_reset_adaptive(struct e1000_hw *hw) | |||
| 1609 | { | 1615 | { |
| 1610 | struct e1000_mac_info *mac = &hw->mac; | 1616 | struct e1000_mac_info *mac = &hw->mac; |
| 1611 | 1617 | ||
| 1618 | if (!mac->adaptive_ifs) { | ||
| 1619 | e_dbg("Not in Adaptive IFS mode!\n"); | ||
| 1620 | goto out; | ||
| 1621 | } | ||
| 1622 | |||
| 1612 | mac->current_ifs_val = 0; | 1623 | mac->current_ifs_val = 0; |
| 1613 | mac->ifs_min_val = IFS_MIN; | 1624 | mac->ifs_min_val = IFS_MIN; |
| 1614 | mac->ifs_max_val = IFS_MAX; | 1625 | mac->ifs_max_val = IFS_MAX; |
| @@ -1617,6 +1628,8 @@ void e1000e_reset_adaptive(struct e1000_hw *hw) | |||
| 1617 | 1628 | ||
| 1618 | mac->in_ifs_mode = false; | 1629 | mac->in_ifs_mode = false; |
| 1619 | ew32(AIT, 0); | 1630 | ew32(AIT, 0); |
| 1631 | out: | ||
| 1632 | return; | ||
| 1620 | } | 1633 | } |
| 1621 | 1634 | ||
| 1622 | /** | 1635 | /** |
| @@ -1630,6 +1643,11 @@ void e1000e_update_adaptive(struct e1000_hw *hw) | |||
| 1630 | { | 1643 | { |
| 1631 | struct e1000_mac_info *mac = &hw->mac; | 1644 | struct e1000_mac_info *mac = &hw->mac; |
| 1632 | 1645 | ||
| 1646 | if (!mac->adaptive_ifs) { | ||
| 1647 | e_dbg("Not in Adaptive IFS mode!\n"); | ||
| 1648 | goto out; | ||
| 1649 | } | ||
| 1650 | |||
| 1633 | if ((mac->collision_delta * mac->ifs_ratio) > mac->tx_packet_delta) { | 1651 | if ((mac->collision_delta * mac->ifs_ratio) > mac->tx_packet_delta) { |
| 1634 | if (mac->tx_packet_delta > MIN_NUM_XMITS) { | 1652 | if (mac->tx_packet_delta > MIN_NUM_XMITS) { |
| 1635 | mac->in_ifs_mode = true; | 1653 | mac->in_ifs_mode = true; |
| @@ -1650,6 +1668,8 @@ void e1000e_update_adaptive(struct e1000_hw *hw) | |||
| 1650 | ew32(AIT, 0); | 1668 | ew32(AIT, 0); |
| 1651 | } | 1669 | } |
| 1652 | } | 1670 | } |
| 1671 | out: | ||
| 1672 | return; | ||
| 1653 | } | 1673 | } |
| 1654 | 1674 | ||
| 1655 | /** | 1675 | /** |
| @@ -2287,10 +2307,12 @@ bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw) | |||
| 2287 | s32 ret_val, hdr_csum, csum; | 2307 | s32 ret_val, hdr_csum, csum; |
| 2288 | u8 i, len; | 2308 | u8 i, len; |
| 2289 | 2309 | ||
| 2310 | hw->mac.tx_pkt_filtering = true; | ||
| 2311 | |||
| 2290 | /* No manageability, no filtering */ | 2312 | /* No manageability, no filtering */ |
| 2291 | if (!e1000e_check_mng_mode(hw)) { | 2313 | if (!e1000e_check_mng_mode(hw)) { |
| 2292 | hw->mac.tx_pkt_filtering = false; | 2314 | hw->mac.tx_pkt_filtering = false; |
| 2293 | return 0; | 2315 | goto out; |
| 2294 | } | 2316 | } |
| 2295 | 2317 | ||
| 2296 | /* | 2318 | /* |
| @@ -2298,9 +2320,9 @@ bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw) | |||
| 2298 | * reason, disable filtering. | 2320 | * reason, disable filtering. |
| 2299 | */ | 2321 | */ |
| 2300 | ret_val = e1000_mng_enable_host_if(hw); | 2322 | ret_val = e1000_mng_enable_host_if(hw); |
| 2301 | if (ret_val != 0) { | 2323 | if (ret_val) { |
| 2302 | hw->mac.tx_pkt_filtering = false; | 2324 | hw->mac.tx_pkt_filtering = false; |
| 2303 | return ret_val; | 2325 | goto out; |
| 2304 | } | 2326 | } |
| 2305 | 2327 | ||
| 2306 | /* Read in the header. Length and offset are in dwords. */ | 2328 | /* Read in the header. Length and offset are in dwords. */ |
| @@ -2319,17 +2341,17 @@ bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw) | |||
| 2319 | */ | 2341 | */ |
| 2320 | if ((hdr_csum != csum) || (hdr->signature != E1000_IAMT_SIGNATURE)) { | 2342 | if ((hdr_csum != csum) || (hdr->signature != E1000_IAMT_SIGNATURE)) { |
| 2321 | hw->mac.tx_pkt_filtering = true; | 2343 | hw->mac.tx_pkt_filtering = true; |
| 2322 | return 1; | 2344 | goto out; |
| 2323 | } | 2345 | } |
| 2324 | 2346 | ||
| 2325 | /* Cookie area is valid, make the final check for filtering. */ | 2347 | /* Cookie area is valid, make the final check for filtering. */ |
| 2326 | if (!(hdr->status & E1000_MNG_DHCP_COOKIE_STATUS_PARSING)) { | 2348 | if (!(hdr->status & E1000_MNG_DHCP_COOKIE_STATUS_PARSING)) { |
| 2327 | hw->mac.tx_pkt_filtering = false; | 2349 | hw->mac.tx_pkt_filtering = false; |
| 2328 | return 0; | 2350 | goto out; |
| 2329 | } | 2351 | } |
| 2330 | 2352 | ||
| 2331 | hw->mac.tx_pkt_filtering = true; | 2353 | out: |
| 2332 | return 1; | 2354 | return hw->mac.tx_pkt_filtering; |
| 2333 | } | 2355 | } |
| 2334 | 2356 | ||
| 2335 | /** | 2357 | /** |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 762b697ce731..57f149b75fbe 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
| @@ -450,13 +450,23 @@ static bool e1000_clean_rx_irq(struct e1000_adapter *adapter, | |||
| 450 | 450 | ||
| 451 | length = le16_to_cpu(rx_desc->length); | 451 | length = le16_to_cpu(rx_desc->length); |
| 452 | 452 | ||
| 453 | /* !EOP means multiple descriptors were used to store a single | 453 | /* |
| 454 | * packet, also make sure the frame isn't just CRC only */ | 454 | * !EOP means multiple descriptors were used to store a single |
| 455 | if (!(status & E1000_RXD_STAT_EOP) || (length <= 4)) { | 455 | * packet, if that's the case we need to toss it. In fact, we |
| 456 | * need to toss every packet with the EOP bit clear and the | ||
| 457 | * next frame that _does_ have the EOP bit set, as it is by | ||
| 458 | * definition only a frame fragment | ||
| 459 | */ | ||
| 460 | if (unlikely(!(status & E1000_RXD_STAT_EOP))) | ||
| 461 | adapter->flags2 |= FLAG2_IS_DISCARDING; | ||
| 462 | |||
| 463 | if (adapter->flags2 & FLAG2_IS_DISCARDING) { | ||
| 456 | /* All receives must fit into a single buffer */ | 464 | /* All receives must fit into a single buffer */ |
| 457 | e_dbg("Receive packet consumed multiple buffers\n"); | 465 | e_dbg("Receive packet consumed multiple buffers\n"); |
| 458 | /* recycle */ | 466 | /* recycle */ |
| 459 | buffer_info->skb = skb; | 467 | buffer_info->skb = skb; |
| 468 | if (status & E1000_RXD_STAT_EOP) | ||
| 469 | adapter->flags2 &= ~FLAG2_IS_DISCARDING; | ||
| 460 | goto next_desc; | 470 | goto next_desc; |
| 461 | } | 471 | } |
| 462 | 472 | ||
| @@ -745,10 +755,16 @@ static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter, | |||
| 745 | PCI_DMA_FROMDEVICE); | 755 | PCI_DMA_FROMDEVICE); |
| 746 | buffer_info->dma = 0; | 756 | buffer_info->dma = 0; |
| 747 | 757 | ||
| 748 | if (!(staterr & E1000_RXD_STAT_EOP)) { | 758 | /* see !EOP comment in other rx routine */ |
| 759 | if (!(staterr & E1000_RXD_STAT_EOP)) | ||
| 760 | adapter->flags2 |= FLAG2_IS_DISCARDING; | ||
| 761 | |||
| 762 | if (adapter->flags2 & FLAG2_IS_DISCARDING) { | ||
| 749 | e_dbg("Packet Split buffers didn't pick up the full " | 763 | e_dbg("Packet Split buffers didn't pick up the full " |
| 750 | "packet\n"); | 764 | "packet\n"); |
| 751 | dev_kfree_skb_irq(skb); | 765 | dev_kfree_skb_irq(skb); |
| 766 | if (staterr & E1000_RXD_STAT_EOP) | ||
| 767 | adapter->flags2 &= ~FLAG2_IS_DISCARDING; | ||
| 752 | goto next_desc; | 768 | goto next_desc; |
| 753 | } | 769 | } |
| 754 | 770 | ||
| @@ -1118,6 +1134,7 @@ static void e1000_clean_rx_ring(struct e1000_adapter *adapter) | |||
| 1118 | 1134 | ||
| 1119 | rx_ring->next_to_clean = 0; | 1135 | rx_ring->next_to_clean = 0; |
| 1120 | rx_ring->next_to_use = 0; | 1136 | rx_ring->next_to_use = 0; |
| 1137 | adapter->flags2 &= ~FLAG2_IS_DISCARDING; | ||
| 1121 | 1138 | ||
| 1122 | writel(0, adapter->hw.hw_addr + rx_ring->head); | 1139 | writel(0, adapter->hw.hw_addr + rx_ring->head); |
| 1123 | writel(0, adapter->hw.hw_addr + rx_ring->tail); | 1140 | writel(0, adapter->hw.hw_addr + rx_ring->tail); |
| @@ -2333,18 +2350,6 @@ static void e1000_setup_rctl(struct e1000_adapter *adapter) | |||
| 2333 | rctl &= ~E1000_RCTL_SZ_4096; | 2350 | rctl &= ~E1000_RCTL_SZ_4096; |
| 2334 | rctl |= E1000_RCTL_BSEX; | 2351 | rctl |= E1000_RCTL_BSEX; |
| 2335 | switch (adapter->rx_buffer_len) { | 2352 | switch (adapter->rx_buffer_len) { |
| 2336 | case 256: | ||
| 2337 | rctl |= E1000_RCTL_SZ_256; | ||
| 2338 | rctl &= ~E1000_RCTL_BSEX; | ||
| 2339 | break; | ||
| 2340 | case 512: | ||
| 2341 | rctl |= E1000_RCTL_SZ_512; | ||
| 2342 | rctl &= ~E1000_RCTL_BSEX; | ||
| 2343 | break; | ||
| 2344 | case 1024: | ||
| 2345 | rctl |= E1000_RCTL_SZ_1024; | ||
| 2346 | rctl &= ~E1000_RCTL_BSEX; | ||
| 2347 | break; | ||
| 2348 | case 2048: | 2353 | case 2048: |
| 2349 | default: | 2354 | default: |
| 2350 | rctl |= E1000_RCTL_SZ_2048; | 2355 | rctl |= E1000_RCTL_SZ_2048; |
| @@ -3315,24 +3320,24 @@ void e1000e_update_stats(struct e1000_adapter *adapter) | |||
| 3315 | if ((hw->phy.type == e1000_phy_82578) || | 3320 | if ((hw->phy.type == e1000_phy_82578) || |
| 3316 | (hw->phy.type == e1000_phy_82577)) { | 3321 | (hw->phy.type == e1000_phy_82577)) { |
| 3317 | e1e_rphy(hw, HV_SCC_UPPER, &phy_data); | 3322 | e1e_rphy(hw, HV_SCC_UPPER, &phy_data); |
| 3318 | e1e_rphy(hw, HV_SCC_LOWER, &phy_data); | 3323 | if (!e1e_rphy(hw, HV_SCC_LOWER, &phy_data)) |
| 3319 | adapter->stats.scc += phy_data; | 3324 | adapter->stats.scc += phy_data; |
| 3320 | 3325 | ||
| 3321 | e1e_rphy(hw, HV_ECOL_UPPER, &phy_data); | 3326 | e1e_rphy(hw, HV_ECOL_UPPER, &phy_data); |
| 3322 | e1e_rphy(hw, HV_ECOL_LOWER, &phy_data); | 3327 | if (!e1e_rphy(hw, HV_ECOL_LOWER, &phy_data)) |
| 3323 | adapter->stats.ecol += phy_data; | 3328 | adapter->stats.ecol += phy_data; |
| 3324 | 3329 | ||
| 3325 | e1e_rphy(hw, HV_MCC_UPPER, &phy_data); | 3330 | e1e_rphy(hw, HV_MCC_UPPER, &phy_data); |
| 3326 | e1e_rphy(hw, HV_MCC_LOWER, &phy_data); | 3331 | if (!e1e_rphy(hw, HV_MCC_LOWER, &phy_data)) |
| 3327 | adapter->stats.mcc += phy_data; | 3332 | adapter->stats.mcc += phy_data; |
| 3328 | 3333 | ||
| 3329 | e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data); | 3334 | e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data); |
| 3330 | e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data); | 3335 | if (!e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data)) |
| 3331 | adapter->stats.latecol += phy_data; | 3336 | adapter->stats.latecol += phy_data; |
| 3332 | 3337 | ||
| 3333 | e1e_rphy(hw, HV_DC_UPPER, &phy_data); | 3338 | e1e_rphy(hw, HV_DC_UPPER, &phy_data); |
| 3334 | e1e_rphy(hw, HV_DC_LOWER, &phy_data); | 3339 | if (!e1e_rphy(hw, HV_DC_LOWER, &phy_data)) |
| 3335 | adapter->stats.dc += phy_data; | 3340 | adapter->stats.dc += phy_data; |
| 3336 | } else { | 3341 | } else { |
| 3337 | adapter->stats.scc += er32(SCC); | 3342 | adapter->stats.scc += er32(SCC); |
| 3338 | adapter->stats.ecol += er32(ECOL); | 3343 | adapter->stats.ecol += er32(ECOL); |
| @@ -3360,8 +3365,8 @@ void e1000e_update_stats(struct e1000_adapter *adapter) | |||
| 3360 | if ((hw->phy.type == e1000_phy_82578) || | 3365 | if ((hw->phy.type == e1000_phy_82578) || |
| 3361 | (hw->phy.type == e1000_phy_82577)) { | 3366 | (hw->phy.type == e1000_phy_82577)) { |
| 3362 | e1e_rphy(hw, HV_COLC_UPPER, &phy_data); | 3367 | e1e_rphy(hw, HV_COLC_UPPER, &phy_data); |
| 3363 | e1e_rphy(hw, HV_COLC_LOWER, &phy_data); | 3368 | if (!e1e_rphy(hw, HV_COLC_LOWER, &phy_data)) |
| 3364 | hw->mac.collision_delta = phy_data; | 3369 | hw->mac.collision_delta = phy_data; |
| 3365 | } else { | 3370 | } else { |
| 3366 | hw->mac.collision_delta = er32(COLC); | 3371 | hw->mac.collision_delta = er32(COLC); |
| 3367 | } | 3372 | } |
| @@ -3372,8 +3377,8 @@ void e1000e_update_stats(struct e1000_adapter *adapter) | |||
| 3372 | if ((hw->phy.type == e1000_phy_82578) || | 3377 | if ((hw->phy.type == e1000_phy_82578) || |
| 3373 | (hw->phy.type == e1000_phy_82577)) { | 3378 | (hw->phy.type == e1000_phy_82577)) { |
| 3374 | e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data); | 3379 | e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data); |
| 3375 | e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data); | 3380 | if (!e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data)) |
| 3376 | adapter->stats.tncrs += phy_data; | 3381 | adapter->stats.tncrs += phy_data; |
| 3377 | } else { | 3382 | } else { |
| 3378 | if ((hw->mac.type != e1000_82574) && | 3383 | if ((hw->mac.type != e1000_82574) && |
| 3379 | (hw->mac.type != e1000_82583)) | 3384 | (hw->mac.type != e1000_82583)) |
| @@ -3781,7 +3786,7 @@ static int e1000_tso(struct e1000_adapter *adapter, | |||
| 3781 | 0, IPPROTO_TCP, 0); | 3786 | 0, IPPROTO_TCP, 0); |
| 3782 | cmd_length = E1000_TXD_CMD_IP; | 3787 | cmd_length = E1000_TXD_CMD_IP; |
| 3783 | ipcse = skb_transport_offset(skb) - 1; | 3788 | ipcse = skb_transport_offset(skb) - 1; |
| 3784 | } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) { | 3789 | } else if (skb_is_gso_v6(skb)) { |
| 3785 | ipv6_hdr(skb)->payload_len = 0; | 3790 | ipv6_hdr(skb)->payload_len = 0; |
| 3786 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | 3791 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| 3787 | &ipv6_hdr(skb)->daddr, | 3792 | &ipv6_hdr(skb)->daddr, |
| @@ -3962,13 +3967,13 @@ static int e1000_tx_map(struct e1000_adapter *adapter, | |||
| 3962 | dma_error: | 3967 | dma_error: |
| 3963 | dev_err(&pdev->dev, "TX DMA map failed\n"); | 3968 | dev_err(&pdev->dev, "TX DMA map failed\n"); |
| 3964 | buffer_info->dma = 0; | 3969 | buffer_info->dma = 0; |
| 3965 | count--; | 3970 | if (count) |
| 3966 | |||
| 3967 | while (count >= 0) { | ||
| 3968 | count--; | 3971 | count--; |
| 3969 | i--; | 3972 | |
| 3970 | if (i < 0) | 3973 | while (count--) { |
| 3974 | if (i==0) | ||
| 3971 | i += tx_ring->count; | 3975 | i += tx_ring->count; |
| 3976 | i--; | ||
| 3972 | buffer_info = &tx_ring->buffer_info[i]; | 3977 | buffer_info = &tx_ring->buffer_info[i]; |
| 3973 | e1000_put_txbuf(adapter, buffer_info);; | 3978 | e1000_put_txbuf(adapter, buffer_info);; |
| 3974 | } | 3979 | } |
| @@ -4317,13 +4322,7 @@ static int e1000_change_mtu(struct net_device *netdev, int new_mtu) | |||
| 4317 | * fragmented skbs | 4322 | * fragmented skbs |
| 4318 | */ | 4323 | */ |
| 4319 | 4324 | ||
| 4320 | if (max_frame <= 256) | 4325 | if (max_frame <= 2048) |
| 4321 | adapter->rx_buffer_len = 256; | ||
| 4322 | else if (max_frame <= 512) | ||
| 4323 | adapter->rx_buffer_len = 512; | ||
| 4324 | else if (max_frame <= 1024) | ||
| 4325 | adapter->rx_buffer_len = 1024; | ||
| 4326 | else if (max_frame <= 2048) | ||
| 4327 | adapter->rx_buffer_len = 2048; | 4326 | adapter->rx_buffer_len = 2048; |
| 4328 | else | 4327 | else |
| 4329 | adapter->rx_buffer_len = 4096; | 4328 | adapter->rx_buffer_len = 4096; |
| @@ -4674,6 +4673,7 @@ static int e1000_resume(struct pci_dev *pdev) | |||
| 4674 | 4673 | ||
| 4675 | pci_set_power_state(pdev, PCI_D0); | 4674 | pci_set_power_state(pdev, PCI_D0); |
| 4676 | pci_restore_state(pdev); | 4675 | pci_restore_state(pdev); |
| 4676 | pci_save_state(pdev); | ||
| 4677 | e1000e_disable_l1aspm(pdev); | 4677 | e1000e_disable_l1aspm(pdev); |
| 4678 | 4678 | ||
| 4679 | err = pci_enable_device_mem(pdev); | 4679 | err = pci_enable_device_mem(pdev); |
| @@ -4825,6 +4825,7 @@ static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev) | |||
| 4825 | } else { | 4825 | } else { |
| 4826 | pci_set_master(pdev); | 4826 | pci_set_master(pdev); |
| 4827 | pci_restore_state(pdev); | 4827 | pci_restore_state(pdev); |
| 4828 | pci_save_state(pdev); | ||
| 4828 | 4829 | ||
| 4829 | pci_enable_wake(pdev, PCI_D3hot, 0); | 4830 | pci_enable_wake(pdev, PCI_D3hot, 0); |
| 4830 | pci_enable_wake(pdev, PCI_D3cold, 0); | 4831 | pci_enable_wake(pdev, PCI_D3cold, 0); |
diff --git a/drivers/net/e1000e/phy.c b/drivers/net/e1000e/phy.c index 55a2c0acfee7..7f3ceb9dad6a 100644 --- a/drivers/net/e1000e/phy.c +++ b/drivers/net/e1000e/phy.c | |||
| @@ -152,32 +152,9 @@ s32 e1000e_get_phy_id(struct e1000_hw *hw) | |||
| 152 | if (phy->id != 0 && phy->id != PHY_REVISION_MASK) | 152 | if (phy->id != 0 && phy->id != PHY_REVISION_MASK) |
| 153 | goto out; | 153 | goto out; |
| 154 | 154 | ||
| 155 | /* | ||
| 156 | * If the PHY ID is still unknown, we may have an 82577 | ||
| 157 | * without link. We will try again after setting Slow MDIC | ||
| 158 | * mode. No harm in trying again in this case since the PHY | ||
| 159 | * ID is unknown at this point anyway. | ||
| 160 | */ | ||
| 161 | ret_val = phy->ops.acquire(hw); | ||
| 162 | if (ret_val) | ||
| 163 | goto out; | ||
| 164 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); | ||
| 165 | if (ret_val) | ||
| 166 | goto out; | ||
| 167 | phy->ops.release(hw); | ||
| 168 | |||
| 169 | retry_count++; | 155 | retry_count++; |
| 170 | } | 156 | } |
| 171 | out: | 157 | out: |
| 172 | /* Revert to MDIO fast mode, if applicable */ | ||
| 173 | if (retry_count) { | ||
| 174 | ret_val = phy->ops.acquire(hw); | ||
| 175 | if (ret_val) | ||
| 176 | return ret_val; | ||
| 177 | ret_val = e1000_set_mdio_slow_mode_hv(hw, false); | ||
| 178 | phy->ops.release(hw); | ||
| 179 | } | ||
| 180 | |||
| 181 | return ret_val; | 158 | return ret_val; |
| 182 | } | 159 | } |
| 183 | 160 | ||
| @@ -2791,38 +2768,6 @@ static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active) | |||
| 2791 | } | 2768 | } |
| 2792 | 2769 | ||
| 2793 | /** | 2770 | /** |
| 2794 | * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode | ||
| 2795 | * @hw: pointer to the HW structure | ||
| 2796 | * @slow: true for slow mode, false for normal mode | ||
| 2797 | * | ||
| 2798 | * Assumes semaphore already acquired. | ||
| 2799 | **/ | ||
| 2800 | s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw, bool slow) | ||
| 2801 | { | ||
| 2802 | s32 ret_val = 0; | ||
| 2803 | u16 data = 0; | ||
| 2804 | |||
| 2805 | /* Set MDIO mode - page 769, register 16: 0x2580==slow, 0x2180==fast */ | ||
| 2806 | hw->phy.addr = 1; | ||
| 2807 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, | ||
| 2808 | (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT)); | ||
| 2809 | if (ret_val) | ||
| 2810 | goto out; | ||
| 2811 | |||
| 2812 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_CS_CTRL1, | ||
| 2813 | (0x2180 | (slow << 10))); | ||
| 2814 | if (ret_val) | ||
| 2815 | goto out; | ||
| 2816 | |||
| 2817 | /* dummy read when reverting to fast mode - throw away result */ | ||
| 2818 | if (!slow) | ||
| 2819 | ret_val = e1000e_read_phy_reg_mdic(hw, BM_CS_CTRL1, &data); | ||
| 2820 | |||
| 2821 | out: | ||
| 2822 | return ret_val; | ||
| 2823 | } | ||
| 2824 | |||
| 2825 | /** | ||
| 2826 | * __e1000_read_phy_reg_hv - Read HV PHY register | 2771 | * __e1000_read_phy_reg_hv - Read HV PHY register |
| 2827 | * @hw: pointer to the HW structure | 2772 | * @hw: pointer to the HW structure |
| 2828 | * @offset: register offset to be read | 2773 | * @offset: register offset to be read |
| @@ -2839,7 +2784,6 @@ static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, | |||
| 2839 | s32 ret_val; | 2784 | s32 ret_val; |
| 2840 | u16 page = BM_PHY_REG_PAGE(offset); | 2785 | u16 page = BM_PHY_REG_PAGE(offset); |
| 2841 | u16 reg = BM_PHY_REG_NUM(offset); | 2786 | u16 reg = BM_PHY_REG_NUM(offset); |
| 2842 | bool in_slow_mode = false; | ||
| 2843 | 2787 | ||
| 2844 | if (!locked) { | 2788 | if (!locked) { |
| 2845 | ret_val = hw->phy.ops.acquire(hw); | 2789 | ret_val = hw->phy.ops.acquire(hw); |
| @@ -2847,16 +2791,6 @@ static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, | |||
| 2847 | return ret_val; | 2791 | return ret_val; |
| 2848 | } | 2792 | } |
| 2849 | 2793 | ||
| 2850 | /* Workaround failure in MDIO access while cable is disconnected */ | ||
| 2851 | if ((hw->phy.type == e1000_phy_82577) && | ||
| 2852 | !(er32(STATUS) & E1000_STATUS_LU)) { | ||
| 2853 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); | ||
| 2854 | if (ret_val) | ||
| 2855 | goto out; | ||
| 2856 | |||
| 2857 | in_slow_mode = true; | ||
| 2858 | } | ||
| 2859 | |||
| 2860 | /* Page 800 works differently than the rest so it has its own func */ | 2794 | /* Page 800 works differently than the rest so it has its own func */ |
| 2861 | if (page == BM_WUC_PAGE) { | 2795 | if (page == BM_WUC_PAGE) { |
| 2862 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, | 2796 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, |
| @@ -2893,10 +2827,6 @@ static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, | |||
| 2893 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, | 2827 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, |
| 2894 | data); | 2828 | data); |
| 2895 | out: | 2829 | out: |
| 2896 | /* Revert to MDIO fast mode, if applicable */ | ||
| 2897 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) | ||
| 2898 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); | ||
| 2899 | |||
| 2900 | if (!locked) | 2830 | if (!locked) |
| 2901 | hw->phy.ops.release(hw); | 2831 | hw->phy.ops.release(hw); |
| 2902 | 2832 | ||
| @@ -2948,7 +2878,6 @@ static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, | |||
| 2948 | s32 ret_val; | 2878 | s32 ret_val; |
| 2949 | u16 page = BM_PHY_REG_PAGE(offset); | 2879 | u16 page = BM_PHY_REG_PAGE(offset); |
| 2950 | u16 reg = BM_PHY_REG_NUM(offset); | 2880 | u16 reg = BM_PHY_REG_NUM(offset); |
| 2951 | bool in_slow_mode = false; | ||
| 2952 | 2881 | ||
| 2953 | if (!locked) { | 2882 | if (!locked) { |
| 2954 | ret_val = hw->phy.ops.acquire(hw); | 2883 | ret_val = hw->phy.ops.acquire(hw); |
| @@ -2956,16 +2885,6 @@ static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, | |||
| 2956 | return ret_val; | 2885 | return ret_val; |
| 2957 | } | 2886 | } |
| 2958 | 2887 | ||
| 2959 | /* Workaround failure in MDIO access while cable is disconnected */ | ||
| 2960 | if ((hw->phy.type == e1000_phy_82577) && | ||
| 2961 | !(er32(STATUS) & E1000_STATUS_LU)) { | ||
| 2962 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); | ||
| 2963 | if (ret_val) | ||
| 2964 | goto out; | ||
| 2965 | |||
| 2966 | in_slow_mode = true; | ||
| 2967 | } | ||
| 2968 | |||
| 2969 | /* Page 800 works differently than the rest so it has its own func */ | 2888 | /* Page 800 works differently than the rest so it has its own func */ |
| 2970 | if (page == BM_WUC_PAGE) { | 2889 | if (page == BM_WUC_PAGE) { |
| 2971 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, | 2890 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, |
| @@ -3019,10 +2938,6 @@ static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, | |||
| 3019 | data); | 2938 | data); |
| 3020 | 2939 | ||
| 3021 | out: | 2940 | out: |
| 3022 | /* Revert to MDIO fast mode, if applicable */ | ||
| 3023 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) | ||
| 3024 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); | ||
| 3025 | |||
| 3026 | if (!locked) | 2941 | if (!locked) |
| 3027 | hw->phy.ops.release(hw); | 2942 | hw->phy.ops.release(hw); |
| 3028 | 2943 | ||
diff --git a/drivers/net/fsl_pq_mdio.c b/drivers/net/fsl_pq_mdio.c index 25fabb3eedc5..d5160edf2fcf 100644 --- a/drivers/net/fsl_pq_mdio.c +++ b/drivers/net/fsl_pq_mdio.c | |||
| @@ -46,6 +46,11 @@ | |||
| 46 | #include "gianfar.h" | 46 | #include "gianfar.h" |
| 47 | #include "fsl_pq_mdio.h" | 47 | #include "fsl_pq_mdio.h" |
| 48 | 48 | ||
| 49 | struct fsl_pq_mdio_priv { | ||
| 50 | void __iomem *map; | ||
| 51 | struct fsl_pq_mdio __iomem *regs; | ||
| 52 | }; | ||
| 53 | |||
| 49 | /* | 54 | /* |
| 50 | * Write value to the PHY at mii_id at register regnum, | 55 | * Write value to the PHY at mii_id at register regnum, |
| 51 | * on the bus attached to the local interface, which may be different from the | 56 | * on the bus attached to the local interface, which may be different from the |
| @@ -105,7 +110,9 @@ int fsl_pq_local_mdio_read(struct fsl_pq_mdio __iomem *regs, | |||
| 105 | 110 | ||
| 106 | static struct fsl_pq_mdio __iomem *fsl_pq_mdio_get_regs(struct mii_bus *bus) | 111 | static struct fsl_pq_mdio __iomem *fsl_pq_mdio_get_regs(struct mii_bus *bus) |
| 107 | { | 112 | { |
| 108 | return (void __iomem __force *)bus->priv; | 113 | struct fsl_pq_mdio_priv *priv = bus->priv; |
| 114 | |||
| 115 | return priv->regs; | ||
| 109 | } | 116 | } |
| 110 | 117 | ||
| 111 | /* | 118 | /* |
| @@ -266,6 +273,7 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 266 | { | 273 | { |
| 267 | struct device_node *np = ofdev->node; | 274 | struct device_node *np = ofdev->node; |
| 268 | struct device_node *tbi; | 275 | struct device_node *tbi; |
| 276 | struct fsl_pq_mdio_priv *priv; | ||
| 269 | struct fsl_pq_mdio __iomem *regs = NULL; | 277 | struct fsl_pq_mdio __iomem *regs = NULL; |
| 270 | void __iomem *map; | 278 | void __iomem *map; |
| 271 | u32 __iomem *tbipa; | 279 | u32 __iomem *tbipa; |
| @@ -274,14 +282,19 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 274 | u64 addr = 0, size = 0; | 282 | u64 addr = 0, size = 0; |
| 275 | int err = 0; | 283 | int err = 0; |
| 276 | 284 | ||
| 285 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); | ||
| 286 | if (!priv) | ||
| 287 | return -ENOMEM; | ||
| 288 | |||
| 277 | new_bus = mdiobus_alloc(); | 289 | new_bus = mdiobus_alloc(); |
| 278 | if (NULL == new_bus) | 290 | if (NULL == new_bus) |
| 279 | return -ENOMEM; | 291 | goto err_free_priv; |
| 280 | 292 | ||
| 281 | new_bus->name = "Freescale PowerQUICC MII Bus", | 293 | new_bus->name = "Freescale PowerQUICC MII Bus", |
| 282 | new_bus->read = &fsl_pq_mdio_read, | 294 | new_bus->read = &fsl_pq_mdio_read, |
| 283 | new_bus->write = &fsl_pq_mdio_write, | 295 | new_bus->write = &fsl_pq_mdio_write, |
| 284 | new_bus->reset = &fsl_pq_mdio_reset, | 296 | new_bus->reset = &fsl_pq_mdio_reset, |
| 297 | new_bus->priv = priv; | ||
| 285 | fsl_pq_mdio_bus_name(new_bus->id, np); | 298 | fsl_pq_mdio_bus_name(new_bus->id, np); |
| 286 | 299 | ||
| 287 | /* Set the PHY base address */ | 300 | /* Set the PHY base address */ |
| @@ -291,6 +304,7 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 291 | err = -ENOMEM; | 304 | err = -ENOMEM; |
| 292 | goto err_free_bus; | 305 | goto err_free_bus; |
| 293 | } | 306 | } |
| 307 | priv->map = map; | ||
| 294 | 308 | ||
| 295 | if (of_device_is_compatible(np, "fsl,gianfar-mdio") || | 309 | if (of_device_is_compatible(np, "fsl,gianfar-mdio") || |
| 296 | of_device_is_compatible(np, "fsl,gianfar-tbi") || | 310 | of_device_is_compatible(np, "fsl,gianfar-tbi") || |
| @@ -298,8 +312,7 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 298 | of_device_is_compatible(np, "ucc_geth_phy")) | 312 | of_device_is_compatible(np, "ucc_geth_phy")) |
| 299 | map -= offsetof(struct fsl_pq_mdio, miimcfg); | 313 | map -= offsetof(struct fsl_pq_mdio, miimcfg); |
| 300 | regs = map; | 314 | regs = map; |
| 301 | 315 | priv->regs = regs; | |
| 302 | new_bus->priv = (void __force *)regs; | ||
| 303 | 316 | ||
| 304 | new_bus->irq = kcalloc(PHY_MAX_ADDR, sizeof(int), GFP_KERNEL); | 317 | new_bus->irq = kcalloc(PHY_MAX_ADDR, sizeof(int), GFP_KERNEL); |
| 305 | 318 | ||
| @@ -392,10 +405,11 @@ static int fsl_pq_mdio_probe(struct of_device *ofdev, | |||
| 392 | err_free_irqs: | 405 | err_free_irqs: |
| 393 | kfree(new_bus->irq); | 406 | kfree(new_bus->irq); |
| 394 | err_unmap_regs: | 407 | err_unmap_regs: |
| 395 | iounmap(regs); | 408 | iounmap(priv->map); |
| 396 | err_free_bus: | 409 | err_free_bus: |
| 397 | kfree(new_bus); | 410 | kfree(new_bus); |
| 398 | 411 | err_free_priv: | |
| 412 | kfree(priv); | ||
| 399 | return err; | 413 | return err; |
| 400 | } | 414 | } |
| 401 | 415 | ||
| @@ -404,14 +418,16 @@ static int fsl_pq_mdio_remove(struct of_device *ofdev) | |||
| 404 | { | 418 | { |
| 405 | struct device *device = &ofdev->dev; | 419 | struct device *device = &ofdev->dev; |
| 406 | struct mii_bus *bus = dev_get_drvdata(device); | 420 | struct mii_bus *bus = dev_get_drvdata(device); |
| 421 | struct fsl_pq_mdio_priv *priv = bus->priv; | ||
| 407 | 422 | ||
| 408 | mdiobus_unregister(bus); | 423 | mdiobus_unregister(bus); |
| 409 | 424 | ||
| 410 | dev_set_drvdata(device, NULL); | 425 | dev_set_drvdata(device, NULL); |
| 411 | 426 | ||
| 412 | iounmap(fsl_pq_mdio_get_regs(bus)); | 427 | iounmap(priv->map); |
| 413 | bus->priv = NULL; | 428 | bus->priv = NULL; |
| 414 | mdiobus_free(bus); | 429 | mdiobus_free(bus); |
| 430 | kfree(priv); | ||
| 415 | 431 | ||
| 416 | return 0; | 432 | return 0; |
| 417 | } | 433 | } |
diff --git a/drivers/net/hamradio/bpqether.c b/drivers/net/hamradio/bpqether.c index ae5f11c8fc13..bdadf3e23c94 100644 --- a/drivers/net/hamradio/bpqether.c +++ b/drivers/net/hamradio/bpqether.c | |||
| @@ -248,6 +248,7 @@ static netdev_tx_t bpq_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 248 | { | 248 | { |
| 249 | unsigned char *ptr; | 249 | unsigned char *ptr; |
| 250 | struct bpqdev *bpq; | 250 | struct bpqdev *bpq; |
| 251 | struct net_device *orig_dev; | ||
| 251 | int size; | 252 | int size; |
| 252 | 253 | ||
| 253 | /* | 254 | /* |
| @@ -282,8 +283,9 @@ static netdev_tx_t bpq_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 282 | 283 | ||
| 283 | bpq = netdev_priv(dev); | 284 | bpq = netdev_priv(dev); |
| 284 | 285 | ||
| 286 | orig_dev = dev; | ||
| 285 | if ((dev = bpq_get_ether_dev(dev)) == NULL) { | 287 | if ((dev = bpq_get_ether_dev(dev)) == NULL) { |
| 286 | dev->stats.tx_dropped++; | 288 | orig_dev->stats.tx_dropped++; |
| 287 | kfree_skb(skb); | 289 | kfree_skb(skb); |
| 288 | return NETDEV_TX_OK; | 290 | return NETDEV_TX_OK; |
| 289 | } | 291 | } |
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index 933c64ff2465..997124d2992a 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
| @@ -3422,7 +3422,7 @@ static inline int igb_tso_adv(struct igb_ring *tx_ring, | |||
| 3422 | iph->daddr, 0, | 3422 | iph->daddr, 0, |
| 3423 | IPPROTO_TCP, | 3423 | IPPROTO_TCP, |
| 3424 | 0); | 3424 | 0); |
| 3425 | } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) { | 3425 | } else if (skb_is_gso_v6(skb)) { |
| 3426 | ipv6_hdr(skb)->payload_len = 0; | 3426 | ipv6_hdr(skb)->payload_len = 0; |
| 3427 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | 3427 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| 3428 | &ipv6_hdr(skb)->daddr, | 3428 | &ipv6_hdr(skb)->daddr, |
| @@ -3584,6 +3584,7 @@ static inline int igb_tx_map_adv(struct igb_ring *tx_ring, struct sk_buff *skb, | |||
| 3584 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { | 3584 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { |
| 3585 | struct skb_frag_struct *frag; | 3585 | struct skb_frag_struct *frag; |
| 3586 | 3586 | ||
| 3587 | count++; | ||
| 3587 | i++; | 3588 | i++; |
| 3588 | if (i == tx_ring->count) | 3589 | if (i == tx_ring->count) |
| 3589 | i = 0; | 3590 | i = 0; |
| @@ -3605,7 +3606,6 @@ static inline int igb_tx_map_adv(struct igb_ring *tx_ring, struct sk_buff *skb, | |||
| 3605 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) | 3606 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) |
| 3606 | goto dma_error; | 3607 | goto dma_error; |
| 3607 | 3608 | ||
| 3608 | count++; | ||
| 3609 | } | 3609 | } |
| 3610 | 3610 | ||
| 3611 | tx_ring->buffer_info[i].skb = skb; | 3611 | tx_ring->buffer_info[i].skb = skb; |
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index 0dbd0320023a..2aa71a766c35 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c | |||
| @@ -1963,7 +1963,7 @@ static int igbvf_tso(struct igbvf_adapter *adapter, | |||
| 1963 | iph->daddr, 0, | 1963 | iph->daddr, 0, |
| 1964 | IPPROTO_TCP, | 1964 | IPPROTO_TCP, |
| 1965 | 0); | 1965 | 0); |
| 1966 | } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) { | 1966 | } else if (skb_is_gso_v6(skb)) { |
| 1967 | ipv6_hdr(skb)->payload_len = 0; | 1967 | ipv6_hdr(skb)->payload_len = 0; |
| 1968 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | 1968 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| 1969 | &ipv6_hdr(skb)->daddr, | 1969 | &ipv6_hdr(skb)->daddr, |
| @@ -2117,6 +2117,7 @@ static inline int igbvf_tx_map_adv(struct igbvf_adapter *adapter, | |||
| 2117 | /* set time_stamp *before* dma to help avoid a possible race */ | 2117 | /* set time_stamp *before* dma to help avoid a possible race */ |
| 2118 | buffer_info->time_stamp = jiffies; | 2118 | buffer_info->time_stamp = jiffies; |
| 2119 | buffer_info->next_to_watch = i; | 2119 | buffer_info->next_to_watch = i; |
| 2120 | buffer_info->mapped_as_page = false; | ||
| 2120 | buffer_info->dma = pci_map_single(pdev, skb->data, len, | 2121 | buffer_info->dma = pci_map_single(pdev, skb->data, len, |
| 2121 | PCI_DMA_TODEVICE); | 2122 | PCI_DMA_TODEVICE); |
| 2122 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) | 2123 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) |
| @@ -2126,6 +2127,7 @@ static inline int igbvf_tx_map_adv(struct igbvf_adapter *adapter, | |||
| 2126 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { | 2127 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { |
| 2127 | struct skb_frag_struct *frag; | 2128 | struct skb_frag_struct *frag; |
| 2128 | 2129 | ||
| 2130 | count++; | ||
| 2129 | i++; | 2131 | i++; |
| 2130 | if (i == tx_ring->count) | 2132 | if (i == tx_ring->count) |
| 2131 | i = 0; | 2133 | i = 0; |
| @@ -2146,7 +2148,6 @@ static inline int igbvf_tx_map_adv(struct igbvf_adapter *adapter, | |||
| 2146 | PCI_DMA_TODEVICE); | 2148 | PCI_DMA_TODEVICE); |
| 2147 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) | 2149 | if (pci_dma_mapping_error(pdev, buffer_info->dma)) |
| 2148 | goto dma_error; | 2150 | goto dma_error; |
| 2149 | count++; | ||
| 2150 | } | 2151 | } |
| 2151 | 2152 | ||
| 2152 | tx_ring->buffer_info[i].skb = skb; | 2153 | tx_ring->buffer_info[i].skb = skb; |
| @@ -2163,14 +2164,14 @@ dma_error: | |||
| 2163 | buffer_info->length = 0; | 2164 | buffer_info->length = 0; |
| 2164 | buffer_info->next_to_watch = 0; | 2165 | buffer_info->next_to_watch = 0; |
| 2165 | buffer_info->mapped_as_page = false; | 2166 | buffer_info->mapped_as_page = false; |
| 2166 | count--; | 2167 | if (count) |
| 2168 | count--; | ||
| 2167 | 2169 | ||
| 2168 | /* clear timestamp and dma mappings for remaining portion of packet */ | 2170 | /* clear timestamp and dma mappings for remaining portion of packet */ |
| 2169 | while (count >= 0) { | 2171 | while (count--) { |
| 2170 | count--; | 2172 | if (i==0) |
| 2171 | i--; | ||
| 2172 | if (i < 0) | ||
| 2173 | i += tx_ring->count; | 2173 | i += tx_ring->count; |
| 2174 | i--; | ||
| 2174 | buffer_info = &tx_ring->buffer_info[i]; | 2175 | buffer_info = &tx_ring->buffer_info[i]; |
| 2175 | igbvf_put_txbuf(adapter, buffer_info); | 2176 | igbvf_put_txbuf(adapter, buffer_info); |
| 2176 | } | 2177 | } |
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c index bcd0f01d5feb..593d1a4f217c 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c | |||
| @@ -1363,13 +1363,13 @@ ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb, | |||
| 1363 | dma_error: | 1363 | dma_error: |
| 1364 | dev_err(&pdev->dev, "TX DMA map failed\n"); | 1364 | dev_err(&pdev->dev, "TX DMA map failed\n"); |
| 1365 | buffer_info->dma = 0; | 1365 | buffer_info->dma = 0; |
| 1366 | count--; | 1366 | if (count) |
| 1367 | |||
| 1368 | while (count >= 0) { | ||
| 1369 | count--; | 1367 | count--; |
| 1370 | i--; | 1368 | |
| 1371 | if (i < 0) | 1369 | while (count--) { |
| 1370 | if (i==0) | ||
| 1372 | i += tx_ring->count; | 1371 | i += tx_ring->count; |
| 1372 | i--; | ||
| 1373 | buffer_info = &tx_ring->buffer_info[i]; | 1373 | buffer_info = &tx_ring->buffer_info[i]; |
| 1374 | ixgb_unmap_and_free_tx_resource(adapter, buffer_info); | 1374 | ixgb_unmap_and_free_tx_resource(adapter, buffer_info); |
| 1375 | } | 1375 | } |
diff --git a/drivers/net/ixgbe/Makefile b/drivers/net/ixgbe/Makefile index 21b41f42b61c..bfef0ebcba9a 100644 --- a/drivers/net/ixgbe/Makefile +++ b/drivers/net/ixgbe/Makefile | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ################################################################################ | 1 | ################################################################################ |
| 2 | # | 2 | # |
| 3 | # Intel 10 Gigabit PCI Express Linux driver | 3 | # Intel 10 Gigabit PCI Express Linux driver |
| 4 | # Copyright(c) 1999 - 2009 Intel Corporation. | 4 | # Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | # | 5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify it | 6 | # This program is free software; you can redistribute it and/or modify it |
| 7 | # under the terms and conditions of the GNU General Public License, | 7 | # under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe.h b/drivers/net/ixgbe/ixgbe.h index 8da8eb535084..303e7bd39b67 100644 --- a/drivers/net/ixgbe/ixgbe.h +++ b/drivers/net/ixgbe/ixgbe.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c index 204177d78cec..3103f4165311 100644 --- a/drivers/net/ixgbe/ixgbe_82598.c +++ b/drivers/net/ixgbe/ixgbe_82598.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_82599.c b/drivers/net/ixgbe/ixgbe_82599.c index 538340527aa6..b49bd6b9feb7 100644 --- a/drivers/net/ixgbe/ixgbe_82599.c +++ b/drivers/net/ixgbe/ixgbe_82599.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index 688b8ca5da32..21f158f79dd0 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_common.h b/drivers/net/ixgbe/ixgbe_common.h index 27f3214bed2e..dfff0ffaa502 100644 --- a/drivers/net/ixgbe/ixgbe_common.h +++ b/drivers/net/ixgbe/ixgbe_common.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb.c b/drivers/net/ixgbe/ixgbe_dcb.c index a1562287342f..9aea4f04bbd2 100644 --- a/drivers/net/ixgbe/ixgbe_dcb.c +++ b/drivers/net/ixgbe/ixgbe_dcb.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb.h b/drivers/net/ixgbe/ixgbe_dcb.h index 64a9fa15c059..5caafd4afbc3 100644 --- a/drivers/net/ixgbe/ixgbe_dcb.h +++ b/drivers/net/ixgbe/ixgbe_dcb.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82598.c b/drivers/net/ixgbe/ixgbe_dcb_82598.c index f30263898ebc..f0e9279d4669 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82598.c +++ b/drivers/net/ixgbe/ixgbe_dcb_82598.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82598.h b/drivers/net/ixgbe/ixgbe_dcb_82598.h index ebbe53c352a7..cc728fa092e2 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82598.h +++ b/drivers/net/ixgbe/ixgbe_dcb_82598.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82599.c b/drivers/net/ixgbe/ixgbe_dcb_82599.c index ec8a252636d3..4f7a26ab411e 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82599.c +++ b/drivers/net/ixgbe/ixgbe_dcb_82599.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82599.h b/drivers/net/ixgbe/ixgbe_dcb_82599.h index 9e5e2827e4af..0f3f791e1e1d 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82599.h +++ b/drivers/net/ixgbe/ixgbe_dcb_82599.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_nl.c b/drivers/net/ixgbe/ixgbe_dcb_nl.c index 3c7a79a7d7c6..dd4883f642be 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_nl.c +++ b/drivers/net/ixgbe/ixgbe_dcb_nl.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
| @@ -223,7 +223,7 @@ static void ixgbe_dcbnl_set_pg_bwg_cfg_tx(struct net_device *netdev, int bwg_id, | |||
| 223 | 223 | ||
| 224 | if (adapter->temp_dcb_cfg.bw_percentage[0][bwg_id] != | 224 | if (adapter->temp_dcb_cfg.bw_percentage[0][bwg_id] != |
| 225 | adapter->dcb_cfg.bw_percentage[0][bwg_id]) { | 225 | adapter->dcb_cfg.bw_percentage[0][bwg_id]) { |
| 226 | adapter->dcb_set_bitmap |= BIT_PG_RX; | 226 | adapter->dcb_set_bitmap |= BIT_PG_TX; |
| 227 | adapter->dcb_set_bitmap |= BIT_RESETLINK; | 227 | adapter->dcb_set_bitmap |= BIT_RESETLINK; |
| 228 | } | 228 | } |
| 229 | } | 229 | } |
| @@ -341,6 +341,12 @@ static u8 ixgbe_dcbnl_set_all(struct net_device *netdev) | |||
| 341 | if (!adapter->dcb_set_bitmap) | 341 | if (!adapter->dcb_set_bitmap) |
| 342 | return DCB_NO_HW_CHG; | 342 | return DCB_NO_HW_CHG; |
| 343 | 343 | ||
| 344 | ret = ixgbe_copy_dcb_cfg(&adapter->temp_dcb_cfg, &adapter->dcb_cfg, | ||
| 345 | adapter->ring_feature[RING_F_DCB].indices); | ||
| 346 | |||
| 347 | if (ret) | ||
| 348 | return DCB_NO_HW_CHG; | ||
| 349 | |||
| 344 | /* | 350 | /* |
| 345 | * Only take down the adapter if the configuration change | 351 | * Only take down the adapter if the configuration change |
| 346 | * requires a reset. | 352 | * requires a reset. |
| @@ -359,14 +365,6 @@ static u8 ixgbe_dcbnl_set_all(struct net_device *netdev) | |||
| 359 | } | 365 | } |
| 360 | } | 366 | } |
| 361 | 367 | ||
| 362 | ret = ixgbe_copy_dcb_cfg(&adapter->temp_dcb_cfg, &adapter->dcb_cfg, | ||
| 363 | adapter->ring_feature[RING_F_DCB].indices); | ||
| 364 | if (ret) { | ||
| 365 | if (adapter->dcb_set_bitmap & BIT_RESETLINK) | ||
| 366 | clear_bit(__IXGBE_RESETTING, &adapter->state); | ||
| 367 | return DCB_NO_HW_CHG; | ||
| 368 | } | ||
| 369 | |||
| 370 | if (adapter->dcb_cfg.pfc_mode_enable) { | 368 | if (adapter->dcb_cfg.pfc_mode_enable) { |
| 371 | if ((adapter->hw.mac.type != ixgbe_mac_82598EB) && | 369 | if ((adapter->hw.mac.type != ixgbe_mac_82598EB) && |
| 372 | (adapter->hw.fc.current_mode != ixgbe_fc_pfc)) | 370 | (adapter->hw.fc.current_mode != ixgbe_fc_pfc)) |
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c index 0bd49d3b9f65..d77961fc75f9 100644 --- a/drivers/net/ixgbe/ixgbe_ethtool.c +++ b/drivers/net/ixgbe/ixgbe_ethtool.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_fcoe.c b/drivers/net/ixgbe/ixgbe_fcoe.c index da32a108a7b4..e9a20c88c155 100644 --- a/drivers/net/ixgbe/ixgbe_fcoe.c +++ b/drivers/net/ixgbe/ixgbe_fcoe.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_fcoe.h b/drivers/net/ixgbe/ixgbe_fcoe.h index de8ff53187da..abf4b2b3f252 100644 --- a/drivers/net/ixgbe/ixgbe_fcoe.h +++ b/drivers/net/ixgbe/ixgbe_fcoe.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 1a2ea621e371..b5f64ad67975 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
| @@ -52,7 +52,7 @@ static const char ixgbe_driver_string[] = | |||
| 52 | 52 | ||
| 53 | #define DRV_VERSION "2.0.44-k2" | 53 | #define DRV_VERSION "2.0.44-k2" |
| 54 | const char ixgbe_driver_version[] = DRV_VERSION; | 54 | const char ixgbe_driver_version[] = DRV_VERSION; |
| 55 | static char ixgbe_copyright[] = "Copyright (c) 1999-2009 Intel Corporation."; | 55 | static char ixgbe_copyright[] = "Copyright (c) 1999-2010 Intel Corporation."; |
| 56 | 56 | ||
| 57 | static const struct ixgbe_info *ixgbe_info_tbl[] = { | 57 | static const struct ixgbe_info *ixgbe_info_tbl[] = { |
| 58 | [board_82598] = &ixgbe_82598_info, | 58 | [board_82598] = &ixgbe_82598_info, |
| @@ -262,10 +262,12 @@ static inline bool ixgbe_tx_is_paused(struct ixgbe_adapter *adapter, | |||
| 262 | int reg_idx = tx_ring->reg_idx; | 262 | int reg_idx = tx_ring->reg_idx; |
| 263 | int dcb_i = adapter->ring_feature[RING_F_DCB].indices; | 263 | int dcb_i = adapter->ring_feature[RING_F_DCB].indices; |
| 264 | 264 | ||
| 265 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { | 265 | switch (adapter->hw.mac.type) { |
| 266 | case ixgbe_mac_82598EB: | ||
| 266 | tc = reg_idx >> 2; | 267 | tc = reg_idx >> 2; |
| 267 | txoff = IXGBE_TFCS_TXOFF0; | 268 | txoff = IXGBE_TFCS_TXOFF0; |
| 268 | } else if (adapter->hw.mac.type == ixgbe_mac_82599EB) { | 269 | break; |
| 270 | case ixgbe_mac_82599EB: | ||
| 269 | tc = 0; | 271 | tc = 0; |
| 270 | txoff = IXGBE_TFCS_TXOFF; | 272 | txoff = IXGBE_TFCS_TXOFF; |
| 271 | if (dcb_i == 8) { | 273 | if (dcb_i == 8) { |
| @@ -284,6 +286,9 @@ static inline bool ixgbe_tx_is_paused(struct ixgbe_adapter *adapter, | |||
| 284 | tc += (reg_idx - 96) >> 4; | 286 | tc += (reg_idx - 96) >> 4; |
| 285 | } | 287 | } |
| 286 | } | 288 | } |
| 289 | break; | ||
| 290 | default: | ||
| 291 | tc = 0; | ||
| 287 | } | 292 | } |
| 288 | txoff <<= tc; | 293 | txoff <<= tc; |
| 289 | } | 294 | } |
| @@ -4923,7 +4928,7 @@ static int ixgbe_tso(struct ixgbe_adapter *adapter, | |||
| 4923 | iph->daddr, 0, | 4928 | iph->daddr, 0, |
| 4924 | IPPROTO_TCP, | 4929 | IPPROTO_TCP, |
| 4925 | 0); | 4930 | 0); |
| 4926 | } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) { | 4931 | } else if (skb_is_gso_v6(skb)) { |
| 4927 | ipv6_hdr(skb)->payload_len = 0; | 4932 | ipv6_hdr(skb)->payload_len = 0; |
| 4928 | tcp_hdr(skb)->check = | 4933 | tcp_hdr(skb)->check = |
| 4929 | ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | 4934 | ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| @@ -5162,14 +5167,14 @@ dma_error: | |||
| 5162 | tx_buffer_info->dma = 0; | 5167 | tx_buffer_info->dma = 0; |
| 5163 | tx_buffer_info->time_stamp = 0; | 5168 | tx_buffer_info->time_stamp = 0; |
| 5164 | tx_buffer_info->next_to_watch = 0; | 5169 | tx_buffer_info->next_to_watch = 0; |
| 5165 | count--; | 5170 | if (count) |
| 5171 | count--; | ||
| 5166 | 5172 | ||
| 5167 | /* clear timestamp and dma mappings for remaining portion of packet */ | 5173 | /* clear timestamp and dma mappings for remaining portion of packet */ |
| 5168 | while (count >= 0) { | 5174 | while (count--) { |
| 5169 | count--; | 5175 | if (i==0) |
| 5170 | i--; | ||
| 5171 | if (i < 0) | ||
| 5172 | i += tx_ring->count; | 5176 | i += tx_ring->count; |
| 5177 | i--; | ||
| 5173 | tx_buffer_info = &tx_ring->tx_buffer_info[i]; | 5178 | tx_buffer_info = &tx_ring->tx_buffer_info[i]; |
| 5174 | ixgbe_unmap_and_free_tx_resource(adapter, tx_buffer_info); | 5179 | ixgbe_unmap_and_free_tx_resource(adapter, tx_buffer_info); |
| 5175 | } | 5180 | } |
| @@ -5571,6 +5576,10 @@ static void ixgbe_netpoll(struct net_device *netdev) | |||
| 5571 | struct ixgbe_adapter *adapter = netdev_priv(netdev); | 5576 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 5572 | int i; | 5577 | int i; |
| 5573 | 5578 | ||
| 5579 | /* if interface is down do nothing */ | ||
| 5580 | if (test_bit(__IXGBE_DOWN, &adapter->state)) | ||
| 5581 | return; | ||
| 5582 | |||
| 5574 | adapter->flags |= IXGBE_FLAG_IN_NETPOLL; | 5583 | adapter->flags |= IXGBE_FLAG_IN_NETPOLL; |
| 5575 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { | 5584 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
| 5576 | int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS; | 5585 | int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS; |
diff --git a/drivers/net/ixgbe/ixgbe_phy.c b/drivers/net/ixgbe/ixgbe_phy.c index 9ecad17522c3..1c1efd386956 100644 --- a/drivers/net/ixgbe/ixgbe_phy.c +++ b/drivers/net/ixgbe/ixgbe_phy.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_phy.h b/drivers/net/ixgbe/ixgbe_phy.h index 9b700f5bf1ed..9cf5f3b4cc5d 100644 --- a/drivers/net/ixgbe/ixgbe_phy.h +++ b/drivers/net/ixgbe/ixgbe_phy.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ixgbe/ixgbe_type.h b/drivers/net/ixgbe/ixgbe_type.h index 84650c6ebe03..9eafddfa1b97 100644 --- a/drivers/net/ixgbe/ixgbe_type.h +++ b/drivers/net/ixgbe/ixgbe_type.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | 2 | ||
| 3 | Intel 10 Gigabit PCI Express Linux driver | 3 | Intel 10 Gigabit PCI Express Linux driver |
| 4 | Copyright(c) 1999 - 2009 Intel Corporation. | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
diff --git a/drivers/net/ks8851_mll.c b/drivers/net/ks8851_mll.c index c146304d8d6c..c0ceebccaa49 100644 --- a/drivers/net/ks8851_mll.c +++ b/drivers/net/ks8851_mll.c | |||
| @@ -854,8 +854,8 @@ static void ks_update_link_status(struct net_device *netdev, struct ks_net *ks) | |||
| 854 | 854 | ||
| 855 | static irqreturn_t ks_irq(int irq, void *pw) | 855 | static irqreturn_t ks_irq(int irq, void *pw) |
| 856 | { | 856 | { |
| 857 | struct ks_net *ks = pw; | 857 | struct net_device *netdev = pw; |
| 858 | struct net_device *netdev = ks->netdev; | 858 | struct ks_net *ks = netdev_priv(netdev); |
| 859 | u16 status; | 859 | u16 status; |
| 860 | 860 | ||
| 861 | /*this should be the first in IRQ handler */ | 861 | /*this should be the first in IRQ handler */ |
diff --git a/drivers/net/ll_temac_main.c b/drivers/net/ll_temac_main.c index 336e7c7a9275..a8522bd73ae7 100644 --- a/drivers/net/ll_temac_main.c +++ b/drivers/net/ll_temac_main.c | |||
| @@ -134,7 +134,7 @@ static int temac_dma_bd_init(struct net_device *ndev) | |||
| 134 | struct sk_buff *skb; | 134 | struct sk_buff *skb; |
| 135 | int i; | 135 | int i; |
| 136 | 136 | ||
| 137 | lp->rx_skb = kzalloc(sizeof(struct sk_buff)*RX_BD_NUM, GFP_KERNEL); | 137 | lp->rx_skb = kzalloc(sizeof(*lp->rx_skb) * RX_BD_NUM, GFP_KERNEL); |
| 138 | /* allocate the tx and rx ring buffer descriptors. */ | 138 | /* allocate the tx and rx ring buffer descriptors. */ |
| 139 | /* returns a virtual addres and a physical address. */ | 139 | /* returns a virtual addres and a physical address. */ |
| 140 | lp->tx_bd_v = dma_alloc_coherent(ndev->dev.parent, | 140 | lp->tx_bd_v = dma_alloc_coherent(ndev->dev.parent, |
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 1405a170bb43..af67af55efe7 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
| @@ -656,6 +656,7 @@ static int rxq_refill(struct rx_queue *rxq, int budget) | |||
| 656 | struct sk_buff *skb; | 656 | struct sk_buff *skb; |
| 657 | int rx; | 657 | int rx; |
| 658 | struct rx_desc *rx_desc; | 658 | struct rx_desc *rx_desc; |
| 659 | int size; | ||
| 659 | 660 | ||
| 660 | skb = __skb_dequeue(&mp->rx_recycle); | 661 | skb = __skb_dequeue(&mp->rx_recycle); |
| 661 | if (skb == NULL) | 662 | if (skb == NULL) |
| @@ -678,10 +679,11 @@ static int rxq_refill(struct rx_queue *rxq, int budget) | |||
| 678 | 679 | ||
| 679 | rx_desc = rxq->rx_desc_area + rx; | 680 | rx_desc = rxq->rx_desc_area + rx; |
| 680 | 681 | ||
| 682 | size = skb->end - skb->data; | ||
| 681 | rx_desc->buf_ptr = dma_map_single(mp->dev->dev.parent, | 683 | rx_desc->buf_ptr = dma_map_single(mp->dev->dev.parent, |
| 682 | skb->data, mp->skb_size, | 684 | skb->data, size, |
| 683 | DMA_FROM_DEVICE); | 685 | DMA_FROM_DEVICE); |
| 684 | rx_desc->buf_size = mp->skb_size; | 686 | rx_desc->buf_size = size; |
| 685 | rxq->rx_skb[rx] = skb; | 687 | rxq->rx_skb[rx] = skb; |
| 686 | wmb(); | 688 | wmb(); |
| 687 | rx_desc->cmd_sts = BUFFER_OWNED_BY_DMA | RX_ENABLE_INTERRUPT; | 689 | rx_desc->cmd_sts = BUFFER_OWNED_BY_DMA | RX_ENABLE_INTERRUPT; |
diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index 76cd1f3e9fc8..9bc5bd1d538a 100644 --- a/drivers/net/netxen/netxen_nic.h +++ b/drivers/net/netxen/netxen_nic.h | |||
| @@ -53,8 +53,8 @@ | |||
| 53 | 53 | ||
| 54 | #define _NETXEN_NIC_LINUX_MAJOR 4 | 54 | #define _NETXEN_NIC_LINUX_MAJOR 4 |
| 55 | #define _NETXEN_NIC_LINUX_MINOR 0 | 55 | #define _NETXEN_NIC_LINUX_MINOR 0 |
| 56 | #define _NETXEN_NIC_LINUX_SUBVERSION 65 | 56 | #define _NETXEN_NIC_LINUX_SUBVERSION 72 |
| 57 | #define NETXEN_NIC_LINUX_VERSIONID "4.0.65" | 57 | #define NETXEN_NIC_LINUX_VERSIONID "4.0.72" |
| 58 | 58 | ||
| 59 | #define NETXEN_VERSION_CODE(a, b, c) (((a) << 24) + ((b) << 16) + (c)) | 59 | #define NETXEN_VERSION_CODE(a, b, c) (((a) << 24) + ((b) << 16) + (c)) |
| 60 | #define _major(v) (((v) >> 24) & 0xff) | 60 | #define _major(v) (((v) >> 24) & 0xff) |
diff --git a/drivers/net/netxen/netxen_nic_ethtool.c b/drivers/net/netxen/netxen_nic_ethtool.c index ddd704ae0188..542f408333ff 100644 --- a/drivers/net/netxen/netxen_nic_ethtool.c +++ b/drivers/net/netxen/netxen_nic_ethtool.c | |||
| @@ -66,7 +66,7 @@ static const char netxen_nic_gstrings_test[][ETH_GSTRING_LEN] = { | |||
| 66 | 66 | ||
| 67 | #define NETXEN_NIC_TEST_LEN ARRAY_SIZE(netxen_nic_gstrings_test) | 67 | #define NETXEN_NIC_TEST_LEN ARRAY_SIZE(netxen_nic_gstrings_test) |
| 68 | 68 | ||
| 69 | #define NETXEN_NIC_REGS_COUNT 42 | 69 | #define NETXEN_NIC_REGS_COUNT 30 |
| 70 | #define NETXEN_NIC_REGS_LEN (NETXEN_NIC_REGS_COUNT * sizeof(__le32)) | 70 | #define NETXEN_NIC_REGS_LEN (NETXEN_NIC_REGS_COUNT * sizeof(__le32)) |
| 71 | #define NETXEN_MAX_EEPROM_LEN 1024 | 71 | #define NETXEN_MAX_EEPROM_LEN 1024 |
| 72 | 72 | ||
| @@ -312,150 +312,91 @@ static int netxen_nic_get_regs_len(struct net_device *dev) | |||
| 312 | return NETXEN_NIC_REGS_LEN; | 312 | return NETXEN_NIC_REGS_LEN; |
| 313 | } | 313 | } |
| 314 | 314 | ||
| 315 | struct netxen_niu_regs { | ||
| 316 | __u32 reg[NETXEN_NIC_REGS_COUNT]; | ||
| 317 | }; | ||
| 318 | |||
| 319 | static struct netxen_niu_regs niu_registers[] = { | ||
| 320 | { | ||
| 321 | /* GB Mode */ | ||
| 322 | { | ||
| 323 | NETXEN_NIU_GB_SERDES_RESET, | ||
| 324 | NETXEN_NIU_GB0_MII_MODE, | ||
| 325 | NETXEN_NIU_GB1_MII_MODE, | ||
| 326 | NETXEN_NIU_GB2_MII_MODE, | ||
| 327 | NETXEN_NIU_GB3_MII_MODE, | ||
| 328 | NETXEN_NIU_GB0_GMII_MODE, | ||
| 329 | NETXEN_NIU_GB1_GMII_MODE, | ||
| 330 | NETXEN_NIU_GB2_GMII_MODE, | ||
| 331 | NETXEN_NIU_GB3_GMII_MODE, | ||
| 332 | NETXEN_NIU_REMOTE_LOOPBACK, | ||
| 333 | NETXEN_NIU_GB0_HALF_DUPLEX, | ||
| 334 | NETXEN_NIU_GB1_HALF_DUPLEX, | ||
| 335 | NETXEN_NIU_RESET_SYS_FIFOS, | ||
| 336 | NETXEN_NIU_GB_CRC_DROP, | ||
| 337 | NETXEN_NIU_GB_DROP_WRONGADDR, | ||
| 338 | NETXEN_NIU_TEST_MUX_CTL, | ||
| 339 | |||
| 340 | NETXEN_NIU_GB_MAC_CONFIG_0(0), | ||
| 341 | NETXEN_NIU_GB_MAC_CONFIG_1(0), | ||
| 342 | NETXEN_NIU_GB_HALF_DUPLEX_CTRL(0), | ||
| 343 | NETXEN_NIU_GB_MAX_FRAME_SIZE(0), | ||
| 344 | NETXEN_NIU_GB_TEST_REG(0), | ||
| 345 | NETXEN_NIU_GB_MII_MGMT_CONFIG(0), | ||
| 346 | NETXEN_NIU_GB_MII_MGMT_COMMAND(0), | ||
| 347 | NETXEN_NIU_GB_MII_MGMT_ADDR(0), | ||
| 348 | NETXEN_NIU_GB_MII_MGMT_CTRL(0), | ||
| 349 | NETXEN_NIU_GB_MII_MGMT_STATUS(0), | ||
| 350 | NETXEN_NIU_GB_MII_MGMT_INDICATE(0), | ||
| 351 | NETXEN_NIU_GB_INTERFACE_CTRL(0), | ||
| 352 | NETXEN_NIU_GB_INTERFACE_STATUS(0), | ||
| 353 | NETXEN_NIU_GB_STATION_ADDR_0(0), | ||
| 354 | NETXEN_NIU_GB_STATION_ADDR_1(0), | ||
| 355 | -1, | ||
| 356 | } | ||
| 357 | }, | ||
| 358 | { | ||
| 359 | /* XG Mode */ | ||
| 360 | { | ||
| 361 | NETXEN_NIU_XG_SINGLE_TERM, | ||
| 362 | NETXEN_NIU_XG_DRIVE_HI, | ||
| 363 | NETXEN_NIU_XG_DRIVE_LO, | ||
| 364 | NETXEN_NIU_XG_DTX, | ||
| 365 | NETXEN_NIU_XG_DEQ, | ||
| 366 | NETXEN_NIU_XG_WORD_ALIGN, | ||
| 367 | NETXEN_NIU_XG_RESET, | ||
| 368 | NETXEN_NIU_XG_POWER_DOWN, | ||
| 369 | NETXEN_NIU_XG_RESET_PLL, | ||
| 370 | NETXEN_NIU_XG_SERDES_LOOPBACK, | ||
| 371 | NETXEN_NIU_XG_DO_BYTE_ALIGN, | ||
| 372 | NETXEN_NIU_XG_TX_ENABLE, | ||
| 373 | NETXEN_NIU_XG_RX_ENABLE, | ||
| 374 | NETXEN_NIU_XG_STATUS, | ||
| 375 | NETXEN_NIU_XG_PAUSE_THRESHOLD, | ||
| 376 | NETXEN_NIU_XGE_CONFIG_0, | ||
| 377 | NETXEN_NIU_XGE_CONFIG_1, | ||
| 378 | NETXEN_NIU_XGE_IPG, | ||
| 379 | NETXEN_NIU_XGE_STATION_ADDR_0_HI, | ||
| 380 | NETXEN_NIU_XGE_STATION_ADDR_0_1, | ||
| 381 | NETXEN_NIU_XGE_STATION_ADDR_1_LO, | ||
| 382 | NETXEN_NIU_XGE_STATUS, | ||
| 383 | NETXEN_NIU_XGE_MAX_FRAME_SIZE, | ||
| 384 | NETXEN_NIU_XGE_PAUSE_FRAME_VALUE, | ||
| 385 | NETXEN_NIU_XGE_TX_BYTE_CNT, | ||
| 386 | NETXEN_NIU_XGE_TX_FRAME_CNT, | ||
| 387 | NETXEN_NIU_XGE_RX_BYTE_CNT, | ||
| 388 | NETXEN_NIU_XGE_RX_FRAME_CNT, | ||
| 389 | NETXEN_NIU_XGE_AGGR_ERROR_CNT, | ||
| 390 | NETXEN_NIU_XGE_MULTICAST_FRAME_CNT, | ||
| 391 | NETXEN_NIU_XGE_UNICAST_FRAME_CNT, | ||
| 392 | NETXEN_NIU_XGE_CRC_ERROR_CNT, | ||
| 393 | NETXEN_NIU_XGE_OVERSIZE_FRAME_ERR, | ||
| 394 | NETXEN_NIU_XGE_UNDERSIZE_FRAME_ERR, | ||
| 395 | NETXEN_NIU_XGE_LOCAL_ERROR_CNT, | ||
| 396 | NETXEN_NIU_XGE_REMOTE_ERROR_CNT, | ||
| 397 | NETXEN_NIU_XGE_CONTROL_CHAR_CNT, | ||
| 398 | NETXEN_NIU_XGE_PAUSE_FRAME_CNT, | ||
| 399 | -1, | ||
| 400 | } | ||
| 401 | } | ||
| 402 | }; | ||
| 403 | |||
| 404 | static void | 315 | static void |
| 405 | netxen_nic_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *p) | 316 | netxen_nic_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *p) |
| 406 | { | 317 | { |
| 407 | struct netxen_adapter *adapter = netdev_priv(dev); | 318 | struct netxen_adapter *adapter = netdev_priv(dev); |
| 408 | __u32 mode, *regs_buff = p; | 319 | struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; |
| 409 | int i, window; | 320 | struct nx_host_sds_ring *sds_ring; |
| 321 | u32 *regs_buff = p; | ||
| 322 | int ring, i = 0; | ||
| 323 | int port = adapter->physical_port; | ||
| 410 | 324 | ||
| 411 | memset(p, 0, NETXEN_NIC_REGS_LEN); | 325 | memset(p, 0, NETXEN_NIC_REGS_LEN); |
| 326 | |||
| 412 | regs->version = (1 << 24) | (adapter->ahw.revision_id << 16) | | 327 | regs->version = (1 << 24) | (adapter->ahw.revision_id << 16) | |
| 413 | (adapter->pdev)->device; | 328 | (adapter->pdev)->device; |
| 414 | /* which mode */ | ||
| 415 | regs_buff[0] = NXRD32(adapter, NETXEN_NIU_MODE); | ||
| 416 | mode = regs_buff[0]; | ||
| 417 | |||
| 418 | /* Common registers to all the modes */ | ||
| 419 | regs_buff[2] = NXRD32(adapter, NETXEN_NIU_STRAP_VALUE_SAVE_HIGHER); | ||
| 420 | /* GB/XGB Mode */ | ||
| 421 | mode = (mode / 2) - 1; | ||
| 422 | window = 0; | ||
| 423 | if (mode <= 1) { | ||
| 424 | for (i = 3; niu_registers[mode].reg[i - 3] != -1; i++) { | ||
| 425 | /* GB: port specific registers */ | ||
| 426 | if (mode == 0 && i >= 19) | ||
| 427 | window = adapter->physical_port * | ||
| 428 | NETXEN_NIC_PORT_WINDOW; | ||
| 429 | |||
| 430 | regs_buff[i] = NXRD32(adapter, | ||
| 431 | niu_registers[mode].reg[i - 3] + window); | ||
| 432 | } | ||
| 433 | 329 | ||
| 330 | if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | ||
| 331 | return; | ||
| 332 | |||
| 333 | regs_buff[i++] = NXRD32(adapter, CRB_CMDPEG_STATE); | ||
| 334 | regs_buff[i++] = NXRD32(adapter, CRB_RCVPEG_STATE); | ||
| 335 | regs_buff[i++] = NXRD32(adapter, CRB_FW_CAPABILITIES_1); | ||
| 336 | regs_buff[i++] = NXRDIO(adapter, adapter->crb_int_state_reg); | ||
| 337 | regs_buff[i++] = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | ||
| 338 | regs_buff[i++] = NXRD32(adapter, NX_CRB_DEV_STATE); | ||
| 339 | regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER); | ||
| 340 | regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_HALT_STATUS1); | ||
| 341 | regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_HALT_STATUS2); | ||
| 342 | |||
| 343 | regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_0+0x3c); | ||
| 344 | regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_1+0x3c); | ||
| 345 | regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_2+0x3c); | ||
| 346 | regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_3+0x3c); | ||
| 347 | |||
| 348 | if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | ||
| 349 | |||
| 350 | regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_4+0x3c); | ||
| 351 | i += 2; | ||
| 352 | |||
| 353 | regs_buff[i++] = NXRD32(adapter, CRB_XG_STATE_P3); | ||
| 354 | regs_buff[i++] = le32_to_cpu(*(adapter->tx_ring->hw_consumer)); | ||
| 355 | |||
| 356 | } else { | ||
| 357 | i++; | ||
| 358 | |||
| 359 | regs_buff[i++] = NXRD32(adapter, | ||
| 360 | NETXEN_NIU_XGE_CONFIG_0+(0x10000*port)); | ||
| 361 | regs_buff[i++] = NXRD32(adapter, | ||
| 362 | NETXEN_NIU_XGE_CONFIG_1+(0x10000*port)); | ||
| 363 | |||
| 364 | regs_buff[i++] = NXRD32(adapter, CRB_XG_STATE); | ||
| 365 | regs_buff[i++] = NXRDIO(adapter, | ||
| 366 | adapter->tx_ring->crb_cmd_consumer); | ||
| 367 | } | ||
| 368 | |||
| 369 | regs_buff[i++] = NXRDIO(adapter, adapter->tx_ring->crb_cmd_producer); | ||
| 370 | |||
| 371 | regs_buff[i++] = NXRDIO(adapter, | ||
| 372 | recv_ctx->rds_rings[0].crb_rcv_producer); | ||
| 373 | regs_buff[i++] = NXRDIO(adapter, | ||
| 374 | recv_ctx->rds_rings[1].crb_rcv_producer); | ||
| 375 | |||
| 376 | regs_buff[i++] = adapter->max_sds_rings; | ||
| 377 | |||
| 378 | for (ring = 0; ring < adapter->max_sds_rings; ring++) { | ||
| 379 | sds_ring = &(recv_ctx->sds_rings[ring]); | ||
| 380 | regs_buff[i++] = NXRDIO(adapter, | ||
| 381 | sds_ring->crb_sts_consumer); | ||
| 434 | } | 382 | } |
| 435 | } | 383 | } |
| 436 | 384 | ||
| 437 | static u32 netxen_nic_test_link(struct net_device *dev) | 385 | static u32 netxen_nic_test_link(struct net_device *dev) |
| 438 | { | 386 | { |
| 439 | struct netxen_adapter *adapter = netdev_priv(dev); | 387 | struct netxen_adapter *adapter = netdev_priv(dev); |
| 440 | __u32 status; | 388 | u32 val, port; |
| 441 | int val; | ||
| 442 | 389 | ||
| 443 | /* read which mode */ | 390 | port = adapter->physical_port; |
| 444 | if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 391 | if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { |
| 445 | if (adapter->phy_read && | 392 | val = NXRD32(adapter, CRB_XG_STATE_P3); |
| 446 | adapter->phy_read(adapter, | 393 | val = XG_LINK_STATE_P3(adapter->ahw.pci_func, val); |
| 447 | NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, | 394 | return (val == XG_LINK_UP_P3) ? 0 : 1; |
| 448 | &status) != 0) | 395 | } else { |
| 449 | return -EIO; | ||
| 450 | else { | ||
| 451 | val = netxen_get_phy_link(status); | ||
| 452 | return !val; | ||
| 453 | } | ||
| 454 | } else if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | ||
| 455 | val = NXRD32(adapter, CRB_XG_STATE); | 396 | val = NXRD32(adapter, CRB_XG_STATE); |
| 397 | val = (val >> port*8) & 0xff; | ||
| 456 | return (val == XG_LINK_UP) ? 0 : 1; | 398 | return (val == XG_LINK_UP) ? 0 : 1; |
| 457 | } | 399 | } |
| 458 | return -EIO; | ||
| 459 | } | 400 | } |
| 460 | 401 | ||
| 461 | static int | 402 | static int |
diff --git a/drivers/net/netxen/netxen_nic_hw.c b/drivers/net/netxen/netxen_nic_hw.c index 2e364fee3cbb..85e28e60ecf1 100644 --- a/drivers/net/netxen/netxen_nic_hw.c +++ b/drivers/net/netxen/netxen_nic_hw.c | |||
| @@ -345,8 +345,7 @@ netxen_pcie_sem_lock(struct netxen_adapter *adapter, int sem, u32 id_reg) | |||
| 345 | void | 345 | void |
| 346 | netxen_pcie_sem_unlock(struct netxen_adapter *adapter, int sem) | 346 | netxen_pcie_sem_unlock(struct netxen_adapter *adapter, int sem) |
| 347 | { | 347 | { |
| 348 | int val; | 348 | NXRD32(adapter, NETXEN_PCIE_REG(PCIE_SEM_UNLOCK(sem))); |
| 349 | val = NXRD32(adapter, NETXEN_PCIE_REG(PCIE_SEM_UNLOCK(sem))); | ||
| 350 | } | 349 | } |
| 351 | 350 | ||
| 352 | int netxen_niu_xg_init_port(struct netxen_adapter *adapter, int port) | 351 | int netxen_niu_xg_init_port(struct netxen_adapter *adapter, int port) |
| @@ -691,6 +690,9 @@ void netxen_p3_nic_set_multi(struct net_device *netdev) | |||
| 691 | struct list_head *head; | 690 | struct list_head *head; |
| 692 | nx_mac_list_t *cur; | 691 | nx_mac_list_t *cur; |
| 693 | 692 | ||
| 693 | if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | ||
| 694 | return; | ||
| 695 | |||
| 694 | list_splice_tail_init(&adapter->mac_list, &del_list); | 696 | list_splice_tail_init(&adapter->mac_list, &del_list); |
| 695 | 697 | ||
| 696 | nx_p3_nic_add_mac(adapter, adapter->mac_addr, &del_list); | 698 | nx_p3_nic_add_mac(adapter, adapter->mac_addr, &del_list); |
diff --git a/drivers/net/netxen/netxen_nic_init.c b/drivers/net/netxen/netxen_nic_init.c index 02f8d4b4db63..64cff68d372c 100644 --- a/drivers/net/netxen/netxen_nic_init.c +++ b/drivers/net/netxen/netxen_nic_init.c | |||
| @@ -184,6 +184,8 @@ skip_rds: | |||
| 184 | 184 | ||
| 185 | tx_ring = adapter->tx_ring; | 185 | tx_ring = adapter->tx_ring; |
| 186 | vfree(tx_ring->cmd_buf_arr); | 186 | vfree(tx_ring->cmd_buf_arr); |
| 187 | kfree(tx_ring); | ||
| 188 | adapter->tx_ring = NULL; | ||
| 187 | } | 189 | } |
| 188 | 190 | ||
| 189 | int netxen_alloc_sw_resources(struct netxen_adapter *adapter) | 191 | int netxen_alloc_sw_resources(struct netxen_adapter *adapter) |
| @@ -782,7 +784,7 @@ netxen_need_fw_reset(struct netxen_adapter *adapter) | |||
| 782 | if (NXRD32(adapter, CRB_CMDPEG_STATE) == PHAN_INITIALIZE_FAILED) | 784 | if (NXRD32(adapter, CRB_CMDPEG_STATE) == PHAN_INITIALIZE_FAILED) |
| 783 | return 1; | 785 | return 1; |
| 784 | 786 | ||
| 785 | old_count = count = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER); | 787 | old_count = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER); |
| 786 | 788 | ||
| 787 | for (i = 0; i < 10; i++) { | 789 | for (i = 0; i < 10; i++) { |
| 788 | 790 | ||
diff --git a/drivers/net/netxen/netxen_nic_main.c b/drivers/net/netxen/netxen_nic_main.c index 6cae26a5bd67..9f9d6081959b 100644 --- a/drivers/net/netxen/netxen_nic_main.c +++ b/drivers/net/netxen/netxen_nic_main.c | |||
| @@ -340,7 +340,7 @@ netxen_check_hw_init(struct netxen_adapter *adapter, int first_boot) | |||
| 340 | if (!(first_boot & 0x4)) { | 340 | if (!(first_boot & 0x4)) { |
| 341 | first_boot |= 0x4; | 341 | first_boot |= 0x4; |
| 342 | NXWR32(adapter, NETXEN_PCIE_REG(0x4), first_boot); | 342 | NXWR32(adapter, NETXEN_PCIE_REG(0x4), first_boot); |
| 343 | first_boot = NXRD32(adapter, NETXEN_PCIE_REG(0x4)); | 343 | NXRD32(adapter, NETXEN_PCIE_REG(0x4)); |
| 344 | } | 344 | } |
| 345 | 345 | ||
| 346 | /* This is the first boot after power up */ | 346 | /* This is the first boot after power up */ |
| @@ -1898,12 +1898,8 @@ static void netxen_nic_handle_phy_intr(struct netxen_adapter *adapter) | |||
| 1898 | linkup = (val == XG_LINK_UP_P3); | 1898 | linkup = (val == XG_LINK_UP_P3); |
| 1899 | } else { | 1899 | } else { |
| 1900 | val = NXRD32(adapter, CRB_XG_STATE); | 1900 | val = NXRD32(adapter, CRB_XG_STATE); |
| 1901 | if (adapter->ahw.port_type == NETXEN_NIC_GBE) | 1901 | val = (val >> port*8) & 0xff; |
| 1902 | linkup = (val >> port) & 1; | 1902 | linkup = (val == XG_LINK_UP); |
| 1903 | else { | ||
| 1904 | val = (val >> port*8) & 0xff; | ||
| 1905 | linkup = (val == XG_LINK_UP); | ||
| 1906 | } | ||
| 1907 | } | 1903 | } |
| 1908 | 1904 | ||
| 1909 | netxen_advert_link_change(adapter, linkup); | 1905 | netxen_advert_link_change(adapter, linkup); |
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index 8ce58c4c7dd3..2aed2b382c40 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
| @@ -2844,7 +2844,7 @@ static int tcam_wait_bit(struct niu *np, u64 bit) | |||
| 2844 | break; | 2844 | break; |
| 2845 | udelay(1); | 2845 | udelay(1); |
| 2846 | } | 2846 | } |
| 2847 | if (limit < 0) | 2847 | if (limit <= 0) |
| 2848 | return -ENODEV; | 2848 | return -ENODEV; |
| 2849 | 2849 | ||
| 2850 | return 0; | 2850 | return 0; |
diff --git a/drivers/net/pcmcia/fmvj18x_cs.c b/drivers/net/pcmcia/fmvj18x_cs.c index 813aca3fc433..7b17404d0858 100644 --- a/drivers/net/pcmcia/fmvj18x_cs.c +++ b/drivers/net/pcmcia/fmvj18x_cs.c | |||
| @@ -717,6 +717,7 @@ static struct pcmcia_device_id fmvj18x_ids[] = { | |||
| 717 | PCMCIA_PFC_DEVICE_PROD_ID12(0, "NEC", "PK-UG-J001" ,0x18df0ba0 ,0x831b1064), | 717 | PCMCIA_PFC_DEVICE_PROD_ID12(0, "NEC", "PK-UG-J001" ,0x18df0ba0 ,0x831b1064), |
| 718 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0105, 0x0d0a), | 718 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0105, 0x0d0a), |
| 719 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0105, 0x0e0a), | 719 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0105, 0x0e0a), |
| 720 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0032, 0x0e01), | ||
| 720 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0032, 0x0a05), | 721 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0032, 0x0a05), |
| 721 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0032, 0x1101), | 722 | PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0032, 0x1101), |
| 722 | PCMCIA_DEVICE_NULL, | 723 | PCMCIA_DEVICE_NULL, |
diff --git a/drivers/net/pcmcia/nmclan_cs.c b/drivers/net/pcmcia/nmclan_cs.c index 8a5ae3b182ed..12e3233868e9 100644 --- a/drivers/net/pcmcia/nmclan_cs.c +++ b/drivers/net/pcmcia/nmclan_cs.c | |||
| @@ -1402,7 +1402,6 @@ static void BuildLAF(int *ladrf, int *adr) | |||
| 1402 | for (i = 0; i < 8; i++) | 1402 | for (i = 0; i < 8; i++) |
| 1403 | printk(KERN_CONT " %02X", ladrf[i]); | 1403 | printk(KERN_CONT " %02X", ladrf[i]); |
| 1404 | printk(KERN_CONT "\n"); | 1404 | printk(KERN_CONT "\n"); |
| 1405 | } | ||
| 1406 | #endif | 1405 | #endif |
| 1407 | } /* BuildLAF */ | 1406 | } /* BuildLAF */ |
| 1408 | 1407 | ||
diff --git a/drivers/net/pcmcia/pcnet_cs.c b/drivers/net/pcmcia/pcnet_cs.c index 92ed3fbf89a5..776cad2f5715 100644 --- a/drivers/net/pcmcia/pcnet_cs.c +++ b/drivers/net/pcmcia/pcnet_cs.c | |||
| @@ -1741,7 +1741,7 @@ static struct pcmcia_device_id pcnet_ids[] = { | |||
| 1741 | PCMCIA_MFC_DEVICE_CIS_PROD_ID4(0, "NSC MF LAN/Modem", 0x58fc6056, "cis/DP83903.cis"), | 1741 | PCMCIA_MFC_DEVICE_CIS_PROD_ID4(0, "NSC MF LAN/Modem", 0x58fc6056, "cis/DP83903.cis"), |
| 1742 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0175, 0x0000, "cis/DP83903.cis"), | 1742 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0175, 0x0000, "cis/DP83903.cis"), |
| 1743 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "cis/LA-PCM.cis"), | 1743 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "cis/LA-PCM.cis"), |
| 1744 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "PE520.cis"), | 1744 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "cis/PE520.cis"), |
| 1745 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "cis/NE2K.cis"), | 1745 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "cis/NE2K.cis"), |
| 1746 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "cis/PE-200.cis"), | 1746 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "cis/PE-200.cis"), |
| 1747 | PCMCIA_DEVICE_CIS_PROD_ID12("TAMARACK", "Ethernet", 0xcf434fba, 0x00b2e941, "cis/tamarack.cis"), | 1747 | PCMCIA_DEVICE_CIS_PROD_ID12("TAMARACK", "Ethernet", 0xcf434fba, 0x00b2e941, "cis/tamarack.cis"), |
| @@ -1754,7 +1754,7 @@ MODULE_DEVICE_TABLE(pcmcia, pcnet_ids); | |||
| 1754 | MODULE_FIRMWARE("cis/PCMLM28.cis"); | 1754 | MODULE_FIRMWARE("cis/PCMLM28.cis"); |
| 1755 | MODULE_FIRMWARE("cis/DP83903.cis"); | 1755 | MODULE_FIRMWARE("cis/DP83903.cis"); |
| 1756 | MODULE_FIRMWARE("cis/LA-PCM.cis"); | 1756 | MODULE_FIRMWARE("cis/LA-PCM.cis"); |
| 1757 | MODULE_FIRMWARE("PE520.cis"); | 1757 | MODULE_FIRMWARE("cis/PE520.cis"); |
| 1758 | MODULE_FIRMWARE("cis/NE2K.cis"); | 1758 | MODULE_FIRMWARE("cis/NE2K.cis"); |
| 1759 | MODULE_FIRMWARE("cis/PE-200.cis"); | 1759 | MODULE_FIRMWARE("cis/PE-200.cis"); |
| 1760 | MODULE_FIRMWARE("cis/tamarack.cis"); | 1760 | MODULE_FIRMWARE("cis/tamarack.cis"); |
diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c index c13cf64095b6..33c4b12a63ba 100644 --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c | |||
| @@ -331,8 +331,8 @@ static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev) | |||
| 331 | bool clk125en = true; | 331 | bool clk125en = true; |
| 332 | 332 | ||
| 333 | /* Abort if we are using an untested phy. */ | 333 | /* Abort if we are using an untested phy. */ |
| 334 | if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM57780 || | 334 | if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM57780 && |
| 335 | BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610 || | 335 | BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610 && |
| 336 | BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610M) | 336 | BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610M) |
| 337 | return; | 337 | return; |
| 338 | 338 | ||
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c index bd4e8d72dc08..e17b70291bbc 100644 --- a/drivers/net/phy/mdio_bus.c +++ b/drivers/net/phy/mdio_bus.c | |||
| @@ -264,6 +264,8 @@ static int mdio_bus_match(struct device *dev, struct device_driver *drv) | |||
| 264 | (phydev->phy_id & phydrv->phy_id_mask)); | 264 | (phydev->phy_id & phydrv->phy_id_mask)); |
| 265 | } | 265 | } |
| 266 | 266 | ||
| 267 | #ifdef CONFIG_PM | ||
| 268 | |||
| 267 | static bool mdio_bus_phy_may_suspend(struct phy_device *phydev) | 269 | static bool mdio_bus_phy_may_suspend(struct phy_device *phydev) |
| 268 | { | 270 | { |
| 269 | struct device_driver *drv = phydev->dev.driver; | 271 | struct device_driver *drv = phydev->dev.driver; |
| @@ -295,34 +297,88 @@ static bool mdio_bus_phy_may_suspend(struct phy_device *phydev) | |||
| 295 | return true; | 297 | return true; |
| 296 | } | 298 | } |
| 297 | 299 | ||
| 298 | /* Suspend and resume. Copied from platform_suspend and | 300 | static int mdio_bus_suspend(struct device *dev) |
| 299 | * platform_resume | ||
| 300 | */ | ||
| 301 | static int mdio_bus_suspend(struct device * dev, pm_message_t state) | ||
| 302 | { | 301 | { |
| 303 | struct phy_driver *phydrv = to_phy_driver(dev->driver); | 302 | struct phy_driver *phydrv = to_phy_driver(dev->driver); |
| 304 | struct phy_device *phydev = to_phy_device(dev); | 303 | struct phy_device *phydev = to_phy_device(dev); |
| 305 | 304 | ||
| 305 | /* | ||
| 306 | * We must stop the state machine manually, otherwise it stops out of | ||
| 307 | * control, possibly with the phydev->lock held. Upon resume, netdev | ||
| 308 | * may call phy routines that try to grab the same lock, and that may | ||
| 309 | * lead to a deadlock. | ||
| 310 | */ | ||
| 311 | if (phydev->attached_dev) | ||
| 312 | phy_stop_machine(phydev); | ||
| 313 | |||
| 306 | if (!mdio_bus_phy_may_suspend(phydev)) | 314 | if (!mdio_bus_phy_may_suspend(phydev)) |
| 307 | return 0; | 315 | return 0; |
| 316 | |||
| 308 | return phydrv->suspend(phydev); | 317 | return phydrv->suspend(phydev); |
| 309 | } | 318 | } |
| 310 | 319 | ||
| 311 | static int mdio_bus_resume(struct device * dev) | 320 | static int mdio_bus_resume(struct device *dev) |
| 312 | { | 321 | { |
| 313 | struct phy_driver *phydrv = to_phy_driver(dev->driver); | 322 | struct phy_driver *phydrv = to_phy_driver(dev->driver); |
| 314 | struct phy_device *phydev = to_phy_device(dev); | 323 | struct phy_device *phydev = to_phy_device(dev); |
| 324 | int ret; | ||
| 315 | 325 | ||
| 316 | if (!mdio_bus_phy_may_suspend(phydev)) | 326 | if (!mdio_bus_phy_may_suspend(phydev)) |
| 327 | goto no_resume; | ||
| 328 | |||
| 329 | ret = phydrv->resume(phydev); | ||
| 330 | if (ret < 0) | ||
| 331 | return ret; | ||
| 332 | |||
| 333 | no_resume: | ||
| 334 | if (phydev->attached_dev) | ||
| 335 | phy_start_machine(phydev, NULL); | ||
| 336 | |||
| 337 | return 0; | ||
| 338 | } | ||
| 339 | |||
| 340 | static int mdio_bus_restore(struct device *dev) | ||
| 341 | { | ||
| 342 | struct phy_device *phydev = to_phy_device(dev); | ||
| 343 | struct net_device *netdev = phydev->attached_dev; | ||
| 344 | int ret; | ||
| 345 | |||
| 346 | if (!netdev) | ||
| 317 | return 0; | 347 | return 0; |
| 318 | return phydrv->resume(phydev); | 348 | |
| 349 | ret = phy_init_hw(phydev); | ||
| 350 | if (ret < 0) | ||
| 351 | return ret; | ||
| 352 | |||
| 353 | /* The PHY needs to renegotiate. */ | ||
| 354 | phydev->link = 0; | ||
| 355 | phydev->state = PHY_UP; | ||
| 356 | |||
| 357 | phy_start_machine(phydev, NULL); | ||
| 358 | |||
| 359 | return 0; | ||
| 319 | } | 360 | } |
| 320 | 361 | ||
| 362 | static struct dev_pm_ops mdio_bus_pm_ops = { | ||
| 363 | .suspend = mdio_bus_suspend, | ||
| 364 | .resume = mdio_bus_resume, | ||
| 365 | .freeze = mdio_bus_suspend, | ||
| 366 | .thaw = mdio_bus_resume, | ||
| 367 | .restore = mdio_bus_restore, | ||
| 368 | }; | ||
| 369 | |||
| 370 | #define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops) | ||
| 371 | |||
| 372 | #else | ||
| 373 | |||
| 374 | #define MDIO_BUS_PM_OPS NULL | ||
| 375 | |||
| 376 | #endif /* CONFIG_PM */ | ||
| 377 | |||
| 321 | struct bus_type mdio_bus_type = { | 378 | struct bus_type mdio_bus_type = { |
| 322 | .name = "mdio_bus", | 379 | .name = "mdio_bus", |
| 323 | .match = mdio_bus_match, | 380 | .match = mdio_bus_match, |
| 324 | .suspend = mdio_bus_suspend, | 381 | .pm = MDIO_BUS_PM_OPS, |
| 325 | .resume = mdio_bus_resume, | ||
| 326 | }; | 382 | }; |
| 327 | EXPORT_SYMBOL(mdio_bus_type); | 383 | EXPORT_SYMBOL(mdio_bus_type); |
| 328 | 384 | ||
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index b0e9f9c51721..0295097d6c44 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c | |||
| @@ -410,7 +410,6 @@ EXPORT_SYMBOL(phy_start_aneg); | |||
| 410 | 410 | ||
| 411 | 411 | ||
| 412 | static void phy_change(struct work_struct *work); | 412 | static void phy_change(struct work_struct *work); |
| 413 | static void phy_state_machine(struct work_struct *work); | ||
| 414 | 413 | ||
| 415 | /** | 414 | /** |
| 416 | * phy_start_machine - start PHY state machine tracking | 415 | * phy_start_machine - start PHY state machine tracking |
| @@ -430,7 +429,6 @@ void phy_start_machine(struct phy_device *phydev, | |||
| 430 | { | 429 | { |
| 431 | phydev->adjust_state = handler; | 430 | phydev->adjust_state = handler; |
| 432 | 431 | ||
| 433 | INIT_DELAYED_WORK(&phydev->state_queue, phy_state_machine); | ||
| 434 | schedule_delayed_work(&phydev->state_queue, HZ); | 432 | schedule_delayed_work(&phydev->state_queue, HZ); |
| 435 | } | 433 | } |
| 436 | 434 | ||
| @@ -761,7 +759,7 @@ EXPORT_SYMBOL(phy_start); | |||
| 761 | * phy_state_machine - Handle the state machine | 759 | * phy_state_machine - Handle the state machine |
| 762 | * @work: work_struct that describes the work to be done | 760 | * @work: work_struct that describes the work to be done |
| 763 | */ | 761 | */ |
| 764 | static void phy_state_machine(struct work_struct *work) | 762 | void phy_state_machine(struct work_struct *work) |
| 765 | { | 763 | { |
| 766 | struct delayed_work *dwork = to_delayed_work(work); | 764 | struct delayed_work *dwork = to_delayed_work(work); |
| 767 | struct phy_device *phydev = | 765 | struct phy_device *phydev = |
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c index b10fedd82143..adbc0fded130 100644 --- a/drivers/net/phy/phy_device.c +++ b/drivers/net/phy/phy_device.c | |||
| @@ -177,6 +177,7 @@ struct phy_device* phy_device_create(struct mii_bus *bus, int addr, int phy_id) | |||
| 177 | dev->state = PHY_DOWN; | 177 | dev->state = PHY_DOWN; |
| 178 | 178 | ||
| 179 | mutex_init(&dev->lock); | 179 | mutex_init(&dev->lock); |
| 180 | INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine); | ||
| 180 | 181 | ||
| 181 | return dev; | 182 | return dev; |
| 182 | } | 183 | } |
| @@ -378,6 +379,20 @@ void phy_disconnect(struct phy_device *phydev) | |||
| 378 | } | 379 | } |
| 379 | EXPORT_SYMBOL(phy_disconnect); | 380 | EXPORT_SYMBOL(phy_disconnect); |
| 380 | 381 | ||
| 382 | int phy_init_hw(struct phy_device *phydev) | ||
| 383 | { | ||
| 384 | int ret; | ||
| 385 | |||
| 386 | if (!phydev->drv || !phydev->drv->config_init) | ||
| 387 | return 0; | ||
| 388 | |||
| 389 | ret = phy_scan_fixups(phydev); | ||
| 390 | if (ret < 0) | ||
| 391 | return ret; | ||
| 392 | |||
| 393 | return phydev->drv->config_init(phydev); | ||
| 394 | } | ||
| 395 | |||
| 381 | /** | 396 | /** |
| 382 | * phy_attach_direct - attach a network device to a given PHY device pointer | 397 | * phy_attach_direct - attach a network device to a given PHY device pointer |
| 383 | * @dev: network device to attach | 398 | * @dev: network device to attach |
| @@ -425,21 +440,7 @@ int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, | |||
| 425 | /* Do initial configuration here, now that | 440 | /* Do initial configuration here, now that |
| 426 | * we have certain key parameters | 441 | * we have certain key parameters |
| 427 | * (dev_flags and interface) */ | 442 | * (dev_flags and interface) */ |
| 428 | if (phydev->drv->config_init) { | 443 | return phy_init_hw(phydev); |
| 429 | int err; | ||
| 430 | |||
| 431 | err = phy_scan_fixups(phydev); | ||
| 432 | |||
| 433 | if (err < 0) | ||
| 434 | return err; | ||
| 435 | |||
| 436 | err = phydev->drv->config_init(phydev); | ||
| 437 | |||
| 438 | if (err < 0) | ||
| 439 | return err; | ||
| 440 | } | ||
| 441 | |||
| 442 | return 0; | ||
| 443 | } | 444 | } |
| 444 | EXPORT_SYMBOL(phy_attach_direct); | 445 | EXPORT_SYMBOL(phy_attach_direct); |
| 445 | 446 | ||
diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c index 707b391afa02..894a7c84faef 100644 --- a/drivers/net/qlge/qlge_main.c +++ b/drivers/net/qlge/qlge_main.c | |||
| @@ -4119,7 +4119,7 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4119 | err = pcie_set_readrq(pdev, 4096); | 4119 | err = pcie_set_readrq(pdev, 4096); |
| 4120 | if (err) { | 4120 | if (err) { |
| 4121 | dev_err(&pdev->dev, "Set readrq failed.\n"); | 4121 | dev_err(&pdev->dev, "Set readrq failed.\n"); |
| 4122 | goto err_out; | 4122 | goto err_out1; |
| 4123 | } | 4123 | } |
| 4124 | 4124 | ||
| 4125 | err = pci_request_regions(pdev, DRV_NAME); | 4125 | err = pci_request_regions(pdev, DRV_NAME); |
| @@ -4140,7 +4140,7 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4140 | 4140 | ||
| 4141 | if (err) { | 4141 | if (err) { |
| 4142 | dev_err(&pdev->dev, "No usable DMA configuration.\n"); | 4142 | dev_err(&pdev->dev, "No usable DMA configuration.\n"); |
| 4143 | goto err_out; | 4143 | goto err_out2; |
| 4144 | } | 4144 | } |
| 4145 | 4145 | ||
| 4146 | /* Set PCIe reset type for EEH to fundamental. */ | 4146 | /* Set PCIe reset type for EEH to fundamental. */ |
| @@ -4152,7 +4152,7 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4152 | if (!qdev->reg_base) { | 4152 | if (!qdev->reg_base) { |
| 4153 | dev_err(&pdev->dev, "Register mapping failed.\n"); | 4153 | dev_err(&pdev->dev, "Register mapping failed.\n"); |
| 4154 | err = -ENOMEM; | 4154 | err = -ENOMEM; |
| 4155 | goto err_out; | 4155 | goto err_out2; |
| 4156 | } | 4156 | } |
| 4157 | 4157 | ||
| 4158 | qdev->doorbell_area_size = pci_resource_len(pdev, 3); | 4158 | qdev->doorbell_area_size = pci_resource_len(pdev, 3); |
| @@ -4162,14 +4162,14 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4162 | if (!qdev->doorbell_area) { | 4162 | if (!qdev->doorbell_area) { |
| 4163 | dev_err(&pdev->dev, "Doorbell register mapping failed.\n"); | 4163 | dev_err(&pdev->dev, "Doorbell register mapping failed.\n"); |
| 4164 | err = -ENOMEM; | 4164 | err = -ENOMEM; |
| 4165 | goto err_out; | 4165 | goto err_out2; |
| 4166 | } | 4166 | } |
| 4167 | 4167 | ||
| 4168 | err = ql_get_board_info(qdev); | 4168 | err = ql_get_board_info(qdev); |
| 4169 | if (err) { | 4169 | if (err) { |
| 4170 | dev_err(&pdev->dev, "Register access failed.\n"); | 4170 | dev_err(&pdev->dev, "Register access failed.\n"); |
| 4171 | err = -EIO; | 4171 | err = -EIO; |
| 4172 | goto err_out; | 4172 | goto err_out2; |
| 4173 | } | 4173 | } |
| 4174 | qdev->msg_enable = netif_msg_init(debug, default_msg); | 4174 | qdev->msg_enable = netif_msg_init(debug, default_msg); |
| 4175 | spin_lock_init(&qdev->hw_lock); | 4175 | spin_lock_init(&qdev->hw_lock); |
| @@ -4179,7 +4179,7 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4179 | err = qdev->nic_ops->get_flash(qdev); | 4179 | err = qdev->nic_ops->get_flash(qdev); |
| 4180 | if (err) { | 4180 | if (err) { |
| 4181 | dev_err(&pdev->dev, "Invalid FLASH.\n"); | 4181 | dev_err(&pdev->dev, "Invalid FLASH.\n"); |
| 4182 | goto err_out; | 4182 | goto err_out2; |
| 4183 | } | 4183 | } |
| 4184 | 4184 | ||
| 4185 | memcpy(ndev->perm_addr, ndev->dev_addr, ndev->addr_len); | 4185 | memcpy(ndev->perm_addr, ndev->dev_addr, ndev->addr_len); |
| @@ -4212,8 +4212,9 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
| 4212 | DRV_NAME, DRV_VERSION); | 4212 | DRV_NAME, DRV_VERSION); |
| 4213 | } | 4213 | } |
| 4214 | return 0; | 4214 | return 0; |
| 4215 | err_out: | 4215 | err_out2: |
| 4216 | ql_release_all(pdev); | 4216 | ql_release_all(pdev); |
| 4217 | err_out1: | ||
| 4217 | pci_disable_device(pdev); | 4218 | pci_disable_device(pdev); |
| 4218 | return err; | 4219 | return err; |
| 4219 | } | 4220 | } |
diff --git a/drivers/net/rrunner.c b/drivers/net/rrunner.c index 20a71749154a..1c257098d0a6 100644 --- a/drivers/net/rrunner.c +++ b/drivers/net/rrunner.c | |||
| @@ -1293,7 +1293,7 @@ static void rr_dump(struct net_device *dev) | |||
| 1293 | 1293 | ||
| 1294 | printk("Error code 0x%x\n", readl(®s->Fail1)); | 1294 | printk("Error code 0x%x\n", readl(®s->Fail1)); |
| 1295 | 1295 | ||
| 1296 | index = (((readl(®s->EvtPrd) >> 8) & 0xff ) - 1) % EVT_RING_ENTRIES; | 1296 | index = (((readl(®s->EvtPrd) >> 8) & 0xff) - 1) % TX_RING_ENTRIES; |
| 1297 | cons = rrpriv->dirty_tx; | 1297 | cons = rrpriv->dirty_tx; |
| 1298 | printk("TX ring index %i, TX consumer %i\n", | 1298 | printk("TX ring index %i, TX consumer %i\n", |
| 1299 | index, cons); | 1299 | index, cons); |
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index cc4218667cba..3c4836d0898f 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
| @@ -3421,7 +3421,7 @@ static int wait_for_cmd_complete(void __iomem *addr, u64 busy_bit, | |||
| 3421 | break; | 3421 | break; |
| 3422 | } | 3422 | } |
| 3423 | } else { | 3423 | } else { |
| 3424 | if (!(val64 & busy_bit)) { | 3424 | if (val64 & busy_bit) { |
| 3425 | ret = SUCCESS; | 3425 | ret = SUCCESS; |
| 3426 | break; | 3426 | break; |
| 3427 | } | 3427 | } |
diff --git a/drivers/net/sfc/mcdi.c b/drivers/net/sfc/mcdi.c index 683353b904c7..9f035b9f0350 100644 --- a/drivers/net/sfc/mcdi.c +++ b/drivers/net/sfc/mcdi.c | |||
| @@ -142,8 +142,9 @@ static int efx_mcdi_poll(struct efx_nic *efx) | |||
| 142 | if (spins != 0) { | 142 | if (spins != 0) { |
| 143 | --spins; | 143 | --spins; |
| 144 | udelay(1); | 144 | udelay(1); |
| 145 | } else | 145 | } else { |
| 146 | schedule(); | 146 | schedule_timeout_uninterruptible(1); |
| 147 | } | ||
| 147 | 148 | ||
| 148 | time = get_seconds(); | 149 | time = get_seconds(); |
| 149 | 150 | ||
| @@ -803,7 +804,7 @@ int efx_mcdi_nvram_read(struct efx_nic *efx, unsigned int type, | |||
| 803 | loff_t offset, u8 *buffer, size_t length) | 804 | loff_t offset, u8 *buffer, size_t length) |
| 804 | { | 805 | { |
| 805 | u8 inbuf[MC_CMD_NVRAM_READ_IN_LEN]; | 806 | u8 inbuf[MC_CMD_NVRAM_READ_IN_LEN]; |
| 806 | u8 outbuf[MC_CMD_NVRAM_READ_OUT_LEN(length)]; | 807 | u8 outbuf[MC_CMD_NVRAM_READ_OUT_LEN(EFX_MCDI_NVRAM_LEN_MAX)]; |
| 807 | size_t outlen; | 808 | size_t outlen; |
| 808 | int rc; | 809 | int rc; |
| 809 | 810 | ||
| @@ -827,7 +828,7 @@ fail: | |||
| 827 | int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, | 828 | int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, |
| 828 | loff_t offset, const u8 *buffer, size_t length) | 829 | loff_t offset, const u8 *buffer, size_t length) |
| 829 | { | 830 | { |
| 830 | u8 inbuf[MC_CMD_NVRAM_WRITE_IN_LEN(length)]; | 831 | u8 inbuf[MC_CMD_NVRAM_WRITE_IN_LEN(EFX_MCDI_NVRAM_LEN_MAX)]; |
| 831 | int rc; | 832 | int rc; |
| 832 | 833 | ||
| 833 | MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_TYPE, type); | 834 | MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_TYPE, type); |
| @@ -837,7 +838,8 @@ int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, | |||
| 837 | 838 | ||
| 838 | BUILD_BUG_ON(MC_CMD_NVRAM_WRITE_OUT_LEN != 0); | 839 | BUILD_BUG_ON(MC_CMD_NVRAM_WRITE_OUT_LEN != 0); |
| 839 | 840 | ||
| 840 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_WRITE, inbuf, sizeof(inbuf), | 841 | rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_WRITE, inbuf, |
| 842 | ALIGN(MC_CMD_NVRAM_WRITE_IN_LEN(length), 4), | ||
| 841 | NULL, 0, NULL); | 843 | NULL, 0, NULL); |
| 842 | if (rc) | 844 | if (rc) |
| 843 | goto fail; | 845 | goto fail; |
diff --git a/drivers/net/sfc/mcdi.h b/drivers/net/sfc/mcdi.h index de916728c2e3..10ce98f4c0fb 100644 --- a/drivers/net/sfc/mcdi.h +++ b/drivers/net/sfc/mcdi.h | |||
| @@ -111,6 +111,7 @@ extern int efx_mcdi_nvram_read(struct efx_nic *efx, unsigned int type, | |||
| 111 | extern int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, | 111 | extern int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type, |
| 112 | loff_t offset, const u8 *buffer, | 112 | loff_t offset, const u8 *buffer, |
| 113 | size_t length); | 113 | size_t length); |
| 114 | #define EFX_MCDI_NVRAM_LEN_MAX 128 | ||
| 114 | extern int efx_mcdi_nvram_erase(struct efx_nic *efx, unsigned int type, | 115 | extern int efx_mcdi_nvram_erase(struct efx_nic *efx, unsigned int type, |
| 115 | loff_t offset, size_t length); | 116 | loff_t offset, size_t length); |
| 116 | extern int efx_mcdi_nvram_update_finish(struct efx_nic *efx, | 117 | extern int efx_mcdi_nvram_update_finish(struct efx_nic *efx, |
diff --git a/drivers/net/sfc/mcdi_pcol.h b/drivers/net/sfc/mcdi_pcol.h index 2a85360a46f0..73e71f420624 100644 --- a/drivers/net/sfc/mcdi_pcol.h +++ b/drivers/net/sfc/mcdi_pcol.h | |||
| @@ -1090,8 +1090,10 @@ | |||
| 1090 | #define MC_CMD_MAC_RX_LANES01_DISP_ERR 57 | 1090 | #define MC_CMD_MAC_RX_LANES01_DISP_ERR 57 |
| 1091 | #define MC_CMD_MAC_RX_LANES23_DISP_ERR 58 | 1091 | #define MC_CMD_MAC_RX_LANES23_DISP_ERR 58 |
| 1092 | #define MC_CMD_MAC_RX_MATCH_FAULT 59 | 1092 | #define MC_CMD_MAC_RX_MATCH_FAULT 59 |
| 1093 | #define MC_CMD_GMAC_DMABUF_START 64 | ||
| 1094 | #define MC_CMD_GMAC_DMABUF_END 95 | ||
| 1093 | /* Insert new members here. */ | 1095 | /* Insert new members here. */ |
| 1094 | #define MC_CMD_MAC_GENERATION_END 60 | 1096 | #define MC_CMD_MAC_GENERATION_END 96 |
| 1095 | #define MC_CMD_MAC_NSTATS (MC_CMD_MAC_GENERATION_END+1) | 1097 | #define MC_CMD_MAC_NSTATS (MC_CMD_MAC_GENERATION_END+1) |
| 1096 | 1098 | ||
| 1097 | /* MC_CMD_MAC_STATS: | 1099 | /* MC_CMD_MAC_STATS: |
diff --git a/drivers/net/sfc/mtd.c b/drivers/net/sfc/mtd.c index 3a464529a46b..407bbaddfea6 100644 --- a/drivers/net/sfc/mtd.c +++ b/drivers/net/sfc/mtd.c | |||
| @@ -23,7 +23,6 @@ | |||
| 23 | #include "mcdi_pcol.h" | 23 | #include "mcdi_pcol.h" |
| 24 | 24 | ||
| 25 | #define EFX_SPI_VERIFY_BUF_LEN 16 | 25 | #define EFX_SPI_VERIFY_BUF_LEN 16 |
| 26 | #define EFX_MCDI_CHUNK_LEN 128 | ||
| 27 | 26 | ||
| 28 | struct efx_mtd_partition { | 27 | struct efx_mtd_partition { |
| 29 | struct mtd_info mtd; | 28 | struct mtd_info mtd; |
| @@ -428,7 +427,7 @@ static int siena_mtd_read(struct mtd_info *mtd, loff_t start, | |||
| 428 | int rc = 0; | 427 | int rc = 0; |
| 429 | 428 | ||
| 430 | while (offset < end) { | 429 | while (offset < end) { |
| 431 | chunk = min_t(size_t, end - offset, EFX_MCDI_CHUNK_LEN); | 430 | chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX); |
| 432 | rc = efx_mcdi_nvram_read(efx, part->mcdi.nvram_type, offset, | 431 | rc = efx_mcdi_nvram_read(efx, part->mcdi.nvram_type, offset, |
| 433 | buffer, chunk); | 432 | buffer, chunk); |
| 434 | if (rc) | 433 | if (rc) |
| @@ -491,7 +490,7 @@ static int siena_mtd_write(struct mtd_info *mtd, loff_t start, | |||
| 491 | } | 490 | } |
| 492 | 491 | ||
| 493 | while (offset < end) { | 492 | while (offset < end) { |
| 494 | chunk = min_t(size_t, end - offset, EFX_MCDI_CHUNK_LEN); | 493 | chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX); |
| 495 | rc = efx_mcdi_nvram_write(efx, part->mcdi.nvram_type, offset, | 494 | rc = efx_mcdi_nvram_write(efx, part->mcdi.nvram_type, offset, |
| 496 | buffer, chunk); | 495 | buffer, chunk); |
| 497 | if (rc) | 496 | if (rc) |
diff --git a/drivers/net/sfc/qt202x_phy.c b/drivers/net/sfc/qt202x_phy.c index ff8f0a417fa3..e0d13a451019 100644 --- a/drivers/net/sfc/qt202x_phy.c +++ b/drivers/net/sfc/qt202x_phy.c | |||
| @@ -318,12 +318,6 @@ static int qt202x_reset_phy(struct efx_nic *efx) | |||
| 318 | /* Wait 250ms for the PHY to complete bootup */ | 318 | /* Wait 250ms for the PHY to complete bootup */ |
| 319 | msleep(250); | 319 | msleep(250); |
| 320 | 320 | ||
| 321 | /* Check that all the MMDs we expect are present and responding. We | ||
| 322 | * expect faults on some if the link is down, but not on the PHY XS */ | ||
| 323 | rc = efx_mdio_check_mmds(efx, QT202X_REQUIRED_DEVS, MDIO_DEVS_PHYXS); | ||
| 324 | if (rc < 0) | ||
| 325 | goto fail; | ||
| 326 | |||
| 327 | falcon_board(efx)->type->init_phy(efx); | 321 | falcon_board(efx)->type->init_phy(efx); |
| 328 | 322 | ||
| 329 | return rc; | 323 | return rc; |
diff --git a/drivers/net/sfc/selftest.c b/drivers/net/sfc/selftest.c index af3933579790..250c8827b842 100644 --- a/drivers/net/sfc/selftest.c +++ b/drivers/net/sfc/selftest.c | |||
| @@ -79,10 +79,14 @@ struct efx_loopback_state { | |||
| 79 | static int efx_test_mdio(struct efx_nic *efx, struct efx_self_tests *tests) | 79 | static int efx_test_mdio(struct efx_nic *efx, struct efx_self_tests *tests) |
| 80 | { | 80 | { |
| 81 | int rc = 0; | 81 | int rc = 0; |
| 82 | int devad = __ffs(efx->mdio.mmds); | 82 | int devad; |
| 83 | u16 physid1, physid2; | 83 | u16 physid1, physid2; |
| 84 | 84 | ||
| 85 | if (efx->phy_type == PHY_TYPE_NONE) | 85 | if (efx->mdio.mode_support & MDIO_SUPPORTS_C45) |
| 86 | devad = __ffs(efx->mdio.mmds); | ||
| 87 | else if (efx->mdio.mode_support & MDIO_SUPPORTS_C22) | ||
| 88 | devad = MDIO_DEVAD_NONE; | ||
| 89 | else | ||
| 86 | return 0; | 90 | return 0; |
| 87 | 91 | ||
| 88 | mutex_lock(&efx->mac_lock); | 92 | mutex_lock(&efx->mac_lock); |
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index ca6285016dfd..7402b858cab7 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c | |||
| @@ -110,7 +110,7 @@ static void sh_eth_reset(struct net_device *ndev) | |||
| 110 | mdelay(1); | 110 | mdelay(1); |
| 111 | cnt--; | 111 | cnt--; |
| 112 | } | 112 | } |
| 113 | if (cnt < 0) | 113 | if (cnt == 0) |
| 114 | printk(KERN_ERR "Device reset fail\n"); | 114 | printk(KERN_ERR "Device reset fail\n"); |
| 115 | 115 | ||
| 116 | /* Table Init */ | 116 | /* Table Init */ |
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index 2d28d58200d0..d760650c5c04 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
| @@ -644,6 +644,7 @@ static void sky2_phy_power_up(struct sky2_hw *hw, unsigned port) | |||
| 644 | { | 644 | { |
| 645 | u32 reg1; | 645 | u32 reg1; |
| 646 | 646 | ||
| 647 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 647 | reg1 = sky2_pci_read32(hw, PCI_DEV_REG1); | 648 | reg1 = sky2_pci_read32(hw, PCI_DEV_REG1); |
| 648 | reg1 &= ~phy_power[port]; | 649 | reg1 &= ~phy_power[port]; |
| 649 | 650 | ||
| @@ -651,6 +652,7 @@ static void sky2_phy_power_up(struct sky2_hw *hw, unsigned port) | |||
| 651 | reg1 |= coma_mode[port]; | 652 | reg1 |= coma_mode[port]; |
| 652 | 653 | ||
| 653 | sky2_pci_write32(hw, PCI_DEV_REG1, reg1); | 654 | sky2_pci_write32(hw, PCI_DEV_REG1, reg1); |
| 655 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 654 | sky2_pci_read32(hw, PCI_DEV_REG1); | 656 | sky2_pci_read32(hw, PCI_DEV_REG1); |
| 655 | 657 | ||
| 656 | if (hw->chip_id == CHIP_ID_YUKON_FE) | 658 | if (hw->chip_id == CHIP_ID_YUKON_FE) |
| @@ -707,9 +709,11 @@ static void sky2_phy_power_down(struct sky2_hw *hw, unsigned port) | |||
| 707 | gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_PDOWN); | 709 | gm_phy_write(hw, port, PHY_MARV_CTRL, PHY_CT_PDOWN); |
| 708 | } | 710 | } |
| 709 | 711 | ||
| 712 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 710 | reg1 = sky2_pci_read32(hw, PCI_DEV_REG1); | 713 | reg1 = sky2_pci_read32(hw, PCI_DEV_REG1); |
| 711 | reg1 |= phy_power[port]; /* set PHY to PowerDown/COMA Mode */ | 714 | reg1 |= phy_power[port]; /* set PHY to PowerDown/COMA Mode */ |
| 712 | sky2_pci_write32(hw, PCI_DEV_REG1, reg1); | 715 | sky2_pci_write32(hw, PCI_DEV_REG1, reg1); |
| 716 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 713 | } | 717 | } |
| 714 | 718 | ||
| 715 | /* Force a renegotiation */ | 719 | /* Force a renegotiation */ |
| @@ -1844,7 +1848,8 @@ static void sky2_tx_complete(struct sky2_port *sky2, u16 done) | |||
| 1844 | sky2->tx_cons = idx; | 1848 | sky2->tx_cons = idx; |
| 1845 | smp_mb(); | 1849 | smp_mb(); |
| 1846 | 1850 | ||
| 1847 | if (tx_avail(sky2) > MAX_SKB_TX_LE + 4) | 1851 | /* Wake unless it's detached, and called e.g. from sky2_down() */ |
| 1852 | if (tx_avail(sky2) > MAX_SKB_TX_LE + 4 && netif_device_present(dev)) | ||
| 1848 | netif_wake_queue(dev); | 1853 | netif_wake_queue(dev); |
| 1849 | } | 1854 | } |
| 1850 | 1855 | ||
| @@ -2148,7 +2153,9 @@ static void sky2_qlink_intr(struct sky2_hw *hw) | |||
| 2148 | 2153 | ||
| 2149 | /* reset PHY Link Detect */ | 2154 | /* reset PHY Link Detect */ |
| 2150 | phy = sky2_pci_read16(hw, PSM_CONFIG_REG4); | 2155 | phy = sky2_pci_read16(hw, PSM_CONFIG_REG4); |
| 2156 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 2151 | sky2_pci_write16(hw, PSM_CONFIG_REG4, phy | 1); | 2157 | sky2_pci_write16(hw, PSM_CONFIG_REG4, phy | 1); |
| 2158 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 2152 | 2159 | ||
| 2153 | sky2_link_up(sky2); | 2160 | sky2_link_up(sky2); |
| 2154 | } | 2161 | } |
| @@ -2639,6 +2646,7 @@ static void sky2_hw_intr(struct sky2_hw *hw) | |||
| 2639 | if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) { | 2646 | if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) { |
| 2640 | u16 pci_err; | 2647 | u16 pci_err; |
| 2641 | 2648 | ||
| 2649 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 2642 | pci_err = sky2_pci_read16(hw, PCI_STATUS); | 2650 | pci_err = sky2_pci_read16(hw, PCI_STATUS); |
| 2643 | if (net_ratelimit()) | 2651 | if (net_ratelimit()) |
| 2644 | dev_err(&pdev->dev, "PCI hardware error (0x%x)\n", | 2652 | dev_err(&pdev->dev, "PCI hardware error (0x%x)\n", |
| @@ -2646,12 +2654,14 @@ static void sky2_hw_intr(struct sky2_hw *hw) | |||
| 2646 | 2654 | ||
| 2647 | sky2_pci_write16(hw, PCI_STATUS, | 2655 | sky2_pci_write16(hw, PCI_STATUS, |
| 2648 | pci_err | PCI_STATUS_ERROR_BITS); | 2656 | pci_err | PCI_STATUS_ERROR_BITS); |
| 2657 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 2649 | } | 2658 | } |
| 2650 | 2659 | ||
| 2651 | if (status & Y2_IS_PCI_EXP) { | 2660 | if (status & Y2_IS_PCI_EXP) { |
| 2652 | /* PCI-Express uncorrectable Error occurred */ | 2661 | /* PCI-Express uncorrectable Error occurred */ |
| 2653 | u32 err; | 2662 | u32 err; |
| 2654 | 2663 | ||
| 2664 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 2655 | err = sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS); | 2665 | err = sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS); |
| 2656 | sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS, | 2666 | sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS, |
| 2657 | 0xfffffffful); | 2667 | 0xfffffffful); |
| @@ -2659,6 +2669,7 @@ static void sky2_hw_intr(struct sky2_hw *hw) | |||
| 2659 | dev_err(&pdev->dev, "PCI Express error (0x%x)\n", err); | 2669 | dev_err(&pdev->dev, "PCI Express error (0x%x)\n", err); |
| 2660 | 2670 | ||
| 2661 | sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS); | 2671 | sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS); |
| 2672 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 2662 | } | 2673 | } |
| 2663 | 2674 | ||
| 2664 | if (status & Y2_HWE_L1_MASK) | 2675 | if (status & Y2_HWE_L1_MASK) |
| @@ -3037,6 +3048,7 @@ static void sky2_reset(struct sky2_hw *hw) | |||
| 3037 | } | 3048 | } |
| 3038 | 3049 | ||
| 3039 | sky2_power_on(hw); | 3050 | sky2_power_on(hw); |
| 3051 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 3040 | 3052 | ||
| 3041 | for (i = 0; i < hw->ports; i++) { | 3053 | for (i = 0; i < hw->ports; i++) { |
| 3042 | sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET); | 3054 | sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET); |
| @@ -3073,6 +3085,7 @@ static void sky2_reset(struct sky2_hw *hw) | |||
| 3073 | reg <<= PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_BASE; | 3085 | reg <<= PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_BASE; |
| 3074 | 3086 | ||
| 3075 | /* reset PHY Link Detect */ | 3087 | /* reset PHY Link Detect */ |
| 3088 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON); | ||
| 3076 | sky2_pci_write16(hw, PSM_CONFIG_REG4, | 3089 | sky2_pci_write16(hw, PSM_CONFIG_REG4, |
| 3077 | reg | PSM_CONFIG_REG4_RST_PHY_LINK_DETECT); | 3090 | reg | PSM_CONFIG_REG4_RST_PHY_LINK_DETECT); |
| 3078 | sky2_pci_write16(hw, PSM_CONFIG_REG4, reg); | 3091 | sky2_pci_write16(hw, PSM_CONFIG_REG4, reg); |
| @@ -3090,6 +3103,7 @@ static void sky2_reset(struct sky2_hw *hw) | |||
| 3090 | /* restore the PCIe Link Control register */ | 3103 | /* restore the PCIe Link Control register */ |
| 3091 | sky2_pci_write16(hw, cap + PCI_EXP_LNKCTL, reg); | 3104 | sky2_pci_write16(hw, cap + PCI_EXP_LNKCTL, reg); |
| 3092 | } | 3105 | } |
| 3106 | sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF); | ||
| 3093 | 3107 | ||
| 3094 | /* re-enable PEX PM in PEX PHY debug reg. 8 (clear bit 12) */ | 3108 | /* re-enable PEX PM in PEX PHY debug reg. 8 (clear bit 12) */ |
| 3095 | sky2_write32(hw, Y2_PEX_PHY_DATA, PEX_DB_ACCESS | (0x08UL << 16)); | 3109 | sky2_write32(hw, Y2_PEX_PHY_DATA, PEX_DB_ACCESS | (0x08UL << 16)); |
| @@ -3227,6 +3241,27 @@ static inline u8 sky2_wol_supported(const struct sky2_hw *hw) | |||
| 3227 | return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0; | 3241 | return sky2_is_copper(hw) ? (WAKE_PHY | WAKE_MAGIC) : 0; |
| 3228 | } | 3242 | } |
| 3229 | 3243 | ||
| 3244 | static void sky2_hw_set_wol(struct sky2_hw *hw) | ||
| 3245 | { | ||
| 3246 | int wol = 0; | ||
| 3247 | int i; | ||
| 3248 | |||
| 3249 | for (i = 0; i < hw->ports; i++) { | ||
| 3250 | struct net_device *dev = hw->dev[i]; | ||
| 3251 | struct sky2_port *sky2 = netdev_priv(dev); | ||
| 3252 | |||
| 3253 | if (sky2->wol) | ||
| 3254 | wol = 1; | ||
| 3255 | } | ||
| 3256 | |||
| 3257 | if (hw->chip_id == CHIP_ID_YUKON_EC_U || | ||
| 3258 | hw->chip_id == CHIP_ID_YUKON_EX || | ||
| 3259 | hw->chip_id == CHIP_ID_YUKON_FE_P) | ||
| 3260 | sky2_write32(hw, B0_CTST, wol ? Y2_HW_WOL_ON : Y2_HW_WOL_OFF); | ||
| 3261 | |||
| 3262 | device_set_wakeup_enable(&hw->pdev->dev, wol); | ||
| 3263 | } | ||
| 3264 | |||
| 3230 | static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | 3265 | static void sky2_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) |
| 3231 | { | 3266 | { |
| 3232 | const struct sky2_port *sky2 = netdev_priv(dev); | 3267 | const struct sky2_port *sky2 = netdev_priv(dev); |
| @@ -3246,13 +3281,7 @@ static int sky2_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | |||
| 3246 | 3281 | ||
| 3247 | sky2->wol = wol->wolopts; | 3282 | sky2->wol = wol->wolopts; |
| 3248 | 3283 | ||
| 3249 | if (hw->chip_id == CHIP_ID_YUKON_EC_U || | 3284 | sky2_hw_set_wol(hw); |
| 3250 | hw->chip_id == CHIP_ID_YUKON_EX || | ||
| 3251 | hw->chip_id == CHIP_ID_YUKON_FE_P) | ||
| 3252 | sky2_write32(hw, B0_CTST, sky2->wol | ||
| 3253 | ? Y2_HW_WOL_ON : Y2_HW_WOL_OFF); | ||
| 3254 | |||
| 3255 | device_set_wakeup_enable(&hw->pdev->dev, sky2->wol); | ||
| 3256 | 3285 | ||
| 3257 | if (!netif_running(dev)) | 3286 | if (!netif_running(dev)) |
| 3258 | sky2_wol_init(sky2); | 3287 | sky2_wol_init(sky2); |
diff --git a/drivers/net/starfire.c b/drivers/net/starfire.c index 95db60adde41..f9521136a869 100644 --- a/drivers/net/starfire.c +++ b/drivers/net/starfire.c | |||
| @@ -1063,7 +1063,7 @@ static int netdev_open(struct net_device *dev) | |||
| 1063 | if (retval) { | 1063 | if (retval) { |
| 1064 | printk(KERN_ERR "starfire: Failed to load firmware \"%s\"\n", | 1064 | printk(KERN_ERR "starfire: Failed to load firmware \"%s\"\n", |
| 1065 | FIRMWARE_RX); | 1065 | FIRMWARE_RX); |
| 1066 | return retval; | 1066 | goto out_init; |
| 1067 | } | 1067 | } |
| 1068 | if (fw_rx->size % 4) { | 1068 | if (fw_rx->size % 4) { |
| 1069 | printk(KERN_ERR "starfire: bogus length %zu in \"%s\"\n", | 1069 | printk(KERN_ERR "starfire: bogus length %zu in \"%s\"\n", |
| @@ -1108,6 +1108,9 @@ out_tx: | |||
| 1108 | release_firmware(fw_tx); | 1108 | release_firmware(fw_tx); |
| 1109 | out_rx: | 1109 | out_rx: |
| 1110 | release_firmware(fw_rx); | 1110 | release_firmware(fw_rx); |
| 1111 | out_init: | ||
| 1112 | if (retval) | ||
| 1113 | netdev_close(dev); | ||
| 1111 | return retval; | 1114 | return retval; |
| 1112 | } | 1115 | } |
| 1113 | 1116 | ||
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 3a74d2168598..7f82b0238e08 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com) | 4 | * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com) |
| 5 | * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com) | 5 | * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com) |
| 6 | * Copyright (C) 2004 Sun Microsystems Inc. | 6 | * Copyright (C) 2004 Sun Microsystems Inc. |
| 7 | * Copyright (C) 2005-2009 Broadcom Corporation. | 7 | * Copyright (C) 2005-2010 Broadcom Corporation. |
| 8 | * | 8 | * |
| 9 | * Firmware is: | 9 | * Firmware is: |
| 10 | * Derived from proprietary unpublished source code, | 10 | * Derived from proprietary unpublished source code, |
| @@ -68,8 +68,8 @@ | |||
| 68 | 68 | ||
| 69 | #define DRV_MODULE_NAME "tg3" | 69 | #define DRV_MODULE_NAME "tg3" |
| 70 | #define PFX DRV_MODULE_NAME ": " | 70 | #define PFX DRV_MODULE_NAME ": " |
| 71 | #define DRV_MODULE_VERSION "3.105" | 71 | #define DRV_MODULE_VERSION "3.106" |
| 72 | #define DRV_MODULE_RELDATE "December 2, 2009" | 72 | #define DRV_MODULE_RELDATE "January 12, 2010" |
| 73 | 73 | ||
| 74 | #define TG3_DEF_MAC_MODE 0 | 74 | #define TG3_DEF_MAC_MODE 0 |
| 75 | #define TG3_DEF_RX_MODE 0 | 75 | #define TG3_DEF_RX_MODE 0 |
| @@ -1037,7 +1037,11 @@ static void tg3_mdio_start(struct tg3 *tp) | |||
| 1037 | else | 1037 | else |
| 1038 | tp->phy_addr = 1; | 1038 | tp->phy_addr = 1; |
| 1039 | 1039 | ||
| 1040 | is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES; | 1040 | if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) |
| 1041 | is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES; | ||
| 1042 | else | ||
| 1043 | is_serdes = tr32(TG3_CPMU_PHY_STRAP) & | ||
| 1044 | TG3_CPMU_PHY_STRAP_IS_SERDES; | ||
| 1041 | if (is_serdes) | 1045 | if (is_serdes) |
| 1042 | tp->phy_addr += 7; | 1046 | tp->phy_addr += 7; |
| 1043 | } else | 1047 | } else |
| @@ -4693,8 +4697,9 @@ next_pkt: | |||
| 4693 | (*post_ptr)++; | 4697 | (*post_ptr)++; |
| 4694 | 4698 | ||
| 4695 | if (unlikely(rx_std_posted >= tp->rx_std_max_post)) { | 4699 | if (unlikely(rx_std_posted >= tp->rx_std_max_post)) { |
| 4696 | u32 idx = *post_ptr % TG3_RX_RING_SIZE; | 4700 | tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE; |
| 4697 | tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, idx); | 4701 | tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, |
| 4702 | tpr->rx_std_prod_idx); | ||
| 4698 | work_mask &= ~RXD_OPAQUE_RING_STD; | 4703 | work_mask &= ~RXD_OPAQUE_RING_STD; |
| 4699 | rx_std_posted = 0; | 4704 | rx_std_posted = 0; |
| 4700 | } | 4705 | } |
| @@ -7742,7 +7747,7 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy) | |||
| 7742 | ((u64) tpr->rx_std_mapping >> 32)); | 7747 | ((u64) tpr->rx_std_mapping >> 32)); |
| 7743 | tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW, | 7748 | tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW, |
| 7744 | ((u64) tpr->rx_std_mapping & 0xffffffff)); | 7749 | ((u64) tpr->rx_std_mapping & 0xffffffff)); |
| 7745 | if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS)) | 7750 | if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) |
| 7746 | tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR, | 7751 | tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR, |
| 7747 | NIC_SRAM_RX_BUFFER_DESC); | 7752 | NIC_SRAM_RX_BUFFER_DESC); |
| 7748 | 7753 | ||
| @@ -12122,7 +12127,8 @@ static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp) | |||
| 12122 | 12127 | ||
| 12123 | tp->phy_id = eeprom_phy_id; | 12128 | tp->phy_id = eeprom_phy_id; |
| 12124 | if (eeprom_phy_serdes) { | 12129 | if (eeprom_phy_serdes) { |
| 12125 | if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) | 12130 | if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) || |
| 12131 | GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) | ||
| 12126 | tp->tg3_flags2 |= TG3_FLG2_MII_SERDES; | 12132 | tp->tg3_flags2 |= TG3_FLG2_MII_SERDES; |
| 12127 | else | 12133 | else |
| 12128 | tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES; | 12134 | tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES; |
| @@ -13384,6 +13390,11 @@ static int __devinit tg3_get_invariants(struct tg3 *tp) | |||
| 13384 | if (err) | 13390 | if (err) |
| 13385 | return err; | 13391 | return err; |
| 13386 | 13392 | ||
| 13393 | if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 && | ||
| 13394 | (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0 || | ||
| 13395 | (tp->tg3_flags2 & TG3_FLG2_MII_SERDES))) | ||
| 13396 | return -ENOTSUPP; | ||
| 13397 | |||
| 13387 | /* Initialize data/descriptor byte/word swapping. */ | 13398 | /* Initialize data/descriptor byte/word swapping. */ |
| 13388 | val = tr32(GRC_MODE); | 13399 | val = tr32(GRC_MODE); |
| 13389 | val &= GRC_MODE_HOST_STACKUP; | 13400 | val &= GRC_MODE_HOST_STACKUP; |
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h index cd30889650f8..8a167912902b 100644 --- a/drivers/net/tg3.h +++ b/drivers/net/tg3.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com) | 4 | * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com) |
| 5 | * Copyright (C) 2001 Jeff Garzik (jgarzik@pobox.com) | 5 | * Copyright (C) 2001 Jeff Garzik (jgarzik@pobox.com) |
| 6 | * Copyright (C) 2004 Sun Microsystems Inc. | 6 | * Copyright (C) 2004 Sun Microsystems Inc. |
| 7 | * Copyright (C) 2007-2010 Broadcom Corporation. | ||
| 7 | */ | 8 | */ |
| 8 | 9 | ||
| 9 | #ifndef _T3_H | 10 | #ifndef _T3_H |
| @@ -1054,6 +1055,8 @@ | |||
| 1054 | #define CPMU_MUTEX_REQ_DRIVER 0x00001000 | 1055 | #define CPMU_MUTEX_REQ_DRIVER 0x00001000 |
| 1055 | #define TG3_CPMU_MUTEX_GNT 0x00003660 | 1056 | #define TG3_CPMU_MUTEX_GNT 0x00003660 |
| 1056 | #define CPMU_MUTEX_GNT_DRIVER 0x00001000 | 1057 | #define CPMU_MUTEX_GNT_DRIVER 0x00001000 |
| 1058 | #define TG3_CPMU_PHY_STRAP 0x00003664 | ||
| 1059 | #define TG3_CPMU_PHY_STRAP_IS_SERDES 0x00000020 | ||
| 1057 | /* 0x3664 --> 0x3800 unused */ | 1060 | /* 0x3664 --> 0x3800 unused */ |
| 1058 | 1061 | ||
| 1059 | /* Mbuf cluster free registers */ | 1062 | /* Mbuf cluster free registers */ |
diff --git a/drivers/net/tulip/Kconfig b/drivers/net/tulip/Kconfig index 1cc8cf4425d1..516713fa0a05 100644 --- a/drivers/net/tulip/Kconfig +++ b/drivers/net/tulip/Kconfig | |||
| @@ -101,6 +101,10 @@ config TULIP_NAPI_HW_MITIGATION | |||
| 101 | 101 | ||
| 102 | If in doubt, say Y. | 102 | If in doubt, say Y. |
| 103 | 103 | ||
| 104 | config TULIP_DM910X | ||
| 105 | def_bool y | ||
| 106 | depends on TULIP && SPARC | ||
| 107 | |||
| 104 | config DE4X5 | 108 | config DE4X5 |
| 105 | tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA" | 109 | tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA" |
| 106 | depends on PCI || EISA | 110 | depends on PCI || EISA |
diff --git a/drivers/net/tulip/dmfe.c b/drivers/net/tulip/dmfe.c index ad63621913c3..6f44ebf58910 100644 --- a/drivers/net/tulip/dmfe.c +++ b/drivers/net/tulip/dmfe.c | |||
| @@ -92,6 +92,10 @@ | |||
| 92 | #include <asm/uaccess.h> | 92 | #include <asm/uaccess.h> |
| 93 | #include <asm/irq.h> | 93 | #include <asm/irq.h> |
| 94 | 94 | ||
| 95 | #ifdef CONFIG_TULIP_DM910X | ||
| 96 | #include <linux/of.h> | ||
| 97 | #endif | ||
| 98 | |||
| 95 | 99 | ||
| 96 | /* Board/System/Debug information/definition ---------------- */ | 100 | /* Board/System/Debug information/definition ---------------- */ |
| 97 | #define PCI_DM9132_ID 0x91321282 /* Davicom DM9132 ID */ | 101 | #define PCI_DM9132_ID 0x91321282 /* Davicom DM9132 ID */ |
| @@ -377,6 +381,23 @@ static int __devinit dmfe_init_one (struct pci_dev *pdev, | |||
| 377 | if (!printed_version++) | 381 | if (!printed_version++) |
| 378 | printk(version); | 382 | printk(version); |
| 379 | 383 | ||
| 384 | /* | ||
| 385 | * SPARC on-board DM910x chips should be handled by the main | ||
| 386 | * tulip driver, except for early DM9100s. | ||
| 387 | */ | ||
| 388 | #ifdef CONFIG_TULIP_DM910X | ||
| 389 | if ((ent->driver_data == PCI_DM9100_ID && pdev->revision >= 0x30) || | ||
| 390 | ent->driver_data == PCI_DM9102_ID) { | ||
| 391 | struct device_node *dp = pci_device_to_OF_node(pdev); | ||
| 392 | |||
| 393 | if (dp && of_get_property(dp, "local-mac-address", NULL)) { | ||
| 394 | printk(KERN_INFO DRV_NAME | ||
| 395 | ": skipping on-board DM910x (use tulip)\n"); | ||
| 396 | return -ENODEV; | ||
| 397 | } | ||
| 398 | } | ||
| 399 | #endif | ||
| 400 | |||
| 380 | /* Init network device */ | 401 | /* Init network device */ |
| 381 | dev = alloc_etherdev(sizeof(*db)); | 402 | dev = alloc_etherdev(sizeof(*db)); |
| 382 | if (dev == NULL) | 403 | if (dev == NULL) |
diff --git a/drivers/net/tulip/tulip_core.c b/drivers/net/tulip/tulip_core.c index 0fa3140d65bf..20696b5d60a5 100644 --- a/drivers/net/tulip/tulip_core.c +++ b/drivers/net/tulip/tulip_core.c | |||
| @@ -196,9 +196,13 @@ struct tulip_chip_table tulip_tbl[] = { | |||
| 196 | | HAS_NWAY | HAS_PCI_MWI, tulip_timer, tulip_media_task }, | 196 | | HAS_NWAY | HAS_PCI_MWI, tulip_timer, tulip_media_task }, |
| 197 | 197 | ||
| 198 | /* DM910X */ | 198 | /* DM910X */ |
| 199 | #ifdef CONFIG_TULIP_DM910X | ||
| 199 | { "Davicom DM9102/DM9102A", 128, 0x0001ebef, | 200 | { "Davicom DM9102/DM9102A", 128, 0x0001ebef, |
| 200 | HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_ACPI, | 201 | HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_ACPI, |
| 201 | tulip_timer, tulip_media_task }, | 202 | tulip_timer, tulip_media_task }, |
| 203 | #else | ||
| 204 | { NULL }, | ||
| 205 | #endif | ||
| 202 | 206 | ||
| 203 | /* RS7112 */ | 207 | /* RS7112 */ |
| 204 | { "Conexant LANfinity", 256, 0x0001ebef, | 208 | { "Conexant LANfinity", 256, 0x0001ebef, |
| @@ -228,8 +232,10 @@ static struct pci_device_id tulip_pci_tbl[] = { | |||
| 228 | { 0x1259, 0xa120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 232 | { 0x1259, 0xa120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
| 229 | { 0x11F6, 0x9881, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMPEX9881 }, | 233 | { 0x11F6, 0x9881, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMPEX9881 }, |
| 230 | { 0x8086, 0x0039, PCI_ANY_ID, PCI_ANY_ID, 0, 0, I21145 }, | 234 | { 0x8086, 0x0039, PCI_ANY_ID, PCI_ANY_ID, 0, 0, I21145 }, |
| 235 | #ifdef CONFIG_TULIP_DM910X | ||
| 231 | { 0x1282, 0x9100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, | 236 | { 0x1282, 0x9100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, |
| 232 | { 0x1282, 0x9102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, | 237 | { 0x1282, 0x9102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, |
| 238 | #endif | ||
| 233 | { 0x1113, 0x1216, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 239 | { 0x1113, 0x1216, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
| 234 | { 0x1113, 0x1217, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 }, | 240 | { 0x1113, 0x1217, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 }, |
| 235 | { 0x1113, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 241 | { 0x1113, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
| @@ -243,6 +249,7 @@ static struct pci_device_id tulip_pci_tbl[] = { | |||
| 243 | { 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 249 | { 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
| 244 | { 0x10b7, 0x9300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* 3Com 3CSOHO100B-TX */ | 250 | { 0x10b7, 0x9300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* 3Com 3CSOHO100B-TX */ |
| 245 | { 0x14ea, 0xab08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Planex FNW-3602-TX */ | 251 | { 0x14ea, 0xab08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Planex FNW-3602-TX */ |
| 252 | { 0x1414, 0x0001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Microsoft MN-120 */ | ||
| 246 | { 0x1414, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 253 | { 0x1414, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
| 247 | { } /* terminate list */ | 254 | { } /* terminate list */ |
| 248 | }; | 255 | }; |
| @@ -1299,18 +1306,30 @@ static int __devinit tulip_init_one (struct pci_dev *pdev, | |||
| 1299 | } | 1306 | } |
| 1300 | 1307 | ||
| 1301 | /* | 1308 | /* |
| 1302 | * Early DM9100's need software CRC and the DMFE driver | 1309 | * DM910x chips should be handled by the dmfe driver, except |
| 1310 | * on-board chips on SPARC systems. Also, early DM9100s need | ||
| 1311 | * software CRC which only the dmfe driver supports. | ||
| 1303 | */ | 1312 | */ |
| 1304 | 1313 | ||
| 1305 | if (pdev->vendor == 0x1282 && pdev->device == 0x9100) | 1314 | #ifdef CONFIG_TULIP_DM910X |
| 1306 | { | 1315 | if (chip_idx == DM910X) { |
| 1307 | /* Read Chip revision */ | 1316 | struct device_node *dp; |
| 1308 | if (pdev->revision < 0x30) | 1317 | |
| 1309 | { | 1318 | if (pdev->vendor == 0x1282 && pdev->device == 0x9100 && |
| 1310 | printk(KERN_ERR PFX "skipping early DM9100 with Crc bug (use dmfe)\n"); | 1319 | pdev->revision < 0x30) { |
| 1320 | printk(KERN_INFO PFX | ||
| 1321 | "skipping early DM9100 with Crc bug (use dmfe)\n"); | ||
| 1322 | return -ENODEV; | ||
| 1323 | } | ||
| 1324 | |||
| 1325 | dp = pci_device_to_OF_node(pdev); | ||
| 1326 | if (!(dp && of_get_property(dp, "local-mac-address", NULL))) { | ||
| 1327 | printk(KERN_INFO PFX | ||
| 1328 | "skipping DM910x expansion card (use dmfe)\n"); | ||
| 1311 | return -ENODEV; | 1329 | return -ENODEV; |
| 1312 | } | 1330 | } |
| 1313 | } | 1331 | } |
| 1332 | #endif | ||
| 1314 | 1333 | ||
| 1315 | /* | 1334 | /* |
| 1316 | * Looks for early PCI chipsets where people report hangs | 1335 | * Looks for early PCI chipsets where people report hangs |
diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index 41ad2f3697c7..eb8fe7e16c6c 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/ucc_geth.c | |||
| @@ -3279,13 +3279,12 @@ static int ucc_geth_tx(struct net_device *dev, u8 txQ) | |||
| 3279 | /* Handle the transmitted buffer and release */ | 3279 | /* Handle the transmitted buffer and release */ |
| 3280 | /* the BD to be used with the current frame */ | 3280 | /* the BD to be used with the current frame */ |
| 3281 | 3281 | ||
| 3282 | if (bd == ugeth->txBd[txQ]) /* queue empty? */ | 3282 | skb = ugeth->tx_skbuff[txQ][ugeth->skb_dirtytx[txQ]]; |
| 3283 | if (!skb) | ||
| 3283 | break; | 3284 | break; |
| 3284 | 3285 | ||
| 3285 | dev->stats.tx_packets++; | 3286 | dev->stats.tx_packets++; |
| 3286 | 3287 | ||
| 3287 | skb = ugeth->tx_skbuff[txQ][ugeth->skb_dirtytx[txQ]]; | ||
| 3288 | |||
| 3289 | if (skb_queue_len(&ugeth->rx_recycle) < RX_BD_RING_LEN && | 3288 | if (skb_queue_len(&ugeth->rx_recycle) < RX_BD_RING_LEN && |
| 3290 | skb_recycle_check(skb, | 3289 | skb_recycle_check(skb, |
| 3291 | ugeth->ug_info->uf_info.max_rx_buf_length + | 3290 | ugeth->ug_info->uf_info.max_rx_buf_length + |
| @@ -3607,6 +3606,7 @@ static int ucc_geth_suspend(struct of_device *ofdev, pm_message_t state) | |||
| 3607 | if (!netif_running(ndev)) | 3606 | if (!netif_running(ndev)) |
| 3608 | return 0; | 3607 | return 0; |
| 3609 | 3608 | ||
| 3609 | netif_device_detach(ndev); | ||
| 3610 | napi_disable(&ugeth->napi); | 3610 | napi_disable(&ugeth->napi); |
| 3611 | 3611 | ||
| 3612 | /* | 3612 | /* |
| @@ -3665,7 +3665,7 @@ static int ucc_geth_resume(struct of_device *ofdev) | |||
| 3665 | phy_start(ugeth->phydev); | 3665 | phy_start(ugeth->phydev); |
| 3666 | 3666 | ||
| 3667 | napi_enable(&ugeth->napi); | 3667 | napi_enable(&ugeth->napi); |
| 3668 | netif_start_queue(ndev); | 3668 | netif_device_attach(ndev); |
| 3669 | 3669 | ||
| 3670 | return 0; | 3670 | return 0; |
| 3671 | } | 3671 | } |
diff --git a/drivers/net/ucc_geth.h b/drivers/net/ucc_geth.h index a007e2acf651..ef1fbeb11c6e 100644 --- a/drivers/net/ucc_geth.h +++ b/drivers/net/ucc_geth.h | |||
| @@ -838,13 +838,13 @@ struct ucc_geth_hardware_statistics { | |||
| 838 | using the maximum is | 838 | using the maximum is |
| 839 | easier */ | 839 | easier */ |
| 840 | #define UCC_GETH_SEND_QUEUE_QUEUE_DESCRIPTOR_ALIGNMENT 32 | 840 | #define UCC_GETH_SEND_QUEUE_QUEUE_DESCRIPTOR_ALIGNMENT 32 |
| 841 | #define UCC_GETH_SCHEDULER_ALIGNMENT 4 /* This is a guess */ | 841 | #define UCC_GETH_SCHEDULER_ALIGNMENT 8 /* This is a guess */ |
| 842 | #define UCC_GETH_TX_STATISTICS_ALIGNMENT 4 /* This is a guess */ | 842 | #define UCC_GETH_TX_STATISTICS_ALIGNMENT 4 /* This is a guess */ |
| 843 | #define UCC_GETH_RX_STATISTICS_ALIGNMENT 4 /* This is a guess */ | 843 | #define UCC_GETH_RX_STATISTICS_ALIGNMENT 4 /* This is a guess */ |
| 844 | #define UCC_GETH_RX_INTERRUPT_COALESCING_ALIGNMENT 64 | 844 | #define UCC_GETH_RX_INTERRUPT_COALESCING_ALIGNMENT 64 |
| 845 | #define UCC_GETH_RX_BD_QUEUES_ALIGNMENT 8 /* This is a guess */ | 845 | #define UCC_GETH_RX_BD_QUEUES_ALIGNMENT 8 /* This is a guess */ |
| 846 | #define UCC_GETH_RX_PREFETCHED_BDS_ALIGNMENT 128 /* This is a guess */ | 846 | #define UCC_GETH_RX_PREFETCHED_BDS_ALIGNMENT 128 /* This is a guess */ |
| 847 | #define UCC_GETH_RX_EXTENDED_FILTERING_GLOBAL_PARAMETERS_ALIGNMENT 4 /* This | 847 | #define UCC_GETH_RX_EXTENDED_FILTERING_GLOBAL_PARAMETERS_ALIGNMENT 8 /* This |
| 848 | is a | 848 | is a |
| 849 | guess | 849 | guess |
| 850 | */ | 850 | */ |
| @@ -899,16 +899,17 @@ struct ucc_geth_hardware_statistics { | |||
| 899 | #define UCC_GETH_UTFS_INIT 512 /* Tx virtual FIFO size | 899 | #define UCC_GETH_UTFS_INIT 512 /* Tx virtual FIFO size |
| 900 | */ | 900 | */ |
| 901 | #define UCC_GETH_UTFET_INIT 256 /* 1/2 utfs */ | 901 | #define UCC_GETH_UTFET_INIT 256 /* 1/2 utfs */ |
| 902 | #define UCC_GETH_UTFTT_INIT 128 | 902 | #define UCC_GETH_UTFTT_INIT 512 |
| 903 | /* Gigabit Ethernet (1000 Mbps) */ | 903 | /* Gigabit Ethernet (1000 Mbps) */ |
| 904 | #define UCC_GETH_URFS_GIGA_INIT 4096/*2048*/ /* Rx virtual | 904 | #define UCC_GETH_URFS_GIGA_INIT 4096/*2048*/ /* Rx virtual |
| 905 | FIFO size */ | 905 | FIFO size */ |
| 906 | #define UCC_GETH_URFET_GIGA_INIT 2048/*1024*/ /* 1/2 urfs */ | 906 | #define UCC_GETH_URFET_GIGA_INIT 2048/*1024*/ /* 1/2 urfs */ |
| 907 | #define UCC_GETH_URFSET_GIGA_INIT 3072/*1536*/ /* 3/4 urfs */ | 907 | #define UCC_GETH_URFSET_GIGA_INIT 3072/*1536*/ /* 3/4 urfs */ |
| 908 | #define UCC_GETH_UTFS_GIGA_INIT 8192/*2048*/ /* Tx virtual | 908 | #define UCC_GETH_UTFS_GIGA_INIT 4096/*2048*/ /* Tx virtual |
| 909 | FIFO size */ | ||
| 910 | #define UCC_GETH_UTFET_GIGA_INIT 2048/*1024*/ /* 1/2 utfs */ | ||
| 911 | #define UCC_GETH_UTFTT_GIGA_INIT 4096/*0x40*/ /* Tx virtual | ||
| 909 | FIFO size */ | 912 | FIFO size */ |
| 910 | #define UCC_GETH_UTFET_GIGA_INIT 4096/*1024*/ /* 1/2 utfs */ | ||
| 911 | #define UCC_GETH_UTFTT_GIGA_INIT 0x400/*0x40*/ /* */ | ||
| 912 | 913 | ||
| 913 | #define UCC_GETH_REMODER_INIT 0 /* bits that must be | 914 | #define UCC_GETH_REMODER_INIT 0 /* bits that must be |
| 914 | set */ | 915 | set */ |
diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c index 21e183a83b99..4f27f022fbf7 100644 --- a/drivers/net/usb/cdc_ether.c +++ b/drivers/net/usb/cdc_ether.c | |||
| @@ -419,7 +419,7 @@ static int cdc_manage_power(struct usbnet *dev, int on) | |||
| 419 | 419 | ||
| 420 | static const struct driver_info cdc_info = { | 420 | static const struct driver_info cdc_info = { |
| 421 | .description = "CDC Ethernet Device", | 421 | .description = "CDC Ethernet Device", |
| 422 | .flags = FLAG_ETHER | FLAG_LINK_INTR, | 422 | .flags = FLAG_ETHER, |
| 423 | // .check_connect = cdc_check_connect, | 423 | // .check_connect = cdc_check_connect, |
| 424 | .bind = cdc_bind, | 424 | .bind = cdc_bind, |
| 425 | .unbind = usbnet_cdc_unbind, | 425 | .unbind = usbnet_cdc_unbind, |
diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c index f78f0903b073..6895f1531238 100644 --- a/drivers/net/usb/hso.c +++ b/drivers/net/usb/hso.c | |||
| @@ -286,6 +286,7 @@ struct hso_device { | |||
| 286 | u8 usb_gone; | 286 | u8 usb_gone; |
| 287 | struct work_struct async_get_intf; | 287 | struct work_struct async_get_intf; |
| 288 | struct work_struct async_put_intf; | 288 | struct work_struct async_put_intf; |
| 289 | struct work_struct reset_device; | ||
| 289 | 290 | ||
| 290 | struct usb_device *usb; | 291 | struct usb_device *usb; |
| 291 | struct usb_interface *interface; | 292 | struct usb_interface *interface; |
| @@ -332,7 +333,8 @@ static void hso_kick_transmit(struct hso_serial *serial); | |||
| 332 | /* Helper functions */ | 333 | /* Helper functions */ |
| 333 | static int hso_mux_submit_intr_urb(struct hso_shared_int *mux_int, | 334 | static int hso_mux_submit_intr_urb(struct hso_shared_int *mux_int, |
| 334 | struct usb_device *usb, gfp_t gfp); | 335 | struct usb_device *usb, gfp_t gfp); |
| 335 | static void log_usb_status(int status, const char *function); | 336 | static void handle_usb_error(int status, const char *function, |
| 337 | struct hso_device *hso_dev); | ||
| 336 | static struct usb_endpoint_descriptor *hso_get_ep(struct usb_interface *intf, | 338 | static struct usb_endpoint_descriptor *hso_get_ep(struct usb_interface *intf, |
| 337 | int type, int dir); | 339 | int type, int dir); |
| 338 | static int hso_get_mux_ports(struct usb_interface *intf, unsigned char *ports); | 340 | static int hso_get_mux_ports(struct usb_interface *intf, unsigned char *ports); |
| @@ -350,6 +352,7 @@ static void async_put_intf(struct work_struct *data); | |||
| 350 | static int hso_put_activity(struct hso_device *hso_dev); | 352 | static int hso_put_activity(struct hso_device *hso_dev); |
| 351 | static int hso_get_activity(struct hso_device *hso_dev); | 353 | static int hso_get_activity(struct hso_device *hso_dev); |
| 352 | static void tiocmget_intr_callback(struct urb *urb); | 354 | static void tiocmget_intr_callback(struct urb *urb); |
| 355 | static void reset_device(struct work_struct *data); | ||
| 353 | /*****************************************************************************/ | 356 | /*****************************************************************************/ |
| 354 | /* Helping functions */ | 357 | /* Helping functions */ |
| 355 | /*****************************************************************************/ | 358 | /*****************************************************************************/ |
| @@ -461,10 +464,17 @@ static const struct usb_device_id hso_ids[] = { | |||
| 461 | {USB_DEVICE(0x0af0, 0x7501)}, /* GTM 382 */ | 464 | {USB_DEVICE(0x0af0, 0x7501)}, /* GTM 382 */ |
| 462 | {USB_DEVICE(0x0af0, 0x7601)}, /* GE40x */ | 465 | {USB_DEVICE(0x0af0, 0x7601)}, /* GE40x */ |
| 463 | {USB_DEVICE(0x0af0, 0x7701)}, | 466 | {USB_DEVICE(0x0af0, 0x7701)}, |
| 467 | {USB_DEVICE(0x0af0, 0x7706)}, | ||
| 464 | {USB_DEVICE(0x0af0, 0x7801)}, | 468 | {USB_DEVICE(0x0af0, 0x7801)}, |
| 465 | {USB_DEVICE(0x0af0, 0x7901)}, | 469 | {USB_DEVICE(0x0af0, 0x7901)}, |
| 470 | {USB_DEVICE(0x0af0, 0x7A01)}, | ||
| 471 | {USB_DEVICE(0x0af0, 0x7A05)}, | ||
| 466 | {USB_DEVICE(0x0af0, 0x8200)}, | 472 | {USB_DEVICE(0x0af0, 0x8200)}, |
| 467 | {USB_DEVICE(0x0af0, 0x8201)}, | 473 | {USB_DEVICE(0x0af0, 0x8201)}, |
| 474 | {USB_DEVICE(0x0af0, 0x8300)}, | ||
| 475 | {USB_DEVICE(0x0af0, 0x8302)}, | ||
| 476 | {USB_DEVICE(0x0af0, 0x8304)}, | ||
| 477 | {USB_DEVICE(0x0af0, 0x8400)}, | ||
| 468 | {USB_DEVICE(0x0af0, 0xd035)}, | 478 | {USB_DEVICE(0x0af0, 0xd035)}, |
| 469 | {USB_DEVICE(0x0af0, 0xd055)}, | 479 | {USB_DEVICE(0x0af0, 0xd055)}, |
| 470 | {USB_DEVICE(0x0af0, 0xd155)}, | 480 | {USB_DEVICE(0x0af0, 0xd155)}, |
| @@ -473,6 +483,8 @@ static const struct usb_device_id hso_ids[] = { | |||
| 473 | {USB_DEVICE(0x0af0, 0xd157)}, | 483 | {USB_DEVICE(0x0af0, 0xd157)}, |
| 474 | {USB_DEVICE(0x0af0, 0xd257)}, | 484 | {USB_DEVICE(0x0af0, 0xd257)}, |
| 475 | {USB_DEVICE(0x0af0, 0xd357)}, | 485 | {USB_DEVICE(0x0af0, 0xd357)}, |
| 486 | {USB_DEVICE(0x0af0, 0xd058)}, | ||
| 487 | {USB_DEVICE(0x0af0, 0xc100)}, | ||
| 476 | {} | 488 | {} |
| 477 | }; | 489 | }; |
| 478 | MODULE_DEVICE_TABLE(usb, hso_ids); | 490 | MODULE_DEVICE_TABLE(usb, hso_ids); |
| @@ -655,8 +667,8 @@ static void set_serial_by_index(unsigned index, struct hso_serial *serial) | |||
| 655 | spin_unlock_irqrestore(&serial_table_lock, flags); | 667 | spin_unlock_irqrestore(&serial_table_lock, flags); |
| 656 | } | 668 | } |
| 657 | 669 | ||
| 658 | /* log a meaningful explanation of an USB status */ | 670 | static void handle_usb_error(int status, const char *function, |
| 659 | static void log_usb_status(int status, const char *function) | 671 | struct hso_device *hso_dev) |
| 660 | { | 672 | { |
| 661 | char *explanation; | 673 | char *explanation; |
| 662 | 674 | ||
| @@ -685,10 +697,20 @@ static void log_usb_status(int status, const char *function) | |||
| 685 | case -EMSGSIZE: | 697 | case -EMSGSIZE: |
| 686 | explanation = "internal error"; | 698 | explanation = "internal error"; |
| 687 | break; | 699 | break; |
| 700 | case -EILSEQ: | ||
| 701 | case -EPROTO: | ||
| 702 | case -ETIME: | ||
| 703 | case -ETIMEDOUT: | ||
| 704 | explanation = "protocol error"; | ||
| 705 | if (hso_dev) | ||
| 706 | schedule_work(&hso_dev->reset_device); | ||
| 707 | break; | ||
| 688 | default: | 708 | default: |
| 689 | explanation = "unknown status"; | 709 | explanation = "unknown status"; |
| 690 | break; | 710 | break; |
| 691 | } | 711 | } |
| 712 | |||
| 713 | /* log a meaningful explanation of an USB status */ | ||
| 692 | D1("%s: received USB status - %s (%d)", function, explanation, status); | 714 | D1("%s: received USB status - %s (%d)", function, explanation, status); |
| 693 | } | 715 | } |
| 694 | 716 | ||
| @@ -762,7 +784,7 @@ static void write_bulk_callback(struct urb *urb) | |||
| 762 | /* log status, but don't act on it, we don't need to resubmit anything | 784 | /* log status, but don't act on it, we don't need to resubmit anything |
| 763 | * anyhow */ | 785 | * anyhow */ |
| 764 | if (status) | 786 | if (status) |
| 765 | log_usb_status(status, __func__); | 787 | handle_usb_error(status, __func__, odev->parent); |
| 766 | 788 | ||
| 767 | hso_put_activity(odev->parent); | 789 | hso_put_activity(odev->parent); |
| 768 | 790 | ||
| @@ -806,7 +828,7 @@ static netdev_tx_t hso_net_start_xmit(struct sk_buff *skb, | |||
| 806 | result = usb_submit_urb(odev->mux_bulk_tx_urb, GFP_ATOMIC); | 828 | result = usb_submit_urb(odev->mux_bulk_tx_urb, GFP_ATOMIC); |
| 807 | if (result) { | 829 | if (result) { |
| 808 | dev_warn(&odev->parent->interface->dev, | 830 | dev_warn(&odev->parent->interface->dev, |
| 809 | "failed mux_bulk_tx_urb %d", result); | 831 | "failed mux_bulk_tx_urb %d\n", result); |
| 810 | net->stats.tx_errors++; | 832 | net->stats.tx_errors++; |
| 811 | netif_start_queue(net); | 833 | netif_start_queue(net); |
| 812 | } else { | 834 | } else { |
| @@ -998,7 +1020,7 @@ static void read_bulk_callback(struct urb *urb) | |||
| 998 | 1020 | ||
| 999 | /* is al ok? (Filip: Who's Al ?) */ | 1021 | /* is al ok? (Filip: Who's Al ?) */ |
| 1000 | if (status) { | 1022 | if (status) { |
| 1001 | log_usb_status(status, __func__); | 1023 | handle_usb_error(status, __func__, odev->parent); |
| 1002 | return; | 1024 | return; |
| 1003 | } | 1025 | } |
| 1004 | 1026 | ||
| @@ -1019,7 +1041,8 @@ static void read_bulk_callback(struct urb *urb) | |||
| 1019 | if (odev->parent->port_spec & HSO_INFO_CRC_BUG) { | 1041 | if (odev->parent->port_spec & HSO_INFO_CRC_BUG) { |
| 1020 | u32 rest; | 1042 | u32 rest; |
| 1021 | u8 crc_check[4] = { 0xDE, 0xAD, 0xBE, 0xEF }; | 1043 | u8 crc_check[4] = { 0xDE, 0xAD, 0xBE, 0xEF }; |
| 1022 | rest = urb->actual_length % odev->in_endp->wMaxPacketSize; | 1044 | rest = urb->actual_length % |
| 1045 | le16_to_cpu(odev->in_endp->wMaxPacketSize); | ||
| 1023 | if (((rest == 5) || (rest == 6)) && | 1046 | if (((rest == 5) || (rest == 6)) && |
| 1024 | !memcmp(((u8 *) urb->transfer_buffer) + | 1047 | !memcmp(((u8 *) urb->transfer_buffer) + |
| 1025 | urb->actual_length - 4, crc_check, 4)) { | 1048 | urb->actual_length - 4, crc_check, 4)) { |
| @@ -1053,7 +1076,7 @@ static void read_bulk_callback(struct urb *urb) | |||
| 1053 | result = usb_submit_urb(urb, GFP_ATOMIC); | 1076 | result = usb_submit_urb(urb, GFP_ATOMIC); |
| 1054 | if (result) | 1077 | if (result) |
| 1055 | dev_warn(&odev->parent->interface->dev, | 1078 | dev_warn(&odev->parent->interface->dev, |
| 1056 | "%s failed submit mux_bulk_rx_urb %d", __func__, | 1079 | "%s failed submit mux_bulk_rx_urb %d\n", __func__, |
| 1057 | result); | 1080 | result); |
| 1058 | } | 1081 | } |
| 1059 | 1082 | ||
| @@ -1207,7 +1230,7 @@ static void hso_std_serial_read_bulk_callback(struct urb *urb) | |||
| 1207 | D1("serial == NULL"); | 1230 | D1("serial == NULL"); |
| 1208 | return; | 1231 | return; |
| 1209 | } else if (status) { | 1232 | } else if (status) { |
| 1210 | log_usb_status(status, __func__); | 1233 | handle_usb_error(status, __func__, serial->parent); |
| 1211 | return; | 1234 | return; |
| 1212 | } | 1235 | } |
| 1213 | 1236 | ||
| @@ -1225,7 +1248,7 @@ static void hso_std_serial_read_bulk_callback(struct urb *urb) | |||
| 1225 | u8 crc_check[4] = { 0xDE, 0xAD, 0xBE, 0xEF }; | 1248 | u8 crc_check[4] = { 0xDE, 0xAD, 0xBE, 0xEF }; |
| 1226 | rest = | 1249 | rest = |
| 1227 | urb->actual_length % | 1250 | urb->actual_length % |
| 1228 | serial->in_endp->wMaxPacketSize; | 1251 | le16_to_cpu(serial->in_endp->wMaxPacketSize); |
| 1229 | if (((rest == 5) || (rest == 6)) && | 1252 | if (((rest == 5) || (rest == 6)) && |
| 1230 | !memcmp(((u8 *) urb->transfer_buffer) + | 1253 | !memcmp(((u8 *) urb->transfer_buffer) + |
| 1231 | urb->actual_length - 4, crc_check, 4)) { | 1254 | urb->actual_length - 4, crc_check, 4)) { |
| @@ -1513,7 +1536,7 @@ static void tiocmget_intr_callback(struct urb *urb) | |||
| 1513 | if (!serial) | 1536 | if (!serial) |
| 1514 | return; | 1537 | return; |
| 1515 | if (status) { | 1538 | if (status) { |
| 1516 | log_usb_status(status, __func__); | 1539 | handle_usb_error(status, __func__, serial->parent); |
| 1517 | return; | 1540 | return; |
| 1518 | } | 1541 | } |
| 1519 | tiocmget = serial->tiocmget; | 1542 | tiocmget = serial->tiocmget; |
| @@ -1700,6 +1723,10 @@ static int hso_serial_tiocmset(struct tty_struct *tty, struct file *file, | |||
| 1700 | D1("no tty structures"); | 1723 | D1("no tty structures"); |
| 1701 | return -EINVAL; | 1724 | return -EINVAL; |
| 1702 | } | 1725 | } |
| 1726 | |||
| 1727 | if ((serial->parent->port_spec & HSO_PORT_MASK) != HSO_PORT_MODEM) | ||
| 1728 | return -EINVAL; | ||
| 1729 | |||
| 1703 | if_num = serial->parent->interface->altsetting->desc.bInterfaceNumber; | 1730 | if_num = serial->parent->interface->altsetting->desc.bInterfaceNumber; |
| 1704 | 1731 | ||
| 1705 | spin_lock_irqsave(&serial->serial_lock, flags); | 1732 | spin_lock_irqsave(&serial->serial_lock, flags); |
| @@ -1838,7 +1865,7 @@ static int mux_device_request(struct hso_serial *serial, u8 type, u16 port, | |||
| 1838 | result = usb_submit_urb(ctrl_urb, GFP_ATOMIC); | 1865 | result = usb_submit_urb(ctrl_urb, GFP_ATOMIC); |
| 1839 | if (result) { | 1866 | if (result) { |
| 1840 | dev_err(&ctrl_urb->dev->dev, | 1867 | dev_err(&ctrl_urb->dev->dev, |
| 1841 | "%s failed submit ctrl_urb %d type %d", __func__, | 1868 | "%s failed submit ctrl_urb %d type %d\n", __func__, |
| 1842 | result, type); | 1869 | result, type); |
| 1843 | return result; | 1870 | return result; |
| 1844 | } | 1871 | } |
| @@ -1888,7 +1915,7 @@ static void intr_callback(struct urb *urb) | |||
| 1888 | 1915 | ||
| 1889 | /* status check */ | 1916 | /* status check */ |
| 1890 | if (status) { | 1917 | if (status) { |
| 1891 | log_usb_status(status, __func__); | 1918 | handle_usb_error(status, __func__, NULL); |
| 1892 | return; | 1919 | return; |
| 1893 | } | 1920 | } |
| 1894 | D4("\n--- Got intr callback 0x%02X ---", status); | 1921 | D4("\n--- Got intr callback 0x%02X ---", status); |
| @@ -1905,18 +1932,18 @@ static void intr_callback(struct urb *urb) | |||
| 1905 | if (serial != NULL) { | 1932 | if (serial != NULL) { |
| 1906 | D1("Pending read interrupt on port %d\n", i); | 1933 | D1("Pending read interrupt on port %d\n", i); |
| 1907 | spin_lock(&serial->serial_lock); | 1934 | spin_lock(&serial->serial_lock); |
| 1908 | if (serial->rx_state == RX_IDLE) { | 1935 | if (serial->rx_state == RX_IDLE && |
| 1936 | serial->open_count > 0) { | ||
| 1909 | /* Setup and send a ctrl req read on | 1937 | /* Setup and send a ctrl req read on |
| 1910 | * port i */ | 1938 | * port i */ |
| 1911 | if (!serial->rx_urb_filled[0]) { | 1939 | if (!serial->rx_urb_filled[0]) { |
| 1912 | serial->rx_state = RX_SENT; | 1940 | serial->rx_state = RX_SENT; |
| 1913 | hso_mux_serial_read(serial); | 1941 | hso_mux_serial_read(serial); |
| 1914 | } else | 1942 | } else |
| 1915 | serial->rx_state = RX_PENDING; | 1943 | serial->rx_state = RX_PENDING; |
| 1916 | |||
| 1917 | } else { | 1944 | } else { |
| 1918 | D1("Already pending a read on " | 1945 | D1("Already a read pending on " |
| 1919 | "port %d\n", i); | 1946 | "port %d or port not open\n", i); |
| 1920 | } | 1947 | } |
| 1921 | spin_unlock(&serial->serial_lock); | 1948 | spin_unlock(&serial->serial_lock); |
| 1922 | } | 1949 | } |
| @@ -1958,7 +1985,7 @@ static void hso_std_serial_write_bulk_callback(struct urb *urb) | |||
| 1958 | tty = tty_kref_get(serial->tty); | 1985 | tty = tty_kref_get(serial->tty); |
| 1959 | spin_unlock(&serial->serial_lock); | 1986 | spin_unlock(&serial->serial_lock); |
| 1960 | if (status) { | 1987 | if (status) { |
| 1961 | log_usb_status(status, __func__); | 1988 | handle_usb_error(status, __func__, serial->parent); |
| 1962 | tty_kref_put(tty); | 1989 | tty_kref_put(tty); |
| 1963 | return; | 1990 | return; |
| 1964 | } | 1991 | } |
| @@ -2014,7 +2041,7 @@ static void ctrl_callback(struct urb *urb) | |||
| 2014 | tty = tty_kref_get(serial->tty); | 2041 | tty = tty_kref_get(serial->tty); |
| 2015 | spin_unlock(&serial->serial_lock); | 2042 | spin_unlock(&serial->serial_lock); |
| 2016 | if (status) { | 2043 | if (status) { |
| 2017 | log_usb_status(status, __func__); | 2044 | handle_usb_error(status, __func__, serial->parent); |
| 2018 | tty_kref_put(tty); | 2045 | tty_kref_put(tty); |
| 2019 | return; | 2046 | return; |
| 2020 | } | 2047 | } |
| @@ -2358,12 +2385,12 @@ static int hso_serial_common_create(struct hso_serial *serial, int num_urbs, | |||
| 2358 | serial->tx_data_length = tx_size; | 2385 | serial->tx_data_length = tx_size; |
| 2359 | serial->tx_data = kzalloc(serial->tx_data_length, GFP_KERNEL); | 2386 | serial->tx_data = kzalloc(serial->tx_data_length, GFP_KERNEL); |
| 2360 | if (!serial->tx_data) { | 2387 | if (!serial->tx_data) { |
| 2361 | dev_err(dev, "%s - Out of memory", __func__); | 2388 | dev_err(dev, "%s - Out of memory\n", __func__); |
| 2362 | goto exit; | 2389 | goto exit; |
| 2363 | } | 2390 | } |
| 2364 | serial->tx_buffer = kzalloc(serial->tx_data_length, GFP_KERNEL); | 2391 | serial->tx_buffer = kzalloc(serial->tx_data_length, GFP_KERNEL); |
| 2365 | if (!serial->tx_buffer) { | 2392 | if (!serial->tx_buffer) { |
| 2366 | dev_err(dev, "%s - Out of memory", __func__); | 2393 | dev_err(dev, "%s - Out of memory\n", __func__); |
| 2367 | goto exit; | 2394 | goto exit; |
| 2368 | } | 2395 | } |
| 2369 | 2396 | ||
| @@ -2391,6 +2418,7 @@ static struct hso_device *hso_create_device(struct usb_interface *intf, | |||
| 2391 | 2418 | ||
| 2392 | INIT_WORK(&hso_dev->async_get_intf, async_get_intf); | 2419 | INIT_WORK(&hso_dev->async_get_intf, async_get_intf); |
| 2393 | INIT_WORK(&hso_dev->async_put_intf, async_put_intf); | 2420 | INIT_WORK(&hso_dev->async_put_intf, async_put_intf); |
| 2421 | INIT_WORK(&hso_dev->reset_device, reset_device); | ||
| 2394 | 2422 | ||
| 2395 | return hso_dev; | 2423 | return hso_dev; |
| 2396 | } | 2424 | } |
| @@ -2831,13 +2859,14 @@ struct hso_shared_int *hso_create_shared_int(struct usb_interface *interface) | |||
| 2831 | 2859 | ||
| 2832 | mux->shared_intr_urb = usb_alloc_urb(0, GFP_KERNEL); | 2860 | mux->shared_intr_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 2833 | if (!mux->shared_intr_urb) { | 2861 | if (!mux->shared_intr_urb) { |
| 2834 | dev_err(&interface->dev, "Could not allocate intr urb?"); | 2862 | dev_err(&interface->dev, "Could not allocate intr urb?\n"); |
| 2835 | goto exit; | 2863 | goto exit; |
| 2836 | } | 2864 | } |
| 2837 | mux->shared_intr_buf = kzalloc(mux->intr_endp->wMaxPacketSize, | 2865 | mux->shared_intr_buf = |
| 2838 | GFP_KERNEL); | 2866 | kzalloc(le16_to_cpu(mux->intr_endp->wMaxPacketSize), |
| 2867 | GFP_KERNEL); | ||
| 2839 | if (!mux->shared_intr_buf) { | 2868 | if (!mux->shared_intr_buf) { |
| 2840 | dev_err(&interface->dev, "Could not allocate intr buf?"); | 2869 | dev_err(&interface->dev, "Could not allocate intr buf?\n"); |
| 2841 | goto exit; | 2870 | goto exit; |
| 2842 | } | 2871 | } |
| 2843 | 2872 | ||
| @@ -3132,6 +3161,26 @@ out: | |||
| 3132 | return result; | 3161 | return result; |
| 3133 | } | 3162 | } |
| 3134 | 3163 | ||
| 3164 | static void reset_device(struct work_struct *data) | ||
| 3165 | { | ||
| 3166 | struct hso_device *hso_dev = | ||
| 3167 | container_of(data, struct hso_device, reset_device); | ||
| 3168 | struct usb_device *usb = hso_dev->usb; | ||
| 3169 | int result; | ||
| 3170 | |||
| 3171 | if (hso_dev->usb_gone) { | ||
| 3172 | D1("No reset during disconnect\n"); | ||
| 3173 | } else { | ||
| 3174 | result = usb_lock_device_for_reset(usb, hso_dev->interface); | ||
| 3175 | if (result < 0) | ||
| 3176 | D1("unable to lock device for reset: %d\n", result); | ||
| 3177 | else { | ||
| 3178 | usb_reset_device(usb); | ||
| 3179 | usb_unlock_device(usb); | ||
| 3180 | } | ||
| 3181 | } | ||
| 3182 | } | ||
| 3183 | |||
| 3135 | static void hso_serial_ref_free(struct kref *ref) | 3184 | static void hso_serial_ref_free(struct kref *ref) |
| 3136 | { | 3185 | { |
| 3137 | struct hso_device *hso_dev = container_of(ref, struct hso_device, ref); | 3186 | struct hso_device *hso_dev = container_of(ref, struct hso_device, ref); |
| @@ -3232,13 +3281,13 @@ static int hso_mux_submit_intr_urb(struct hso_shared_int *shared_int, | |||
| 3232 | usb_rcvintpipe(usb, | 3281 | usb_rcvintpipe(usb, |
| 3233 | shared_int->intr_endp->bEndpointAddress & 0x7F), | 3282 | shared_int->intr_endp->bEndpointAddress & 0x7F), |
| 3234 | shared_int->shared_intr_buf, | 3283 | shared_int->shared_intr_buf, |
| 3235 | shared_int->intr_endp->wMaxPacketSize, | 3284 | 1, |
| 3236 | intr_callback, shared_int, | 3285 | intr_callback, shared_int, |
| 3237 | shared_int->intr_endp->bInterval); | 3286 | shared_int->intr_endp->bInterval); |
| 3238 | 3287 | ||
| 3239 | result = usb_submit_urb(shared_int->shared_intr_urb, gfp); | 3288 | result = usb_submit_urb(shared_int->shared_intr_urb, gfp); |
| 3240 | if (result) | 3289 | if (result) |
| 3241 | dev_warn(&usb->dev, "%s failed mux_intr_urb %d", __func__, | 3290 | dev_warn(&usb->dev, "%s failed mux_intr_urb %d\n", __func__, |
| 3242 | result); | 3291 | result); |
| 3243 | 3292 | ||
| 3244 | return result; | 3293 | return result; |
diff --git a/drivers/net/usb/rtl8150.c b/drivers/net/usb/rtl8150.c index f14d225404da..fd19db0d2504 100644 --- a/drivers/net/usb/rtl8150.c +++ b/drivers/net/usb/rtl8150.c | |||
| @@ -270,7 +270,7 @@ static int read_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 * reg) | |||
| 270 | get_registers(dev, PHYCNT, 1, data); | 270 | get_registers(dev, PHYCNT, 1, data); |
| 271 | } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT)); | 271 | } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT)); |
| 272 | 272 | ||
| 273 | if (i < MII_TIMEOUT) { | 273 | if (i <= MII_TIMEOUT) { |
| 274 | get_registers(dev, PHYDAT, 2, data); | 274 | get_registers(dev, PHYDAT, 2, data); |
| 275 | *reg = data[0] | (data[1] << 8); | 275 | *reg = data[0] | (data[1] << 8); |
| 276 | return 0; | 276 | return 0; |
| @@ -295,7 +295,7 @@ static int write_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 reg) | |||
| 295 | get_registers(dev, PHYCNT, 1, data); | 295 | get_registers(dev, PHYCNT, 1, data); |
| 296 | } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT)); | 296 | } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT)); |
| 297 | 297 | ||
| 298 | if (i < MII_TIMEOUT) | 298 | if (i <= MII_TIMEOUT) |
| 299 | return 0; | 299 | return 0; |
| 300 | else | 300 | else |
| 301 | return 1; | 301 | return 1; |
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 4ceb441f2687..c93f58f5c6f2 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
| @@ -2237,8 +2237,6 @@ static int velocity_open(struct net_device *dev) | |||
| 2237 | /* Ensure chip is running */ | 2237 | /* Ensure chip is running */ |
| 2238 | pci_set_power_state(vptr->pdev, PCI_D0); | 2238 | pci_set_power_state(vptr->pdev, PCI_D0); |
| 2239 | 2239 | ||
| 2240 | velocity_give_many_rx_descs(vptr); | ||
| 2241 | |||
| 2242 | velocity_init_registers(vptr, VELOCITY_INIT_COLD); | 2240 | velocity_init_registers(vptr, VELOCITY_INIT_COLD); |
| 2243 | 2241 | ||
| 2244 | ret = request_irq(vptr->pdev->irq, velocity_intr, IRQF_SHARED, | 2242 | ret = request_irq(vptr->pdev->irq, velocity_intr, IRQF_SHARED, |
| @@ -2250,6 +2248,8 @@ static int velocity_open(struct net_device *dev) | |||
| 2250 | goto out; | 2248 | goto out; |
| 2251 | } | 2249 | } |
| 2252 | 2250 | ||
| 2251 | velocity_give_many_rx_descs(vptr); | ||
| 2252 | |||
| 2253 | mac_enable_int(vptr->mac_regs); | 2253 | mac_enable_int(vptr->mac_regs); |
| 2254 | netif_start_queue(dev); | 2254 | netif_start_queue(dev); |
| 2255 | napi_enable(&vptr->napi); | 2255 | napi_enable(&vptr->napi); |
| @@ -2339,10 +2339,10 @@ static int velocity_change_mtu(struct net_device *dev, int new_mtu) | |||
| 2339 | 2339 | ||
| 2340 | dev->mtu = new_mtu; | 2340 | dev->mtu = new_mtu; |
| 2341 | 2341 | ||
| 2342 | velocity_give_many_rx_descs(vptr); | ||
| 2343 | |||
| 2344 | velocity_init_registers(vptr, VELOCITY_INIT_COLD); | 2342 | velocity_init_registers(vptr, VELOCITY_INIT_COLD); |
| 2345 | 2343 | ||
| 2344 | velocity_give_many_rx_descs(vptr); | ||
| 2345 | |||
| 2346 | mac_enable_int(vptr->mac_regs); | 2346 | mac_enable_int(vptr->mac_regs); |
| 2347 | netif_start_queue(dev); | 2347 | netif_start_queue(dev); |
| 2348 | 2348 | ||
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index c708ecc3cb2e..9ead30bd00c4 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c | |||
| @@ -395,8 +395,7 @@ static void refill_work(struct work_struct *work) | |||
| 395 | 395 | ||
| 396 | vi = container_of(work, struct virtnet_info, refill.work); | 396 | vi = container_of(work, struct virtnet_info, refill.work); |
| 397 | napi_disable(&vi->napi); | 397 | napi_disable(&vi->napi); |
| 398 | try_fill_recv(vi, GFP_KERNEL); | 398 | still_empty = !try_fill_recv(vi, GFP_KERNEL); |
| 399 | still_empty = (vi->num == 0); | ||
| 400 | napi_enable(&vi->napi); | 399 | napi_enable(&vi->napi); |
| 401 | 400 | ||
| 402 | /* In theory, this can happen: if we don't get any buffers in | 401 | /* In theory, this can happen: if we don't get any buffers in |
diff --git a/drivers/net/vxge/vxge-main.c b/drivers/net/vxge/vxge-main.c index 0fdfd58a35a1..b9685e82f7b6 100644 --- a/drivers/net/vxge/vxge-main.c +++ b/drivers/net/vxge/vxge-main.c | |||
| @@ -310,7 +310,7 @@ static int vxge_rx_map(void *dtrh, struct vxge_ring *ring) | |||
| 310 | dma_addr = pci_map_single(ring->pdev, rx_priv->skb_data, | 310 | dma_addr = pci_map_single(ring->pdev, rx_priv->skb_data, |
| 311 | rx_priv->data_size, PCI_DMA_FROMDEVICE); | 311 | rx_priv->data_size, PCI_DMA_FROMDEVICE); |
| 312 | 312 | ||
| 313 | if (dma_addr == 0) { | 313 | if (unlikely(pci_dma_mapping_error(ring->pdev, dma_addr))) { |
| 314 | ring->stats.pci_map_fail++; | 314 | ring->stats.pci_map_fail++; |
| 315 | return -EIO; | 315 | return -EIO; |
| 316 | } | 316 | } |
diff --git a/drivers/net/wimax/i2400m/i2400m-usb.h b/drivers/net/wimax/i2400m/i2400m-usb.h index 5cc0f279417e..2d7c96d7e865 100644 --- a/drivers/net/wimax/i2400m/i2400m-usb.h +++ b/drivers/net/wimax/i2400m/i2400m-usb.h | |||
| @@ -151,6 +151,7 @@ enum { | |||
| 151 | 151 | ||
| 152 | /* Device IDs */ | 152 | /* Device IDs */ |
| 153 | USB_DEVICE_ID_I6050 = 0x0186, | 153 | USB_DEVICE_ID_I6050 = 0x0186, |
| 154 | USB_DEVICE_ID_I6050_2 = 0x0188, | ||
| 154 | }; | 155 | }; |
| 155 | 156 | ||
| 156 | 157 | ||
| @@ -234,6 +235,7 @@ struct i2400mu { | |||
| 234 | u8 rx_size_auto_shrink; | 235 | u8 rx_size_auto_shrink; |
| 235 | 236 | ||
| 236 | struct dentry *debugfs_dentry; | 237 | struct dentry *debugfs_dentry; |
| 238 | unsigned i6050:1; /* 1 if this is a 6050 based SKU */ | ||
| 237 | }; | 239 | }; |
| 238 | 240 | ||
| 239 | 241 | ||
diff --git a/drivers/net/wimax/i2400m/usb.c b/drivers/net/wimax/i2400m/usb.c index 3b48681f8a0d..98f4f8c5fb68 100644 --- a/drivers/net/wimax/i2400m/usb.c +++ b/drivers/net/wimax/i2400m/usb.c | |||
| @@ -478,7 +478,16 @@ int i2400mu_probe(struct usb_interface *iface, | |||
| 478 | i2400m->bus_bm_wait_for_ack = i2400mu_bus_bm_wait_for_ack; | 478 | i2400m->bus_bm_wait_for_ack = i2400mu_bus_bm_wait_for_ack; |
| 479 | i2400m->bus_bm_mac_addr_impaired = 0; | 479 | i2400m->bus_bm_mac_addr_impaired = 0; |
| 480 | 480 | ||
| 481 | if (id->idProduct == USB_DEVICE_ID_I6050) { | 481 | switch (id->idProduct) { |
| 482 | case USB_DEVICE_ID_I6050: | ||
| 483 | case USB_DEVICE_ID_I6050_2: | ||
| 484 | i2400mu->i6050 = 1; | ||
| 485 | break; | ||
| 486 | default: | ||
| 487 | break; | ||
| 488 | } | ||
| 489 | |||
| 490 | if (i2400mu->i6050) { | ||
| 482 | i2400m->bus_fw_names = i2400mu_bus_fw_names_6050; | 491 | i2400m->bus_fw_names = i2400mu_bus_fw_names_6050; |
| 483 | i2400mu->endpoint_cfg.bulk_out = 0; | 492 | i2400mu->endpoint_cfg.bulk_out = 0; |
| 484 | i2400mu->endpoint_cfg.notification = 3; | 493 | i2400mu->endpoint_cfg.notification = 3; |
| @@ -719,6 +728,7 @@ int i2400mu_post_reset(struct usb_interface *iface) | |||
| 719 | static | 728 | static |
| 720 | struct usb_device_id i2400mu_id_table[] = { | 729 | struct usb_device_id i2400mu_id_table[] = { |
| 721 | { USB_DEVICE(0x8086, USB_DEVICE_ID_I6050) }, | 730 | { USB_DEVICE(0x8086, USB_DEVICE_ID_I6050) }, |
| 731 | { USB_DEVICE(0x8086, USB_DEVICE_ID_I6050_2) }, | ||
| 722 | { USB_DEVICE(0x8086, 0x0181) }, | 732 | { USB_DEVICE(0x8086, 0x0181) }, |
| 723 | { USB_DEVICE(0x8086, 0x1403) }, | 733 | { USB_DEVICE(0x8086, 0x1403) }, |
| 724 | { USB_DEVICE(0x8086, 0x1405) }, | 734 | { USB_DEVICE(0x8086, 0x1405) }, |
diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c b/drivers/net/wireless/ath/ath5k/eeprom.c index 5d1c8677f180..6a3f4da7fb48 100644 --- a/drivers/net/wireless/ath/ath5k/eeprom.c +++ b/drivers/net/wireless/ath/ath5k/eeprom.c | |||
| @@ -97,7 +97,7 @@ ath5k_eeprom_init_header(struct ath5k_hw *ah) | |||
| 97 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; | 97 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
| 98 | int ret; | 98 | int ret; |
| 99 | u16 val; | 99 | u16 val; |
| 100 | u32 cksum, offset; | 100 | u32 cksum, offset, eep_max = AR5K_EEPROM_INFO_MAX; |
| 101 | 101 | ||
| 102 | /* | 102 | /* |
| 103 | * Read values from EEPROM and store them in the capability structure | 103 | * Read values from EEPROM and store them in the capability structure |
| @@ -116,12 +116,38 @@ ath5k_eeprom_init_header(struct ath5k_hw *ah) | |||
| 116 | * Validate the checksum of the EEPROM date. There are some | 116 | * Validate the checksum of the EEPROM date. There are some |
| 117 | * devices with invalid EEPROMs. | 117 | * devices with invalid EEPROMs. |
| 118 | */ | 118 | */ |
| 119 | for (cksum = 0, offset = 0; offset < AR5K_EEPROM_INFO_MAX; offset++) { | 119 | AR5K_EEPROM_READ(AR5K_EEPROM_SIZE_UPPER, val); |
| 120 | if (val) { | ||
| 121 | eep_max = (val & AR5K_EEPROM_SIZE_UPPER_MASK) << | ||
| 122 | AR5K_EEPROM_SIZE_ENDLOC_SHIFT; | ||
| 123 | AR5K_EEPROM_READ(AR5K_EEPROM_SIZE_LOWER, val); | ||
| 124 | eep_max = (eep_max | val) - AR5K_EEPROM_INFO_BASE; | ||
| 125 | |||
| 126 | /* | ||
| 127 | * Fail safe check to prevent stupid loops due | ||
| 128 | * to busted EEPROMs. XXX: This value is likely too | ||
| 129 | * big still, waiting on a better value. | ||
| 130 | */ | ||
| 131 | if (eep_max > (3 * AR5K_EEPROM_INFO_MAX)) { | ||
| 132 | ATH5K_ERR(ah->ah_sc, "Invalid max custom EEPROM size: " | ||
| 133 | "%d (0x%04x) max expected: %d (0x%04x)\n", | ||
| 134 | eep_max, eep_max, | ||
| 135 | 3 * AR5K_EEPROM_INFO_MAX, | ||
| 136 | 3 * AR5K_EEPROM_INFO_MAX); | ||
| 137 | return -EIO; | ||
| 138 | } | ||
| 139 | } | ||
| 140 | |||
| 141 | for (cksum = 0, offset = 0; offset < eep_max; offset++) { | ||
| 120 | AR5K_EEPROM_READ(AR5K_EEPROM_INFO(offset), val); | 142 | AR5K_EEPROM_READ(AR5K_EEPROM_INFO(offset), val); |
| 121 | cksum ^= val; | 143 | cksum ^= val; |
| 122 | } | 144 | } |
| 123 | if (cksum != AR5K_EEPROM_INFO_CKSUM) { | 145 | if (cksum != AR5K_EEPROM_INFO_CKSUM) { |
| 124 | ATH5K_ERR(ah->ah_sc, "Invalid EEPROM checksum 0x%04x\n", cksum); | 146 | ATH5K_ERR(ah->ah_sc, "Invalid EEPROM " |
| 147 | "checksum: 0x%04x eep_max: 0x%04x (%s)\n", | ||
| 148 | cksum, eep_max, | ||
| 149 | eep_max == AR5K_EEPROM_INFO_MAX ? | ||
| 150 | "default size" : "custom size"); | ||
| 125 | return -EIO; | 151 | return -EIO; |
| 126 | } | 152 | } |
| 127 | 153 | ||
diff --git a/drivers/net/wireless/ath/ath5k/eeprom.h b/drivers/net/wireless/ath/ath5k/eeprom.h index 0123f3521a0b..473a483bb9c3 100644 --- a/drivers/net/wireless/ath/ath5k/eeprom.h +++ b/drivers/net/wireless/ath/ath5k/eeprom.h | |||
| @@ -37,6 +37,14 @@ | |||
| 37 | #define AR5K_EEPROM_RFKILL_POLARITY_S 1 | 37 | #define AR5K_EEPROM_RFKILL_POLARITY_S 1 |
| 38 | 38 | ||
| 39 | #define AR5K_EEPROM_REG_DOMAIN 0x00bf /* EEPROM regdom */ | 39 | #define AR5K_EEPROM_REG_DOMAIN 0x00bf /* EEPROM regdom */ |
| 40 | |||
| 41 | /* FLASH(EEPROM) Defines for AR531X chips */ | ||
| 42 | #define AR5K_EEPROM_SIZE_LOWER 0x1b /* size info -- lower */ | ||
| 43 | #define AR5K_EEPROM_SIZE_UPPER 0x1c /* size info -- upper */ | ||
| 44 | #define AR5K_EEPROM_SIZE_UPPER_MASK 0xfff0 | ||
| 45 | #define AR5K_EEPROM_SIZE_UPPER_SHIFT 4 | ||
| 46 | #define AR5K_EEPROM_SIZE_ENDLOC_SHIFT 12 | ||
| 47 | |||
| 40 | #define AR5K_EEPROM_CHECKSUM 0x00c0 /* EEPROM checksum */ | 48 | #define AR5K_EEPROM_CHECKSUM 0x00c0 /* EEPROM checksum */ |
| 41 | #define AR5K_EEPROM_INFO_BASE 0x00c0 /* EEPROM header */ | 49 | #define AR5K_EEPROM_INFO_BASE 0x00c0 /* EEPROM header */ |
| 42 | #define AR5K_EEPROM_INFO_MAX (0x400 - AR5K_EEPROM_INFO_BASE) | 50 | #define AR5K_EEPROM_INFO_MAX (0x400 - AR5K_EEPROM_INFO_BASE) |
diff --git a/drivers/net/wireless/ath/ath9k/Kconfig b/drivers/net/wireless/ath/ath9k/Kconfig index 03a1106ad725..5774cea23a3b 100644 --- a/drivers/net/wireless/ath/ath9k/Kconfig +++ b/drivers/net/wireless/ath/ath9k/Kconfig | |||
| @@ -25,7 +25,7 @@ config ATH9K | |||
| 25 | 25 | ||
| 26 | config ATH9K_DEBUGFS | 26 | config ATH9K_DEBUGFS |
| 27 | bool "Atheros ath9k debugging" | 27 | bool "Atheros ath9k debugging" |
| 28 | depends on ATH9K | 28 | depends on ATH9K && DEBUG_FS |
| 29 | ---help--- | 29 | ---help--- |
| 30 | Say Y, if you need access to ath9k's statistics for | 30 | Say Y, if you need access to ath9k's statistics for |
| 31 | interrupts, rate control, etc. | 31 | interrupts, rate control, etc. |
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index e2cef2ff5d8f..1597a42731ed 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h | |||
| @@ -33,11 +33,11 @@ struct ath_node; | |||
| 33 | 33 | ||
| 34 | /* Macro to expand scalars to 64-bit objects */ | 34 | /* Macro to expand scalars to 64-bit objects */ |
| 35 | 35 | ||
| 36 | #define ito64(x) (sizeof(x) == 8) ? \ | 36 | #define ito64(x) (sizeof(x) == 1) ? \ |
| 37 | (((unsigned long long int)(x)) & (0xff)) : \ | 37 | (((unsigned long long int)(x)) & (0xff)) : \ |
| 38 | (sizeof(x) == 16) ? \ | 38 | (sizeof(x) == 2) ? \ |
| 39 | (((unsigned long long int)(x)) & 0xffff) : \ | 39 | (((unsigned long long int)(x)) & 0xffff) : \ |
| 40 | ((sizeof(x) == 32) ? \ | 40 | ((sizeof(x) == 4) ? \ |
| 41 | (((unsigned long long int)(x)) & 0xffffffff) : \ | 41 | (((unsigned long long int)(x)) & 0xffffffff) : \ |
| 42 | (unsigned long long int)(x)) | 42 | (unsigned long long int)(x)) |
| 43 | 43 | ||
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 2ec61f08cfdb..ae371448b5a0 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
| @@ -855,12 +855,11 @@ static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah) | |||
| 855 | } | 855 | } |
| 856 | } | 856 | } |
| 857 | 857 | ||
| 858 | static void ath9k_hw_init_11a_eeprom_fix(struct ath_hw *ah) | 858 | static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah) |
| 859 | { | 859 | { |
| 860 | u32 i, j; | 860 | u32 i, j; |
| 861 | 861 | ||
| 862 | if ((ah->hw_version.devid == AR9280_DEVID_PCI) && | 862 | if (ah->hw_version.devid == AR9280_DEVID_PCI) { |
| 863 | test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) { | ||
| 864 | 863 | ||
| 865 | /* EEPROM Fixup */ | 864 | /* EEPROM Fixup */ |
| 866 | for (i = 0; i < ah->iniModes.ia_rows; i++) { | 865 | for (i = 0; i < ah->iniModes.ia_rows; i++) { |
| @@ -980,7 +979,7 @@ int ath9k_hw_init(struct ath_hw *ah) | |||
| 980 | if (r) | 979 | if (r) |
| 981 | return r; | 980 | return r; |
| 982 | 981 | ||
| 983 | ath9k_hw_init_11a_eeprom_fix(ah); | 982 | ath9k_hw_init_eeprom_fix(ah); |
| 984 | 983 | ||
| 985 | r = ath9k_hw_init_macaddr(ah); | 984 | r = ath9k_hw_init_macaddr(ah); |
| 986 | if (r) { | 985 | if (r) { |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 996eb90263cc..643bea35686f 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -2655,10 +2655,10 @@ static void ath9k_remove_interface(struct ieee80211_hw *hw, | |||
| 2655 | (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) { | 2655 | (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) { |
| 2656 | ath9k_ps_wakeup(sc); | 2656 | ath9k_ps_wakeup(sc); |
| 2657 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); | 2657 | ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
| 2658 | ath_beacon_return(sc, avp); | ||
| 2659 | ath9k_ps_restore(sc); | 2658 | ath9k_ps_restore(sc); |
| 2660 | } | 2659 | } |
| 2661 | 2660 | ||
| 2661 | ath_beacon_return(sc, avp); | ||
| 2662 | sc->sc_flags &= ~SC_OP_BEACONS; | 2662 | sc->sc_flags &= ~SC_OP_BEACONS; |
| 2663 | 2663 | ||
| 2664 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { | 2664 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { |
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index 484c5fdf7c2a..9b4b8b5c7574 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
| @@ -1961,7 +1961,7 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv, | |||
| 1961 | struct ieee80211_tx_info *info; | 1961 | struct ieee80211_tx_info *info; |
| 1962 | struct iwl4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; | 1962 | struct iwl4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; |
| 1963 | u32 status = le32_to_cpu(tx_resp->u.status); | 1963 | u32 status = le32_to_cpu(tx_resp->u.status); |
| 1964 | int tid = MAX_TID_COUNT; | 1964 | int uninitialized_var(tid); |
| 1965 | int sta_id; | 1965 | int sta_id; |
| 1966 | int freed; | 1966 | int freed; |
| 1967 | u8 *qc = NULL; | 1967 | u8 *qc = NULL; |
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c index 33a5866538e7..de45f308b744 100644 --- a/drivers/net/wireless/iwlwifi/iwl-5000.c +++ b/drivers/net/wireless/iwlwifi/iwl-5000.c | |||
| @@ -1598,6 +1598,7 @@ struct iwl_cfg iwl5300_agn_cfg = { | |||
| 1598 | .use_bsm = false, | 1598 | .use_bsm = false, |
| 1599 | .ht_greenfield_support = true, | 1599 | .ht_greenfield_support = true, |
| 1600 | .led_compensation = 51, | 1600 | .led_compensation = 51, |
| 1601 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 1601 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 1602 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 1602 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, | 1603 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, |
| 1603 | }; | 1604 | }; |
| @@ -1622,6 +1623,7 @@ struct iwl_cfg iwl5100_bgn_cfg = { | |||
| 1622 | .use_bsm = false, | 1623 | .use_bsm = false, |
| 1623 | .ht_greenfield_support = true, | 1624 | .ht_greenfield_support = true, |
| 1624 | .led_compensation = 51, | 1625 | .led_compensation = 51, |
| 1626 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 1625 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 1627 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 1626 | }; | 1628 | }; |
| 1627 | 1629 | ||
| @@ -1667,6 +1669,7 @@ struct iwl_cfg iwl5100_agn_cfg = { | |||
| 1667 | .use_bsm = false, | 1669 | .use_bsm = false, |
| 1668 | .ht_greenfield_support = true, | 1670 | .ht_greenfield_support = true, |
| 1669 | .led_compensation = 51, | 1671 | .led_compensation = 51, |
| 1672 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 1670 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 1673 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 1671 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, | 1674 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, |
| 1672 | }; | 1675 | }; |
| @@ -1691,6 +1694,7 @@ struct iwl_cfg iwl5350_agn_cfg = { | |||
| 1691 | .use_bsm = false, | 1694 | .use_bsm = false, |
| 1692 | .ht_greenfield_support = true, | 1695 | .ht_greenfield_support = true, |
| 1693 | .led_compensation = 51, | 1696 | .led_compensation = 51, |
| 1697 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 1694 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 1698 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 1695 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, | 1699 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, |
| 1696 | }; | 1700 | }; |
| @@ -1715,6 +1719,7 @@ struct iwl_cfg iwl5150_agn_cfg = { | |||
| 1715 | .use_bsm = false, | 1719 | .use_bsm = false, |
| 1716 | .ht_greenfield_support = true, | 1720 | .ht_greenfield_support = true, |
| 1717 | .led_compensation = 51, | 1721 | .led_compensation = 51, |
| 1722 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 1718 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 1723 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 1719 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, | 1724 | .sm_ps_mode = WLAN_HT_CAP_SM_PS_DISABLED, |
| 1720 | }; | 1725 | }; |
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.c b/drivers/net/wireless/iwlwifi/iwl-core.c index 574d36658702..5461f105bd2d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.c +++ b/drivers/net/wireless/iwlwifi/iwl-core.c | |||
| @@ -2344,6 +2344,21 @@ static void iwl_ht_conf(struct iwl_priv *priv, | |||
| 2344 | IWL_DEBUG_MAC80211(priv, "leave\n"); | 2344 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 2345 | } | 2345 | } |
| 2346 | 2346 | ||
| 2347 | static inline void iwl_set_no_assoc(struct iwl_priv *priv) | ||
| 2348 | { | ||
| 2349 | priv->assoc_id = 0; | ||
| 2350 | iwl_led_disassociate(priv); | ||
| 2351 | /* | ||
| 2352 | * inform the ucode that there is no longer an | ||
| 2353 | * association and that no more packets should be | ||
| 2354 | * sent | ||
| 2355 | */ | ||
| 2356 | priv->staging_rxon.filter_flags &= | ||
| 2357 | ~RXON_FILTER_ASSOC_MSK; | ||
| 2358 | priv->staging_rxon.assoc_id = 0; | ||
| 2359 | iwlcore_commit_rxon(priv); | ||
| 2360 | } | ||
| 2361 | |||
| 2347 | #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6) | 2362 | #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6) |
| 2348 | void iwl_bss_info_changed(struct ieee80211_hw *hw, | 2363 | void iwl_bss_info_changed(struct ieee80211_hw *hw, |
| 2349 | struct ieee80211_vif *vif, | 2364 | struct ieee80211_vif *vif, |
| @@ -2475,20 +2490,8 @@ void iwl_bss_info_changed(struct ieee80211_hw *hw, | |||
| 2475 | IWL_DELAY_NEXT_SCAN_AFTER_ASSOC; | 2490 | IWL_DELAY_NEXT_SCAN_AFTER_ASSOC; |
| 2476 | if (!iwl_is_rfkill(priv)) | 2491 | if (!iwl_is_rfkill(priv)) |
| 2477 | priv->cfg->ops->lib->post_associate(priv); | 2492 | priv->cfg->ops->lib->post_associate(priv); |
| 2478 | } else { | 2493 | } else |
| 2479 | priv->assoc_id = 0; | 2494 | iwl_set_no_assoc(priv); |
| 2480 | iwl_led_disassociate(priv); | ||
| 2481 | |||
| 2482 | /* | ||
| 2483 | * inform the ucode that there is no longer an | ||
| 2484 | * association and that no more packets should be | ||
| 2485 | * send | ||
| 2486 | */ | ||
| 2487 | priv->staging_rxon.filter_flags &= | ||
| 2488 | ~RXON_FILTER_ASSOC_MSK; | ||
| 2489 | priv->staging_rxon.assoc_id = 0; | ||
| 2490 | iwlcore_commit_rxon(priv); | ||
| 2491 | } | ||
| 2492 | } | 2495 | } |
| 2493 | 2496 | ||
| 2494 | if (changes && iwl_is_associated(priv) && priv->assoc_id) { | 2497 | if (changes && iwl_is_associated(priv) && priv->assoc_id) { |
| @@ -2503,12 +2506,14 @@ void iwl_bss_info_changed(struct ieee80211_hw *hw, | |||
| 2503 | } | 2506 | } |
| 2504 | } | 2507 | } |
| 2505 | 2508 | ||
| 2506 | if ((changes & BSS_CHANGED_BEACON_ENABLED) && | 2509 | if (changes & BSS_CHANGED_BEACON_ENABLED) { |
| 2507 | vif->bss_conf.enable_beacon) { | 2510 | if (vif->bss_conf.enable_beacon) { |
| 2508 | memcpy(priv->staging_rxon.bssid_addr, | 2511 | memcpy(priv->staging_rxon.bssid_addr, |
| 2509 | bss_conf->bssid, ETH_ALEN); | 2512 | bss_conf->bssid, ETH_ALEN); |
| 2510 | memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN); | 2513 | memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN); |
| 2511 | iwlcore_config_ap(priv); | 2514 | iwlcore_config_ap(priv); |
| 2515 | } else | ||
| 2516 | iwl_set_no_assoc(priv); | ||
| 2512 | } | 2517 | } |
| 2513 | 2518 | ||
| 2514 | mutex_unlock(&priv->mutex); | 2519 | mutex_unlock(&priv->mutex); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 165d1f6e2dd9..3822cf53e368 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
| @@ -711,7 +711,7 @@ extern void iwl_txq_ctx_stop(struct iwl_priv *priv); | |||
| 711 | extern int iwl_queue_space(const struct iwl_queue *q); | 711 | extern int iwl_queue_space(const struct iwl_queue *q); |
| 712 | static inline int iwl_queue_used(const struct iwl_queue *q, int i) | 712 | static inline int iwl_queue_used(const struct iwl_queue *q, int i) |
| 713 | { | 713 | { |
| 714 | return q->write_ptr > q->read_ptr ? | 714 | return q->write_ptr >= q->read_ptr ? |
| 715 | (i >= q->read_ptr && i < q->write_ptr) : | 715 | (i >= q->read_ptr && i < q->write_ptr) : |
| 716 | !(i < q->read_ptr && i >= q->write_ptr); | 716 | !(i < q->read_ptr && i >= q->write_ptr); |
| 717 | } | 717 | } |
diff --git a/drivers/net/wireless/iwlwifi/iwl-devtrace.c b/drivers/net/wireless/iwlwifi/iwl-devtrace.c index e7d88d1da15d..83cc4e500a96 100644 --- a/drivers/net/wireless/iwlwifi/iwl-devtrace.c +++ b/drivers/net/wireless/iwlwifi/iwl-devtrace.c | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | /****************************************************************************** | ||
| 2 | * | ||
| 3 | * Copyright(c) 2009 - 2010 Intel Corporation. All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms of version 2 of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 12 | * more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License along with | ||
| 15 | * this program; if not, write to the Free Software Foundation, Inc., | ||
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA | ||
| 17 | * | ||
| 18 | * The full GNU General Public License is included in this distribution in the | ||
| 19 | * file called LICENSE. | ||
| 20 | * | ||
| 21 | * Contact Information: | ||
| 22 | * Intel Linux Wireless <ilw@linux.intel.com> | ||
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
| 24 | * | ||
| 25 | *****************************************************************************/ | ||
| 26 | |||
| 1 | #include <linux/module.h> | 27 | #include <linux/module.h> |
| 2 | 28 | ||
| 3 | /* sparse doesn't like tracepoint macros */ | 29 | /* sparse doesn't like tracepoint macros */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-devtrace.h b/drivers/net/wireless/iwlwifi/iwl-devtrace.h index 21361968ab7e..d9c7363b1bbb 100644 --- a/drivers/net/wireless/iwlwifi/iwl-devtrace.h +++ b/drivers/net/wireless/iwlwifi/iwl-devtrace.h | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | /****************************************************************************** | ||
| 2 | * | ||
| 3 | * Copyright(c) 2009 - 2010 Intel Corporation. All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms of version 2 of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 12 | * more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License along with | ||
| 15 | * this program; if not, write to the Free Software Foundation, Inc., | ||
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA | ||
| 17 | * | ||
| 18 | * The full GNU General Public License is included in this distribution in the | ||
| 19 | * file called LICENSE. | ||
| 20 | * | ||
| 21 | * Contact Information: | ||
| 22 | * Intel Linux Wireless <ilw@linux.intel.com> | ||
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
| 24 | * | ||
| 25 | *****************************************************************************/ | ||
| 26 | |||
| 1 | #if !defined(__IWLWIFI_DEVICE_TRACE) || defined(TRACE_HEADER_MULTI_READ) | 27 | #if !defined(__IWLWIFI_DEVICE_TRACE) || defined(TRACE_HEADER_MULTI_READ) |
| 2 | #define __IWLWIFI_DEVICE_TRACE | 28 | #define __IWLWIFI_DEVICE_TRACE |
| 3 | 29 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.c b/drivers/net/wireless/iwlwifi/iwl-sta.c index cde09a890b73..90fbdb25399e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-sta.c +++ b/drivers/net/wireless/iwlwifi/iwl-sta.c | |||
| @@ -297,7 +297,7 @@ u8 iwl_add_station(struct iwl_priv *priv, const u8 *addr, bool is_ap, u8 flags, | |||
| 297 | } | 297 | } |
| 298 | EXPORT_SYMBOL(iwl_add_station); | 298 | EXPORT_SYMBOL(iwl_add_station); |
| 299 | 299 | ||
| 300 | static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, const char *addr) | 300 | static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, const u8 *addr) |
| 301 | { | 301 | { |
| 302 | unsigned long flags; | 302 | unsigned long flags; |
| 303 | u8 sta_id = iwl_find_station(priv, addr); | 303 | u8 sta_id = iwl_find_station(priv, addr); |
| @@ -324,7 +324,7 @@ static void iwl_remove_sta_callback(struct iwl_priv *priv, | |||
| 324 | { | 324 | { |
| 325 | struct iwl_rem_sta_cmd *rm_sta = | 325 | struct iwl_rem_sta_cmd *rm_sta = |
| 326 | (struct iwl_rem_sta_cmd *)cmd->cmd.payload; | 326 | (struct iwl_rem_sta_cmd *)cmd->cmd.payload; |
| 327 | const char *addr = rm_sta->addr; | 327 | const u8 *addr = rm_sta->addr; |
| 328 | 328 | ||
| 329 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { | 329 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 330 | IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n", | 330 | IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n", |
diff --git a/drivers/net/wireless/iwmc3200wifi/commands.c b/drivers/net/wireless/iwmc3200wifi/commands.c index 777584d76a88..1e41ad0fcad5 100644 --- a/drivers/net/wireless/iwmc3200wifi/commands.c +++ b/drivers/net/wireless/iwmc3200wifi/commands.c | |||
| @@ -973,6 +973,10 @@ int iwm_send_pmkid_update(struct iwm_priv *iwm, | |||
| 973 | 973 | ||
| 974 | memset(&update, 0, sizeof(struct iwm_umac_pmkid_update)); | 974 | memset(&update, 0, sizeof(struct iwm_umac_pmkid_update)); |
| 975 | 975 | ||
| 976 | update.hdr.oid = UMAC_WIFI_IF_CMD_PMKID_UPDATE; | ||
| 977 | update.hdr.buf_size = cpu_to_le16(sizeof(struct iwm_umac_pmkid_update) - | ||
| 978 | sizeof(struct iwm_umac_wifi_if)); | ||
| 979 | |||
| 976 | update.command = cpu_to_le32(command); | 980 | update.command = cpu_to_le32(command); |
| 977 | if (pmksa->bssid) | 981 | if (pmksa->bssid) |
| 978 | memcpy(&update.bssid, pmksa->bssid, ETH_ALEN); | 982 | memcpy(&update.bssid, pmksa->bssid, ETH_ALEN); |
diff --git a/drivers/net/wireless/iwmc3200wifi/commands.h b/drivers/net/wireless/iwmc3200wifi/commands.h index 06af0552cd75..3dfd9f0e9003 100644 --- a/drivers/net/wireless/iwmc3200wifi/commands.h +++ b/drivers/net/wireless/iwmc3200wifi/commands.h | |||
| @@ -463,6 +463,7 @@ struct iwm_umac_cmd_stop_resume_tx { | |||
| 463 | #define IWM_CMD_PMKID_FLUSH 3 | 463 | #define IWM_CMD_PMKID_FLUSH 3 |
| 464 | 464 | ||
| 465 | struct iwm_umac_pmkid_update { | 465 | struct iwm_umac_pmkid_update { |
| 466 | struct iwm_umac_wifi_if hdr; | ||
| 466 | __le32 command; | 467 | __le32 command; |
| 467 | u8 bssid[ETH_ALEN]; | 468 | u8 bssid[ETH_ALEN]; |
| 468 | __le16 reserved; | 469 | __le16 reserved; |
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index 59d49159cf2a..59f92105b0c2 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
| @@ -3157,8 +3157,10 @@ static void mwl8k_configure_filter(struct ieee80211_hw *hw, | |||
| 3157 | /* Clear unsupported feature flags */ | 3157 | /* Clear unsupported feature flags */ |
| 3158 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; | 3158 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; |
| 3159 | 3159 | ||
| 3160 | if (mwl8k_fw_lock(hw)) | 3160 | if (mwl8k_fw_lock(hw)) { |
| 3161 | kfree(cmd); | ||
| 3161 | return; | 3162 | return; |
| 3163 | } | ||
| 3162 | 3164 | ||
| 3163 | if (priv->sniffer_enabled) { | 3165 | if (priv->sniffer_enabled) { |
| 3164 | mwl8k_enable_sniffer(hw, 0); | 3166 | mwl8k_enable_sniffer(hw, 0); |
diff --git a/drivers/net/wireless/p54/p54pci.c b/drivers/net/wireless/p54/p54pci.c index a15962a19b2a..a72f7c2577de 100644 --- a/drivers/net/wireless/p54/p54pci.c +++ b/drivers/net/wireless/p54/p54pci.c | |||
| @@ -197,6 +197,14 @@ static void p54p_check_rx_ring(struct ieee80211_hw *dev, u32 *index, | |||
| 197 | i %= ring_limit; | 197 | i %= ring_limit; |
| 198 | continue; | 198 | continue; |
| 199 | } | 199 | } |
| 200 | |||
| 201 | if (unlikely(len > priv->common.rx_mtu)) { | ||
| 202 | if (net_ratelimit()) | ||
| 203 | dev_err(&priv->pdev->dev, "rx'd frame size " | ||
| 204 | "exceeds length threshold.\n"); | ||
| 205 | |||
| 206 | len = priv->common.rx_mtu; | ||
| 207 | } | ||
| 200 | skb_put(skb, len); | 208 | skb_put(skb, len); |
| 201 | 209 | ||
| 202 | if (p54_rx(dev, skb)) { | 210 | if (p54_rx(dev, skb)) { |
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c index 27bf887f1453..9deae41cb784 100644 --- a/drivers/net/wireless/rt2x00/rt2800lib.c +++ b/drivers/net/wireless/rt2x00/rt2800lib.c | |||
| @@ -340,7 +340,7 @@ static int rt2800_blink_set(struct led_classdev *led_cdev, | |||
| 340 | rt2x00_set_field32(®, LED_CFG_OFF_PERIOD, *delay_off); | 340 | rt2x00_set_field32(®, LED_CFG_OFF_PERIOD, *delay_off); |
| 341 | rt2x00_set_field32(®, LED_CFG_SLOW_BLINK_PERIOD, 3); | 341 | rt2x00_set_field32(®, LED_CFG_SLOW_BLINK_PERIOD, 3); |
| 342 | rt2x00_set_field32(®, LED_CFG_R_LED_MODE, 3); | 342 | rt2x00_set_field32(®, LED_CFG_R_LED_MODE, 3); |
| 343 | rt2x00_set_field32(®, LED_CFG_G_LED_MODE, 12); | 343 | rt2x00_set_field32(®, LED_CFG_G_LED_MODE, 3); |
| 344 | rt2x00_set_field32(®, LED_CFG_Y_LED_MODE, 3); | 344 | rt2x00_set_field32(®, LED_CFG_Y_LED_MODE, 3); |
| 345 | rt2x00_set_field32(®, LED_CFG_LED_POLAR, 1); | 345 | rt2x00_set_field32(®, LED_CFG_LED_POLAR, 1); |
| 346 | rt2800_register_write(led->rt2x00dev, LED_CFG, reg); | 346 | rt2800_register_write(led->rt2x00dev, LED_CFG, reg); |
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 4d841c07c970..dcfc8c25d1a7 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
| @@ -113,6 +113,12 @@ | |||
| 113 | ( ((unsigned long)((__skb)->data + (__header))) & 3 ) | 113 | ( ((unsigned long)((__skb)->data + (__header))) & 3 ) |
| 114 | 114 | ||
| 115 | /* | 115 | /* |
| 116 | * Constants for extra TX headroom for alignment purposes. | ||
| 117 | */ | ||
| 118 | #define RT2X00_ALIGN_SIZE 4 /* Only whole frame needs alignment */ | ||
| 119 | #define RT2X00_L2PAD_SIZE 8 /* Both header & payload need alignment */ | ||
| 120 | |||
| 121 | /* | ||
| 116 | * Standard timing and size defines. | 122 | * Standard timing and size defines. |
| 117 | * These values should follow the ieee80211 specifications. | 123 | * These values should follow the ieee80211 specifications. |
| 118 | */ | 124 | */ |
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 06c43ca39bf8..265e66dba552 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
| @@ -686,7 +686,17 @@ static int rt2x00lib_probe_hw(struct rt2x00_dev *rt2x00dev) | |||
| 686 | /* | 686 | /* |
| 687 | * Initialize extra TX headroom required. | 687 | * Initialize extra TX headroom required. |
| 688 | */ | 688 | */ |
| 689 | rt2x00dev->hw->extra_tx_headroom = rt2x00dev->ops->extra_tx_headroom; | 689 | rt2x00dev->hw->extra_tx_headroom = |
| 690 | max_t(unsigned int, IEEE80211_TX_STATUS_HEADROOM, | ||
| 691 | rt2x00dev->ops->extra_tx_headroom); | ||
| 692 | |||
| 693 | /* | ||
| 694 | * Take TX headroom required for alignment into account. | ||
| 695 | */ | ||
| 696 | if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags)) | ||
| 697 | rt2x00dev->hw->extra_tx_headroom += RT2X00_L2PAD_SIZE; | ||
| 698 | else if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags)) | ||
| 699 | rt2x00dev->hw->extra_tx_headroom += RT2X00_ALIGN_SIZE; | ||
| 690 | 700 | ||
| 691 | /* | 701 | /* |
| 692 | * Register HW. | 702 | * Register HW. |
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 239afc7a9c0b..9915a09141ef 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
| @@ -104,7 +104,7 @@ void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
| 104 | * is also mapped to the DMA so it can be used for transfering | 104 | * is also mapped to the DMA so it can be used for transfering |
| 105 | * additional descriptor information to the hardware. | 105 | * additional descriptor information to the hardware. |
| 106 | */ | 106 | */ |
| 107 | skb_push(skb, rt2x00dev->hw->extra_tx_headroom); | 107 | skb_push(skb, rt2x00dev->ops->extra_tx_headroom); |
| 108 | 108 | ||
| 109 | skbdesc->skb_dma = | 109 | skbdesc->skb_dma = |
| 110 | dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE); | 110 | dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE); |
| @@ -112,7 +112,7 @@ void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
| 112 | /* | 112 | /* |
| 113 | * Restore data pointer to original location again. | 113 | * Restore data pointer to original location again. |
| 114 | */ | 114 | */ |
| 115 | skb_pull(skb, rt2x00dev->hw->extra_tx_headroom); | 115 | skb_pull(skb, rt2x00dev->ops->extra_tx_headroom); |
| 116 | 116 | ||
| 117 | skbdesc->flags |= SKBDESC_DMA_MAPPED_TX; | 117 | skbdesc->flags |= SKBDESC_DMA_MAPPED_TX; |
| 118 | } | 118 | } |
| @@ -134,7 +134,7 @@ void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
| 134 | * by the driver, but it was actually mapped to DMA. | 134 | * by the driver, but it was actually mapped to DMA. |
| 135 | */ | 135 | */ |
| 136 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, | 136 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, |
| 137 | skb->len + rt2x00dev->hw->extra_tx_headroom, | 137 | skb->len + rt2x00dev->ops->extra_tx_headroom, |
| 138 | DMA_TO_DEVICE); | 138 | DMA_TO_DEVICE); |
| 139 | skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX; | 139 | skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX; |
| 140 | } | 140 | } |
diff --git a/drivers/net/wireless/zd1211rw/zd_mac.c b/drivers/net/wireless/zd1211rw/zd_mac.c index 8ebf5c33955d..f14deb0c8514 100644 --- a/drivers/net/wireless/zd1211rw/zd_mac.c +++ b/drivers/net/wireless/zd1211rw/zd_mac.c | |||
| @@ -987,12 +987,13 @@ static void zd_op_configure_filter(struct ieee80211_hw *hw, | |||
| 987 | changed_flags &= SUPPORTED_FIF_FLAGS; | 987 | changed_flags &= SUPPORTED_FIF_FLAGS; |
| 988 | *new_flags &= SUPPORTED_FIF_FLAGS; | 988 | *new_flags &= SUPPORTED_FIF_FLAGS; |
| 989 | 989 | ||
| 990 | /* changed_flags is always populated but this driver | 990 | /* |
| 991 | * doesn't support all FIF flags so its possible we don't | 991 | * If multicast parameter (as returned by zd_op_prepare_multicast) |
| 992 | * need to do anything */ | 992 | * has changed, no bit in changed_flags is set. To handle this |
| 993 | if (!changed_flags) | 993 | * situation, we do not return if changed_flags is 0. If we do so, |
| 994 | return; | 994 | * we will have some issue with IPv6 which uses multicast for link |
| 995 | 995 | * layer address resolution. | |
| 996 | */ | ||
| 996 | if (*new_flags & (FIF_PROMISC_IN_BSS | FIF_ALLMULTI)) | 997 | if (*new_flags & (FIF_PROMISC_IN_BSS | FIF_ALLMULTI)) |
| 997 | zd_mc_add_all(&hash); | 998 | zd_mc_add_all(&hash); |
| 998 | 999 | ||
diff --git a/drivers/net/wireless/zd1211rw/zd_usb.c b/drivers/net/wireless/zd1211rw/zd_usb.c index ac19ecd19cfe..72d3e437e190 100644 --- a/drivers/net/wireless/zd1211rw/zd_usb.c +++ b/drivers/net/wireless/zd1211rw/zd_usb.c | |||
| @@ -62,6 +62,7 @@ static struct usb_device_id usb_ids[] = { | |||
| 62 | { USB_DEVICE(0x6891, 0xa727), .driver_info = DEVICE_ZD1211 }, | 62 | { USB_DEVICE(0x6891, 0xa727), .driver_info = DEVICE_ZD1211 }, |
| 63 | /* ZD1211B */ | 63 | /* ZD1211B */ |
| 64 | { USB_DEVICE(0x0053, 0x5301), .driver_info = DEVICE_ZD1211B }, | 64 | { USB_DEVICE(0x0053, 0x5301), .driver_info = DEVICE_ZD1211B }, |
| 65 | { USB_DEVICE(0x0409, 0x0248), .driver_info = DEVICE_ZD1211B }, | ||
| 65 | { USB_DEVICE(0x0411, 0x00da), .driver_info = DEVICE_ZD1211B }, | 66 | { USB_DEVICE(0x0411, 0x00da), .driver_info = DEVICE_ZD1211B }, |
| 66 | { USB_DEVICE(0x0471, 0x1236), .driver_info = DEVICE_ZD1211B }, | 67 | { USB_DEVICE(0x0471, 0x1236), .driver_info = DEVICE_ZD1211B }, |
| 67 | { USB_DEVICE(0x0471, 0x1237), .driver_info = DEVICE_ZD1211B }, | 68 | { USB_DEVICE(0x0471, 0x1237), .driver_info = DEVICE_ZD1211B }, |
diff --git a/drivers/pci/pcie/aer/aer_inject.c b/drivers/pci/pcie/aer/aer_inject.c index 8c30a9544d61..223052b73563 100644 --- a/drivers/pci/pcie/aer/aer_inject.c +++ b/drivers/pci/pcie/aer/aer_inject.c | |||
| @@ -321,7 +321,7 @@ static int aer_inject(struct aer_error_inj *einj) | |||
| 321 | unsigned long flags; | 321 | unsigned long flags; |
| 322 | unsigned int devfn = PCI_DEVFN(einj->dev, einj->fn); | 322 | unsigned int devfn = PCI_DEVFN(einj->dev, einj->fn); |
| 323 | int pos_cap_err, rp_pos_cap_err; | 323 | int pos_cap_err, rp_pos_cap_err; |
| 324 | u32 sever, mask; | 324 | u32 sever, cor_mask, uncor_mask; |
| 325 | int ret = 0; | 325 | int ret = 0; |
| 326 | 326 | ||
| 327 | dev = pci_get_domain_bus_and_slot((int)einj->domain, einj->bus, devfn); | 327 | dev = pci_get_domain_bus_and_slot((int)einj->domain, einj->bus, devfn); |
| @@ -339,6 +339,9 @@ static int aer_inject(struct aer_error_inj *einj) | |||
| 339 | goto out_put; | 339 | goto out_put; |
| 340 | } | 340 | } |
| 341 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_UNCOR_SEVER, &sever); | 341 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_UNCOR_SEVER, &sever); |
| 342 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_COR_MASK, &cor_mask); | ||
| 343 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_UNCOR_MASK, | ||
| 344 | &uncor_mask); | ||
| 342 | 345 | ||
| 343 | rp_pos_cap_err = pci_find_ext_capability(rpdev, PCI_EXT_CAP_ID_ERR); | 346 | rp_pos_cap_err = pci_find_ext_capability(rpdev, PCI_EXT_CAP_ID_ERR); |
| 344 | if (!rp_pos_cap_err) { | 347 | if (!rp_pos_cap_err) { |
| @@ -374,17 +377,14 @@ static int aer_inject(struct aer_error_inj *einj) | |||
| 374 | err->header_log2 = einj->header_log2; | 377 | err->header_log2 = einj->header_log2; |
| 375 | err->header_log3 = einj->header_log3; | 378 | err->header_log3 = einj->header_log3; |
| 376 | 379 | ||
| 377 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_COR_MASK, &mask); | 380 | if (einj->cor_status && !(einj->cor_status & ~cor_mask)) { |
| 378 | if (einj->cor_status && !(einj->cor_status & ~mask)) { | ||
| 379 | ret = -EINVAL; | 381 | ret = -EINVAL; |
| 380 | printk(KERN_WARNING "The correctable error(s) is masked " | 382 | printk(KERN_WARNING "The correctable error(s) is masked " |
| 381 | "by device\n"); | 383 | "by device\n"); |
| 382 | spin_unlock_irqrestore(&inject_lock, flags); | 384 | spin_unlock_irqrestore(&inject_lock, flags); |
| 383 | goto out_put; | 385 | goto out_put; |
| 384 | } | 386 | } |
| 385 | 387 | if (einj->uncor_status && !(einj->uncor_status & ~uncor_mask)) { | |
| 386 | pci_read_config_dword(dev, pos_cap_err + PCI_ERR_UNCOR_MASK, &mask); | ||
| 387 | if (einj->uncor_status && !(einj->uncor_status & ~mask)) { | ||
| 388 | ret = -EINVAL; | 388 | ret = -EINVAL; |
| 389 | printk(KERN_WARNING "The uncorrectable error(s) is masked " | 389 | printk(KERN_WARNING "The uncorrectable error(s) is masked " |
| 390 | "by device\n"); | 390 | "by device\n"); |
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 98ffb2de22e9..446e4a94d7d3 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
| @@ -681,7 +681,7 @@ static void pci_read_irq(struct pci_dev *dev) | |||
| 681 | dev->irq = irq; | 681 | dev->irq = irq; |
| 682 | } | 682 | } |
| 683 | 683 | ||
| 684 | static void set_pcie_port_type(struct pci_dev *pdev) | 684 | void set_pcie_port_type(struct pci_dev *pdev) |
| 685 | { | 685 | { |
| 686 | int pos; | 686 | int pos; |
| 687 | u16 reg16; | 687 | u16 reg16; |
| @@ -695,7 +695,7 @@ static void set_pcie_port_type(struct pci_dev *pdev) | |||
| 695 | pdev->pcie_type = (reg16 & PCI_EXP_FLAGS_TYPE) >> 4; | 695 | pdev->pcie_type = (reg16 & PCI_EXP_FLAGS_TYPE) >> 4; |
| 696 | } | 696 | } |
| 697 | 697 | ||
| 698 | static void set_pcie_hotplug_bridge(struct pci_dev *pdev) | 698 | void set_pcie_hotplug_bridge(struct pci_dev *pdev) |
| 699 | { | 699 | { |
| 700 | int pos; | 700 | int pos; |
| 701 | u16 reg16; | 701 | u16 reg16; |
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index c74694345b6e..d58b94030ef3 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
| @@ -338,6 +338,23 @@ static void __devinit quirk_s3_64M(struct pci_dev *dev) | |||
| 338 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_S3, PCI_DEVICE_ID_S3_868, quirk_s3_64M); | 338 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_S3, PCI_DEVICE_ID_S3_868, quirk_s3_64M); |
| 339 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_S3, PCI_DEVICE_ID_S3_968, quirk_s3_64M); | 339 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_S3, PCI_DEVICE_ID_S3_968, quirk_s3_64M); |
| 340 | 340 | ||
| 341 | /* | ||
| 342 | * Some CS5536 BIOSes (for example, the Soekris NET5501 board w/ comBIOS | ||
| 343 | * ver. 1.33 20070103) don't set the correct ISA PCI region header info. | ||
| 344 | * BAR0 should be 8 bytes; instead, it may be set to something like 8k | ||
| 345 | * (which conflicts w/ BAR1's memory range). | ||
| 346 | */ | ||
| 347 | static void __devinit quirk_cs5536_vsa(struct pci_dev *dev) | ||
| 348 | { | ||
| 349 | if (pci_resource_len(dev, 0) != 8) { | ||
| 350 | struct resource *res = &dev->resource[0]; | ||
| 351 | res->end = res->start + 8 - 1; | ||
| 352 | dev_info(&dev->dev, "CS5536 ISA bridge bug detected " | ||
| 353 | "(incorrect header); workaround applied.\n"); | ||
| 354 | } | ||
| 355 | } | ||
| 356 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA, quirk_cs5536_vsa); | ||
| 357 | |||
| 341 | static void __devinit quirk_io_region(struct pci_dev *dev, unsigned region, | 358 | static void __devinit quirk_io_region(struct pci_dev *dev, unsigned region, |
| 342 | unsigned size, int nr, const char *name) | 359 | unsigned size, int nr, const char *name) |
| 343 | { | 360 | { |
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig index db32c25e3605..f526e735c5ab 100644 --- a/drivers/platform/x86/Kconfig +++ b/drivers/platform/x86/Kconfig | |||
| @@ -364,6 +364,7 @@ config EEEPC_LAPTOP | |||
| 364 | select HWMON | 364 | select HWMON |
| 365 | select LEDS_CLASS | 365 | select LEDS_CLASS |
| 366 | select NEW_LEDS | 366 | select NEW_LEDS |
| 367 | select INPUT_SPARSEKMAP | ||
| 367 | ---help--- | 368 | ---help--- |
| 368 | This driver supports the Fn-Fx keys on Eee PC laptops. | 369 | This driver supports the Fn-Fx keys on Eee PC laptops. |
| 369 | 370 | ||
diff --git a/drivers/platform/x86/eeepc-laptop.c b/drivers/platform/x86/eeepc-laptop.c index 5838c69b2fb3..e2be6bb33d92 100644 --- a/drivers/platform/x86/eeepc-laptop.c +++ b/drivers/platform/x86/eeepc-laptop.c | |||
| @@ -31,10 +31,12 @@ | |||
| 31 | #include <acpi/acpi_bus.h> | 31 | #include <acpi/acpi_bus.h> |
| 32 | #include <linux/uaccess.h> | 32 | #include <linux/uaccess.h> |
| 33 | #include <linux/input.h> | 33 | #include <linux/input.h> |
| 34 | #include <linux/input/sparse-keymap.h> | ||
| 34 | #include <linux/rfkill.h> | 35 | #include <linux/rfkill.h> |
| 35 | #include <linux/pci.h> | 36 | #include <linux/pci.h> |
| 36 | #include <linux/pci_hotplug.h> | 37 | #include <linux/pci_hotplug.h> |
| 37 | #include <linux/leds.h> | 38 | #include <linux/leds.h> |
| 39 | #include <linux/dmi.h> | ||
| 38 | 40 | ||
| 39 | #define EEEPC_LAPTOP_VERSION "0.1" | 41 | #define EEEPC_LAPTOP_VERSION "0.1" |
| 40 | #define EEEPC_LAPTOP_NAME "Eee PC Hotkey Driver" | 42 | #define EEEPC_LAPTOP_NAME "Eee PC Hotkey Driver" |
| @@ -48,6 +50,14 @@ MODULE_AUTHOR("Corentin Chary, Eric Cooper"); | |||
| 48 | MODULE_DESCRIPTION(EEEPC_LAPTOP_NAME); | 50 | MODULE_DESCRIPTION(EEEPC_LAPTOP_NAME); |
| 49 | MODULE_LICENSE("GPL"); | 51 | MODULE_LICENSE("GPL"); |
| 50 | 52 | ||
| 53 | static bool hotplug_disabled; | ||
| 54 | |||
| 55 | module_param(hotplug_disabled, bool, 0644); | ||
| 56 | MODULE_PARM_DESC(hotplug_disabled, | ||
| 57 | "Disable hotplug for wireless device. " | ||
| 58 | "If your laptop need that, please report to " | ||
| 59 | "acpi4asus-user@lists.sourceforge.net."); | ||
| 60 | |||
| 51 | /* | 61 | /* |
| 52 | * Definitions for Asus EeePC | 62 | * Definitions for Asus EeePC |
| 53 | */ | 63 | */ |
| @@ -120,38 +130,28 @@ static const char *cm_setv[] = { | |||
| 120 | NULL, NULL, "PBPS", "TPDS" | 130 | NULL, NULL, "PBPS", "TPDS" |
| 121 | }; | 131 | }; |
| 122 | 132 | ||
| 123 | struct key_entry { | ||
| 124 | char type; | ||
| 125 | u8 code; | ||
| 126 | u16 keycode; | ||
| 127 | }; | ||
| 128 | |||
| 129 | enum { KE_KEY, KE_END }; | ||
| 130 | |||
| 131 | static const struct key_entry eeepc_keymap[] = { | 133 | static const struct key_entry eeepc_keymap[] = { |
| 132 | /* Sleep already handled via generic ACPI code */ | 134 | { KE_KEY, 0x10, { KEY_WLAN } }, |
| 133 | {KE_KEY, 0x10, KEY_WLAN }, | 135 | { KE_KEY, 0x11, { KEY_WLAN } }, |
| 134 | {KE_KEY, 0x11, KEY_WLAN }, | 136 | { KE_KEY, 0x12, { KEY_PROG1 } }, |
| 135 | {KE_KEY, 0x12, KEY_PROG1 }, | 137 | { KE_KEY, 0x13, { KEY_MUTE } }, |
| 136 | {KE_KEY, 0x13, KEY_MUTE }, | 138 | { KE_KEY, 0x14, { KEY_VOLUMEDOWN } }, |
| 137 | {KE_KEY, 0x14, KEY_VOLUMEDOWN }, | 139 | { KE_KEY, 0x15, { KEY_VOLUMEUP } }, |
| 138 | {KE_KEY, 0x15, KEY_VOLUMEUP }, | 140 | { KE_KEY, 0x16, { KEY_DISPLAY_OFF } }, |
| 139 | {KE_KEY, 0x16, KEY_DISPLAY_OFF }, | 141 | { KE_KEY, 0x1a, { KEY_COFFEE } }, |
| 140 | {KE_KEY, 0x1a, KEY_COFFEE }, | 142 | { KE_KEY, 0x1b, { KEY_ZOOM } }, |
| 141 | {KE_KEY, 0x1b, KEY_ZOOM }, | 143 | { KE_KEY, 0x1c, { KEY_PROG2 } }, |
| 142 | {KE_KEY, 0x1c, KEY_PROG2 }, | 144 | { KE_KEY, 0x1d, { KEY_PROG3 } }, |
| 143 | {KE_KEY, 0x1d, KEY_PROG3 }, | 145 | { KE_KEY, NOTIFY_BRN_MIN, { KEY_BRIGHTNESSDOWN } }, |
| 144 | {KE_KEY, NOTIFY_BRN_MIN, KEY_BRIGHTNESSDOWN }, | 146 | { KE_KEY, NOTIFY_BRN_MAX, { KEY_BRIGHTNESSUP } }, |
| 145 | {KE_KEY, NOTIFY_BRN_MAX, KEY_BRIGHTNESSUP }, | 147 | { KE_KEY, 0x30, { KEY_SWITCHVIDEOMODE } }, |
| 146 | {KE_KEY, 0x30, KEY_SWITCHVIDEOMODE }, | 148 | { KE_KEY, 0x31, { KEY_SWITCHVIDEOMODE } }, |
| 147 | {KE_KEY, 0x31, KEY_SWITCHVIDEOMODE }, | 149 | { KE_KEY, 0x32, { KEY_SWITCHVIDEOMODE } }, |
| 148 | {KE_KEY, 0x32, KEY_SWITCHVIDEOMODE }, | 150 | { KE_KEY, 0x37, { KEY_F13 } }, /* Disable Touchpad */ |
| 149 | {KE_KEY, 0x37, KEY_F13 }, /* Disable Touchpad */ | 151 | { KE_KEY, 0x38, { KEY_F14 } }, |
| 150 | {KE_KEY, 0x38, KEY_F14 }, | 152 | { KE_END, 0 }, |
| 151 | {KE_END, 0}, | ||
| 152 | }; | 153 | }; |
| 153 | 154 | ||
| 154 | |||
| 155 | /* | 155 | /* |
| 156 | * This is the main structure, we can use it to store useful information | 156 | * This is the main structure, we can use it to store useful information |
| 157 | */ | 157 | */ |
| @@ -159,6 +159,8 @@ struct eeepc_laptop { | |||
| 159 | acpi_handle handle; /* the handle of the acpi device */ | 159 | acpi_handle handle; /* the handle of the acpi device */ |
| 160 | u32 cm_supported; /* the control methods supported | 160 | u32 cm_supported; /* the control methods supported |
| 161 | by this BIOS */ | 161 | by this BIOS */ |
| 162 | bool cpufv_disabled; | ||
| 163 | bool hotplug_disabled; | ||
| 162 | u16 event_count[128]; /* count for each event */ | 164 | u16 event_count[128]; /* count for each event */ |
| 163 | 165 | ||
| 164 | struct platform_device *platform_device; | 166 | struct platform_device *platform_device; |
| @@ -378,6 +380,8 @@ static ssize_t store_cpufv(struct device *dev, | |||
| 378 | struct eeepc_cpufv c; | 380 | struct eeepc_cpufv c; |
| 379 | int rv, value; | 381 | int rv, value; |
| 380 | 382 | ||
| 383 | if (eeepc->cpufv_disabled) | ||
| 384 | return -EPERM; | ||
| 381 | if (get_cpufv(eeepc, &c)) | 385 | if (get_cpufv(eeepc, &c)) |
| 382 | return -ENODEV; | 386 | return -ENODEV; |
| 383 | rv = parse_arg(buf, count, &value); | 387 | rv = parse_arg(buf, count, &value); |
| @@ -389,6 +393,41 @@ static ssize_t store_cpufv(struct device *dev, | |||
| 389 | return rv; | 393 | return rv; |
| 390 | } | 394 | } |
| 391 | 395 | ||
| 396 | static ssize_t show_cpufv_disabled(struct device *dev, | ||
| 397 | struct device_attribute *attr, | ||
| 398 | char *buf) | ||
| 399 | { | ||
| 400 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); | ||
| 401 | |||
| 402 | return sprintf(buf, "%d\n", eeepc->cpufv_disabled); | ||
| 403 | } | ||
| 404 | |||
| 405 | static ssize_t store_cpufv_disabled(struct device *dev, | ||
| 406 | struct device_attribute *attr, | ||
| 407 | const char *buf, size_t count) | ||
| 408 | { | ||
| 409 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); | ||
| 410 | int rv, value; | ||
| 411 | |||
| 412 | rv = parse_arg(buf, count, &value); | ||
| 413 | if (rv < 0) | ||
| 414 | return rv; | ||
| 415 | |||
| 416 | switch (value) { | ||
| 417 | case 0: | ||
| 418 | if (eeepc->cpufv_disabled) | ||
| 419 | pr_warning("cpufv enabled (not officially supported " | ||
| 420 | "on this model)\n"); | ||
| 421 | eeepc->cpufv_disabled = false; | ||
| 422 | return rv; | ||
| 423 | case 1: | ||
| 424 | return -EPERM; | ||
| 425 | default: | ||
| 426 | return -EINVAL; | ||
| 427 | } | ||
| 428 | } | ||
| 429 | |||
| 430 | |||
| 392 | static struct device_attribute dev_attr_cpufv = { | 431 | static struct device_attribute dev_attr_cpufv = { |
| 393 | .attr = { | 432 | .attr = { |
| 394 | .name = "cpufv", | 433 | .name = "cpufv", |
| @@ -404,12 +443,22 @@ static struct device_attribute dev_attr_available_cpufv = { | |||
| 404 | .show = show_available_cpufv | 443 | .show = show_available_cpufv |
| 405 | }; | 444 | }; |
| 406 | 445 | ||
| 446 | static struct device_attribute dev_attr_cpufv_disabled = { | ||
| 447 | .attr = { | ||
| 448 | .name = "cpufv_disabled", | ||
| 449 | .mode = 0644 }, | ||
| 450 | .show = show_cpufv_disabled, | ||
| 451 | .store = store_cpufv_disabled | ||
| 452 | }; | ||
| 453 | |||
| 454 | |||
| 407 | static struct attribute *platform_attributes[] = { | 455 | static struct attribute *platform_attributes[] = { |
| 408 | &dev_attr_camera.attr, | 456 | &dev_attr_camera.attr, |
| 409 | &dev_attr_cardr.attr, | 457 | &dev_attr_cardr.attr, |
| 410 | &dev_attr_disp.attr, | 458 | &dev_attr_disp.attr, |
| 411 | &dev_attr_cpufv.attr, | 459 | &dev_attr_cpufv.attr, |
| 412 | &dev_attr_available_cpufv.attr, | 460 | &dev_attr_available_cpufv.attr, |
| 461 | &dev_attr_cpufv_disabled.attr, | ||
| 413 | NULL | 462 | NULL |
| 414 | }; | 463 | }; |
| 415 | 464 | ||
| @@ -796,6 +845,9 @@ static int eeepc_rfkill_init(struct eeepc_laptop *eeepc) | |||
| 796 | if (result && result != -ENODEV) | 845 | if (result && result != -ENODEV) |
| 797 | goto exit; | 846 | goto exit; |
| 798 | 847 | ||
| 848 | if (eeepc->hotplug_disabled) | ||
| 849 | return 0; | ||
| 850 | |||
| 799 | result = eeepc_setup_pci_hotplug(eeepc); | 851 | result = eeepc_setup_pci_hotplug(eeepc); |
| 800 | /* | 852 | /* |
| 801 | * If we get -EBUSY then something else is handling the PCI hotplug - | 853 | * If we get -EBUSY then something else is handling the PCI hotplug - |
| @@ -1090,120 +1142,42 @@ static void eeepc_backlight_exit(struct eeepc_laptop *eeepc) | |||
| 1090 | /* | 1142 | /* |
| 1091 | * Input device (i.e. hotkeys) | 1143 | * Input device (i.e. hotkeys) |
| 1092 | */ | 1144 | */ |
| 1093 | static struct key_entry *eeepc_get_entry_by_scancode( | 1145 | static int eeepc_input_init(struct eeepc_laptop *eeepc) |
| 1094 | struct eeepc_laptop *eeepc, | ||
| 1095 | int code) | ||
| 1096 | { | 1146 | { |
| 1097 | struct key_entry *key; | 1147 | struct input_dev *input; |
| 1148 | int error; | ||
| 1098 | 1149 | ||
| 1099 | for (key = eeepc->keymap; key->type != KE_END; key++) | 1150 | input = input_allocate_device(); |
| 1100 | if (code == key->code) | 1151 | if (!input) { |
| 1101 | return key; | 1152 | pr_info("Unable to allocate input device\n"); |
| 1102 | 1153 | return -ENOMEM; | |
| 1103 | return NULL; | ||
| 1104 | } | ||
| 1105 | |||
| 1106 | static void eeepc_input_notify(struct eeepc_laptop *eeepc, int event) | ||
| 1107 | { | ||
| 1108 | static struct key_entry *key; | ||
| 1109 | |||
| 1110 | key = eeepc_get_entry_by_scancode(eeepc, event); | ||
| 1111 | if (key) { | ||
| 1112 | switch (key->type) { | ||
| 1113 | case KE_KEY: | ||
| 1114 | input_report_key(eeepc->inputdev, key->keycode, | ||
| 1115 | 1); | ||
| 1116 | input_sync(eeepc->inputdev); | ||
| 1117 | input_report_key(eeepc->inputdev, key->keycode, | ||
| 1118 | 0); | ||
| 1119 | input_sync(eeepc->inputdev); | ||
| 1120 | break; | ||
| 1121 | } | ||
| 1122 | } | 1154 | } |
| 1123 | } | ||
| 1124 | |||
| 1125 | static struct key_entry *eeepc_get_entry_by_keycode( | ||
| 1126 | struct eeepc_laptop *eeepc, int code) | ||
| 1127 | { | ||
| 1128 | struct key_entry *key; | ||
| 1129 | |||
| 1130 | for (key = eeepc->keymap; key->type != KE_END; key++) | ||
| 1131 | if (code == key->keycode && key->type == KE_KEY) | ||
| 1132 | return key; | ||
| 1133 | 1155 | ||
| 1134 | return NULL; | 1156 | input->name = "Asus EeePC extra buttons"; |
| 1135 | } | 1157 | input->phys = EEEPC_LAPTOP_FILE "/input0"; |
| 1158 | input->id.bustype = BUS_HOST; | ||
| 1159 | input->dev.parent = &eeepc->platform_device->dev; | ||
| 1136 | 1160 | ||
| 1137 | static int eeepc_getkeycode(struct input_dev *dev, int scancode, int *keycode) | 1161 | error = sparse_keymap_setup(input, eeepc_keymap, NULL); |
| 1138 | { | 1162 | if (error) { |
| 1139 | struct eeepc_laptop *eeepc = input_get_drvdata(dev); | 1163 | pr_err("Unable to setup input device keymap\n"); |
| 1140 | struct key_entry *key = eeepc_get_entry_by_scancode(eeepc, scancode); | 1164 | goto err_free_dev; |
| 1141 | |||
| 1142 | if (key && key->type == KE_KEY) { | ||
| 1143 | *keycode = key->keycode; | ||
| 1144 | return 0; | ||
| 1145 | } | 1165 | } |
| 1146 | 1166 | ||
| 1147 | return -EINVAL; | 1167 | error = input_register_device(input); |
| 1148 | } | 1168 | if (error) { |
| 1149 | 1169 | pr_err("Unable to register input device\n"); | |
| 1150 | static int eeepc_setkeycode(struct input_dev *dev, int scancode, int keycode) | 1170 | goto err_free_keymap; |
| 1151 | { | ||
| 1152 | struct eeepc_laptop *eeepc = input_get_drvdata(dev); | ||
| 1153 | struct key_entry *key; | ||
| 1154 | int old_keycode; | ||
| 1155 | |||
| 1156 | if (keycode < 0 || keycode > KEY_MAX) | ||
| 1157 | return -EINVAL; | ||
| 1158 | |||
| 1159 | key = eeepc_get_entry_by_scancode(eeepc, scancode); | ||
| 1160 | if (key && key->type == KE_KEY) { | ||
| 1161 | old_keycode = key->keycode; | ||
| 1162 | key->keycode = keycode; | ||
| 1163 | set_bit(keycode, dev->keybit); | ||
| 1164 | if (!eeepc_get_entry_by_keycode(eeepc, old_keycode)) | ||
| 1165 | clear_bit(old_keycode, dev->keybit); | ||
| 1166 | return 0; | ||
| 1167 | } | 1171 | } |
| 1168 | 1172 | ||
| 1169 | return -EINVAL; | 1173 | eeepc->inputdev = input; |
| 1170 | } | ||
| 1171 | |||
| 1172 | static int eeepc_input_init(struct eeepc_laptop *eeepc) | ||
| 1173 | { | ||
| 1174 | const struct key_entry *key; | ||
| 1175 | int result; | ||
| 1176 | |||
| 1177 | eeepc->inputdev = input_allocate_device(); | ||
| 1178 | if (!eeepc->inputdev) { | ||
| 1179 | pr_info("Unable to allocate input device\n"); | ||
| 1180 | return -ENOMEM; | ||
| 1181 | } | ||
| 1182 | eeepc->inputdev->name = "Asus EeePC extra buttons"; | ||
| 1183 | eeepc->inputdev->dev.parent = &eeepc->platform_device->dev; | ||
| 1184 | eeepc->inputdev->phys = EEEPC_LAPTOP_FILE "/input0"; | ||
| 1185 | eeepc->inputdev->id.bustype = BUS_HOST; | ||
| 1186 | eeepc->inputdev->getkeycode = eeepc_getkeycode; | ||
| 1187 | eeepc->inputdev->setkeycode = eeepc_setkeycode; | ||
| 1188 | input_set_drvdata(eeepc->inputdev, eeepc); | ||
| 1189 | |||
| 1190 | eeepc->keymap = kmemdup(eeepc_keymap, sizeof(eeepc_keymap), | ||
| 1191 | GFP_KERNEL); | ||
| 1192 | for (key = eeepc_keymap; key->type != KE_END; key++) { | ||
| 1193 | switch (key->type) { | ||
| 1194 | case KE_KEY: | ||
| 1195 | set_bit(EV_KEY, eeepc->inputdev->evbit); | ||
| 1196 | set_bit(key->keycode, eeepc->inputdev->keybit); | ||
| 1197 | break; | ||
| 1198 | } | ||
| 1199 | } | ||
| 1200 | result = input_register_device(eeepc->inputdev); | ||
| 1201 | if (result) { | ||
| 1202 | pr_info("Unable to register input device\n"); | ||
| 1203 | input_free_device(eeepc->inputdev); | ||
| 1204 | return result; | ||
| 1205 | } | ||
| 1206 | return 0; | 1174 | return 0; |
| 1175 | |||
| 1176 | err_free_keymap: | ||
| 1177 | sparse_keymap_free(input); | ||
| 1178 | err_free_dev: | ||
| 1179 | input_free_device(input); | ||
| 1180 | return error; | ||
| 1207 | } | 1181 | } |
| 1208 | 1182 | ||
| 1209 | static void eeepc_input_exit(struct eeepc_laptop *eeepc) | 1183 | static void eeepc_input_exit(struct eeepc_laptop *eeepc) |
| @@ -1253,11 +1227,59 @@ static void eeepc_acpi_notify(struct acpi_device *device, u32 event) | |||
| 1253 | * event will be desired value (or else ignored) | 1227 | * event will be desired value (or else ignored) |
| 1254 | */ | 1228 | */ |
| 1255 | } | 1229 | } |
| 1256 | eeepc_input_notify(eeepc, event); | 1230 | sparse_keymap_report_event(eeepc->inputdev, event, |
| 1231 | 1, true); | ||
| 1257 | } | 1232 | } |
| 1258 | } else { | 1233 | } else { |
| 1259 | /* Everything else is a bona-fide keypress event */ | 1234 | /* Everything else is a bona-fide keypress event */ |
| 1260 | eeepc_input_notify(eeepc, event); | 1235 | sparse_keymap_report_event(eeepc->inputdev, event, 1, true); |
| 1236 | } | ||
| 1237 | } | ||
| 1238 | |||
| 1239 | static void eeepc_dmi_check(struct eeepc_laptop *eeepc) | ||
| 1240 | { | ||
| 1241 | const char *model; | ||
| 1242 | |||
| 1243 | model = dmi_get_system_info(DMI_PRODUCT_NAME); | ||
| 1244 | if (!model) | ||
| 1245 | return; | ||
| 1246 | |||
| 1247 | /* | ||
| 1248 | * Blacklist for setting cpufv (cpu speed). | ||
| 1249 | * | ||
| 1250 | * EeePC 4G ("701") implements CFVS, but it is not supported | ||
| 1251 | * by the pre-installed OS, and the original option to change it | ||
| 1252 | * in the BIOS setup screen was removed in later versions. | ||
| 1253 | * | ||
| 1254 | * Judging by the lack of "Super Hybrid Engine" on Asus product pages, | ||
| 1255 | * this applies to all "701" models (4G/4G Surf/2G Surf). | ||
| 1256 | * | ||
| 1257 | * So Asus made a deliberate decision not to support it on this model. | ||
| 1258 | * We have several reports that using it can cause the system to hang | ||
| 1259 | * | ||
| 1260 | * The hang has also been reported on a "702" (Model name "8G"?). | ||
| 1261 | * | ||
| 1262 | * We avoid dmi_check_system() / dmi_match(), because they use | ||
| 1263 | * substring matching. We don't want to affect the "701SD" | ||
| 1264 | * and "701SDX" models, because they do support S.H.E. | ||
| 1265 | */ | ||
| 1266 | if (strcmp(model, "701") == 0 || strcmp(model, "702") == 0) { | ||
| 1267 | eeepc->cpufv_disabled = true; | ||
| 1268 | pr_info("model %s does not officially support setting cpu " | ||
| 1269 | "speed\n", model); | ||
| 1270 | pr_info("cpufv disabled to avoid instability\n"); | ||
| 1271 | } | ||
| 1272 | |||
| 1273 | /* | ||
| 1274 | * Blacklist for wlan hotplug | ||
| 1275 | * | ||
| 1276 | * Eeepc 1005HA doesn't work like others models and don't need the | ||
| 1277 | * hotplug code. In fact, current hotplug code seems to unplug another | ||
| 1278 | * device... | ||
| 1279 | */ | ||
| 1280 | if (strcmp(model, "1005HA") == 0 || strcmp(model, "1201N") == 0) { | ||
| 1281 | eeepc->hotplug_disabled = true; | ||
| 1282 | pr_info("wlan hotplug disabled\n"); | ||
| 1261 | } | 1283 | } |
| 1262 | } | 1284 | } |
| 1263 | 1285 | ||
| @@ -1342,6 +1364,10 @@ static int __devinit eeepc_acpi_add(struct acpi_device *device) | |||
| 1342 | strcpy(acpi_device_class(device), EEEPC_ACPI_CLASS); | 1364 | strcpy(acpi_device_class(device), EEEPC_ACPI_CLASS); |
| 1343 | device->driver_data = eeepc; | 1365 | device->driver_data = eeepc; |
| 1344 | 1366 | ||
| 1367 | eeepc->hotplug_disabled = hotplug_disabled; | ||
| 1368 | |||
| 1369 | eeepc_dmi_check(eeepc); | ||
| 1370 | |||
| 1345 | result = eeepc_acpi_init(eeepc, device); | 1371 | result = eeepc_acpi_init(eeepc, device); |
| 1346 | if (result) | 1372 | if (result) |
| 1347 | goto fail_platform; | 1373 | goto fail_platform; |
| @@ -1452,10 +1478,12 @@ static int __init eeepc_laptop_init(void) | |||
| 1452 | result = acpi_bus_register_driver(&eeepc_acpi_driver); | 1478 | result = acpi_bus_register_driver(&eeepc_acpi_driver); |
| 1453 | if (result < 0) | 1479 | if (result < 0) |
| 1454 | goto fail_acpi_driver; | 1480 | goto fail_acpi_driver; |
| 1481 | |||
| 1455 | if (!eeepc_device_present) { | 1482 | if (!eeepc_device_present) { |
| 1456 | result = -ENODEV; | 1483 | result = -ENODEV; |
| 1457 | goto fail_no_device; | 1484 | goto fail_no_device; |
| 1458 | } | 1485 | } |
| 1486 | |||
| 1459 | return 0; | 1487 | return 0; |
| 1460 | 1488 | ||
| 1461 | fail_no_device: | 1489 | fail_no_device: |
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index 5af53340da6f..3f71a605a492 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c | |||
| @@ -1201,9 +1201,12 @@ static void sony_nc_rfkill_setup(struct acpi_device *device) | |||
| 1201 | /* the buffer is filled with magic numbers describing the devices | 1201 | /* the buffer is filled with magic numbers describing the devices |
| 1202 | * available, 0xff terminates the enumeration | 1202 | * available, 0xff terminates the enumeration |
| 1203 | */ | 1203 | */ |
| 1204 | while ((dev_code = *(device_enum->buffer.pointer + i)) != 0xff && | 1204 | for (i = 0; i < device_enum->buffer.length; i++) { |
| 1205 | i < device_enum->buffer.length) { | 1205 | |
| 1206 | i++; | 1206 | dev_code = *(device_enum->buffer.pointer + i); |
| 1207 | if (dev_code == 0xff) | ||
| 1208 | break; | ||
| 1209 | |||
| 1207 | dprintk("Radio devices, looking at 0x%.2x\n", dev_code); | 1210 | dprintk("Radio devices, looking at 0x%.2x\n", dev_code); |
| 1208 | 1211 | ||
| 1209 | if (dev_code == 0 && !sony_rfkill_devices[SONY_WIFI]) | 1212 | if (dev_code == 0 && !sony_rfkill_devices[SONY_WIFI]) |
diff --git a/drivers/power/pmu_battery.c b/drivers/power/pmu_battery.c index 9346a862f1f2..9c87ad564803 100644 --- a/drivers/power/pmu_battery.c +++ b/drivers/power/pmu_battery.c | |||
| @@ -89,6 +89,8 @@ static int pmu_bat_get_property(struct power_supply *psy, | |||
| 89 | case POWER_SUPPLY_PROP_STATUS: | 89 | case POWER_SUPPLY_PROP_STATUS: |
| 90 | if (pbi->flags & PMU_BATT_CHARGING) | 90 | if (pbi->flags & PMU_BATT_CHARGING) |
| 91 | val->intval = POWER_SUPPLY_STATUS_CHARGING; | 91 | val->intval = POWER_SUPPLY_STATUS_CHARGING; |
| 92 | else if (pmu_power_flags & PMU_PWR_AC_PRESENT) | ||
| 93 | val->intval = POWER_SUPPLY_STATUS_FULL; | ||
| 92 | else | 94 | else |
| 93 | val->intval = POWER_SUPPLY_STATUS_DISCHARGING; | 95 | val->intval = POWER_SUPPLY_STATUS_DISCHARGING; |
| 94 | break; | 96 | break; |
diff --git a/drivers/regulator/wm8350-regulator.c b/drivers/regulator/wm8350-regulator.c index 1bbff099a546..e7b89e704af6 100644 --- a/drivers/regulator/wm8350-regulator.c +++ b/drivers/regulator/wm8350-regulator.c | |||
| @@ -1504,7 +1504,8 @@ int wm8350_register_led(struct wm8350 *wm8350, int lednum, int dcdc, int isink, | |||
| 1504 | led->isink_init.consumer_supplies = &led->isink_consumer; | 1504 | led->isink_init.consumer_supplies = &led->isink_consumer; |
| 1505 | led->isink_init.constraints.min_uA = 0; | 1505 | led->isink_init.constraints.min_uA = 0; |
| 1506 | led->isink_init.constraints.max_uA = pdata->max_uA; | 1506 | led->isink_init.constraints.max_uA = pdata->max_uA; |
| 1507 | led->isink_init.constraints.valid_ops_mask = REGULATOR_CHANGE_CURRENT; | 1507 | led->isink_init.constraints.valid_ops_mask |
| 1508 | = REGULATOR_CHANGE_CURRENT | REGULATOR_CHANGE_STATUS; | ||
| 1508 | led->isink_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; | 1509 | led->isink_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; |
| 1509 | ret = wm8350_register_regulator(wm8350, isink, &led->isink_init); | 1510 | ret = wm8350_register_regulator(wm8350, isink, &led->isink_init); |
| 1510 | if (ret != 0) { | 1511 | if (ret != 0) { |
| @@ -1517,6 +1518,7 @@ int wm8350_register_led(struct wm8350 *wm8350, int lednum, int dcdc, int isink, | |||
| 1517 | led->dcdc_init.num_consumer_supplies = 1; | 1518 | led->dcdc_init.num_consumer_supplies = 1; |
| 1518 | led->dcdc_init.consumer_supplies = &led->dcdc_consumer; | 1519 | led->dcdc_init.consumer_supplies = &led->dcdc_consumer; |
| 1519 | led->dcdc_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; | 1520 | led->dcdc_init.constraints.valid_modes_mask = REGULATOR_MODE_NORMAL; |
| 1521 | led->dcdc_init.constraints.valid_ops_mask = REGULATOR_CHANGE_STATUS; | ||
| 1520 | ret = wm8350_register_regulator(wm8350, dcdc, &led->dcdc_init); | 1522 | ret = wm8350_register_regulator(wm8350, dcdc, &led->dcdc_init); |
| 1521 | if (ret != 0) { | 1523 | if (ret != 0) { |
| 1522 | platform_device_put(pdev); | 1524 | platform_device_put(pdev); |
diff --git a/drivers/rtc/rtc-fm3130.c b/drivers/rtc/rtc-fm3130.c index 3a7be11cc6b9..812c66755083 100644 --- a/drivers/rtc/rtc-fm3130.c +++ b/drivers/rtc/rtc-fm3130.c | |||
| @@ -376,20 +376,22 @@ static int __devinit fm3130_probe(struct i2c_client *client, | |||
| 376 | } | 376 | } |
| 377 | 377 | ||
| 378 | /* Disabling calibration mode */ | 378 | /* Disabling calibration mode */ |
| 379 | if (fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_CAL) | 379 | if (fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_CAL) { |
| 380 | i2c_smbus_write_byte_data(client, FM3130_RTC_CONTROL, | 380 | i2c_smbus_write_byte_data(client, FM3130_RTC_CONTROL, |
| 381 | fm3130->regs[FM3130_RTC_CONTROL] & | 381 | fm3130->regs[FM3130_RTC_CONTROL] & |
| 382 | ~(FM3130_RTC_CONTROL_BIT_CAL)); | 382 | ~(FM3130_RTC_CONTROL_BIT_CAL)); |
| 383 | dev_warn(&client->dev, "Disabling calibration mode!\n"); | 383 | dev_warn(&client->dev, "Disabling calibration mode!\n"); |
| 384 | } | ||
| 384 | 385 | ||
| 385 | /* Disabling read and write modes */ | 386 | /* Disabling read and write modes */ |
| 386 | if (fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_WRITE || | 387 | if (fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_WRITE || |
| 387 | fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_READ) | 388 | fm3130->regs[FM3130_RTC_CONTROL] & FM3130_RTC_CONTROL_BIT_READ) { |
| 388 | i2c_smbus_write_byte_data(client, FM3130_RTC_CONTROL, | 389 | i2c_smbus_write_byte_data(client, FM3130_RTC_CONTROL, |
| 389 | fm3130->regs[FM3130_RTC_CONTROL] & | 390 | fm3130->regs[FM3130_RTC_CONTROL] & |
| 390 | ~(FM3130_RTC_CONTROL_BIT_READ | | 391 | ~(FM3130_RTC_CONTROL_BIT_READ | |
| 391 | FM3130_RTC_CONTROL_BIT_WRITE)); | 392 | FM3130_RTC_CONTROL_BIT_WRITE)); |
| 392 | dev_warn(&client->dev, "Disabling READ or WRITE mode!\n"); | 393 | dev_warn(&client->dev, "Disabling READ or WRITE mode!\n"); |
| 394 | } | ||
| 393 | 395 | ||
| 394 | /* oscillator off? turn it on, so clock can tick. */ | 396 | /* oscillator off? turn it on, so clock can tick. */ |
| 395 | if (fm3130->regs[FM3130_CAL_CONTROL] & FM3130_CAL_CONTROL_BIT_nOSCEN) | 397 | if (fm3130->regs[FM3130_CAL_CONTROL] & FM3130_CAL_CONTROL_BIT_nOSCEN) |
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index fdb2e7c14506..5905936c7c60 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c | |||
| @@ -1004,8 +1004,8 @@ static void dasd_handle_killed_request(struct ccw_device *cdev, | |||
| 1004 | if (device == NULL || | 1004 | if (device == NULL || |
| 1005 | device != dasd_device_from_cdev_locked(cdev) || | 1005 | device != dasd_device_from_cdev_locked(cdev) || |
| 1006 | strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) { | 1006 | strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) { |
| 1007 | DBF_DEV_EVENT(DBF_DEBUG, device, "invalid device in request: " | 1007 | DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s", |
| 1008 | "bus_id %s", dev_name(&cdev->dev)); | 1008 | "invalid device in request"); |
| 1009 | return; | 1009 | return; |
| 1010 | } | 1010 | } |
| 1011 | 1011 | ||
| @@ -1078,8 +1078,8 @@ void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm, | |||
| 1078 | device = (struct dasd_device *) cqr->startdev; | 1078 | device = (struct dasd_device *) cqr->startdev; |
| 1079 | if (!device || | 1079 | if (!device || |
| 1080 | strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) { | 1080 | strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) { |
| 1081 | DBF_DEV_EVENT(DBF_DEBUG, device, "invalid device in request: " | 1081 | DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s", |
| 1082 | "bus_id %s", dev_name(&cdev->dev)); | 1082 | "invalid device in request"); |
| 1083 | return; | 1083 | return; |
| 1084 | } | 1084 | } |
| 1085 | 1085 | ||
diff --git a/drivers/s390/block/dasd_eckd.c b/drivers/s390/block/dasd_eckd.c index 5819dc02a143..1cca21aafaba 100644 --- a/drivers/s390/block/dasd_eckd.c +++ b/drivers/s390/block/dasd_eckd.c | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include <asm/debug.h> | 23 | #include <asm/debug.h> |
| 24 | #include <asm/idals.h> | 24 | #include <asm/idals.h> |
| 25 | #include <asm/ebcdic.h> | 25 | #include <asm/ebcdic.h> |
| 26 | #include <asm/compat.h> | ||
| 26 | #include <asm/io.h> | 27 | #include <asm/io.h> |
| 27 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
| 28 | #include <asm/cio.h> | 29 | #include <asm/cio.h> |
| @@ -2844,13 +2845,16 @@ static int dasd_symm_io(struct dasd_device *device, void __user *argp) | |||
| 2844 | rc = -EFAULT; | 2845 | rc = -EFAULT; |
| 2845 | if (copy_from_user(&usrparm, argp, sizeof(usrparm))) | 2846 | if (copy_from_user(&usrparm, argp, sizeof(usrparm))) |
| 2846 | goto out; | 2847 | goto out; |
| 2847 | #ifndef CONFIG_64BIT | 2848 | if (is_compat_task() || sizeof(long) == 4) { |
| 2848 | /* Make sure pointers are sane even on 31 bit. */ | 2849 | /* Make sure pointers are sane even on 31 bit. */ |
| 2849 | if ((usrparm.psf_data >> 32) != 0 || (usrparm.rssd_result >> 32) != 0) { | ||
| 2850 | rc = -EINVAL; | 2850 | rc = -EINVAL; |
| 2851 | goto out; | 2851 | if ((usrparm.psf_data >> 32) != 0) |
| 2852 | goto out; | ||
| 2853 | if ((usrparm.rssd_result >> 32) != 0) | ||
| 2854 | goto out; | ||
| 2855 | usrparm.psf_data &= 0x7fffffffULL; | ||
| 2856 | usrparm.rssd_result &= 0x7fffffffULL; | ||
| 2852 | } | 2857 | } |
| 2853 | #endif | ||
| 2854 | /* alloc I/O data area */ | 2858 | /* alloc I/O data area */ |
| 2855 | psf_data = kzalloc(usrparm.psf_data_len, GFP_KERNEL | GFP_DMA); | 2859 | psf_data = kzalloc(usrparm.psf_data_len, GFP_KERNEL | GFP_DMA); |
| 2856 | rssd_result = kzalloc(usrparm.rssd_result_len, GFP_KERNEL | GFP_DMA); | 2860 | rssd_result = kzalloc(usrparm.rssd_result_len, GFP_KERNEL | GFP_DMA); |
| @@ -3029,7 +3033,7 @@ static void dasd_eckd_dump_sense_ccw(struct dasd_device *device, | |||
| 3029 | len += sprintf(page + len, KERN_ERR PRINTK_HEADER | 3033 | len += sprintf(page + len, KERN_ERR PRINTK_HEADER |
| 3030 | " in req: %p CS: 0x%02X DS: 0x%02X CC: 0x%02X RC: %d\n", | 3034 | " in req: %p CS: 0x%02X DS: 0x%02X CC: 0x%02X RC: %d\n", |
| 3031 | req, scsw_cstat(&irb->scsw), scsw_dstat(&irb->scsw), | 3035 | req, scsw_cstat(&irb->scsw), scsw_dstat(&irb->scsw), |
| 3032 | scsw_cc(&irb->scsw), req->intrc); | 3036 | scsw_cc(&irb->scsw), req ? req->intrc : 0); |
| 3033 | len += sprintf(page + len, KERN_ERR PRINTK_HEADER | 3037 | len += sprintf(page + len, KERN_ERR PRINTK_HEADER |
| 3034 | " device %s: Failing CCW: %p\n", | 3038 | " device %s: Failing CCW: %p\n", |
| 3035 | dev_name(&device->cdev->dev), | 3039 | dev_name(&device->cdev->dev), |
diff --git a/drivers/s390/block/dasd_ioctl.c b/drivers/s390/block/dasd_ioctl.c index 478bcdb90b6f..7039d9cf0fb4 100644 --- a/drivers/s390/block/dasd_ioctl.c +++ b/drivers/s390/block/dasd_ioctl.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <linux/fs.h> | 17 | #include <linux/fs.h> |
| 18 | #include <linux/blkpg.h> | 18 | #include <linux/blkpg.h> |
| 19 | #include <linux/smp_lock.h> | 19 | #include <linux/smp_lock.h> |
| 20 | 20 | #include <asm/compat.h> | |
| 21 | #include <asm/ccwdev.h> | 21 | #include <asm/ccwdev.h> |
| 22 | #include <asm/cmb.h> | 22 | #include <asm/cmb.h> |
| 23 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
| @@ -260,7 +260,7 @@ static int dasd_ioctl_information(struct dasd_block *block, | |||
| 260 | struct ccw_dev_id dev_id; | 260 | struct ccw_dev_id dev_id; |
| 261 | 261 | ||
| 262 | base = block->base; | 262 | base = block->base; |
| 263 | if (!base->discipline->fill_info) | 263 | if (!base->discipline || !base->discipline->fill_info) |
| 264 | return -EINVAL; | 264 | return -EINVAL; |
| 265 | 265 | ||
| 266 | dasd_info = kzalloc(sizeof(struct dasd_information2_t), GFP_KERNEL); | 266 | dasd_info = kzalloc(sizeof(struct dasd_information2_t), GFP_KERNEL); |
| @@ -303,10 +303,7 @@ static int dasd_ioctl_information(struct dasd_block *block, | |||
| 303 | dasd_info->features |= | 303 | dasd_info->features |= |
| 304 | ((base->features & DASD_FEATURE_READONLY) != 0); | 304 | ((base->features & DASD_FEATURE_READONLY) != 0); |
| 305 | 305 | ||
| 306 | if (base->discipline) | 306 | memcpy(dasd_info->type, base->discipline->name, 4); |
| 307 | memcpy(dasd_info->type, base->discipline->name, 4); | ||
| 308 | else | ||
| 309 | memcpy(dasd_info->type, "none", 4); | ||
| 310 | 307 | ||
| 311 | if (block->request_queue->request_fn) { | 308 | if (block->request_queue->request_fn) { |
| 312 | struct list_head *l; | 309 | struct list_head *l; |
| @@ -358,9 +355,8 @@ dasd_ioctl_set_ro(struct block_device *bdev, void __user *argp) | |||
| 358 | } | 355 | } |
| 359 | 356 | ||
| 360 | static int dasd_ioctl_readall_cmb(struct dasd_block *block, unsigned int cmd, | 357 | static int dasd_ioctl_readall_cmb(struct dasd_block *block, unsigned int cmd, |
| 361 | unsigned long arg) | 358 | struct cmbdata __user *argp) |
| 362 | { | 359 | { |
| 363 | struct cmbdata __user *argp = (void __user *) arg; | ||
| 364 | size_t size = _IOC_SIZE(cmd); | 360 | size_t size = _IOC_SIZE(cmd); |
| 365 | struct cmbdata data; | 361 | struct cmbdata data; |
| 366 | int ret; | 362 | int ret; |
| @@ -376,7 +372,12 @@ dasd_do_ioctl(struct block_device *bdev, fmode_t mode, | |||
| 376 | unsigned int cmd, unsigned long arg) | 372 | unsigned int cmd, unsigned long arg) |
| 377 | { | 373 | { |
| 378 | struct dasd_block *block = bdev->bd_disk->private_data; | 374 | struct dasd_block *block = bdev->bd_disk->private_data; |
| 379 | void __user *argp = (void __user *)arg; | 375 | void __user *argp; |
| 376 | |||
| 377 | if (is_compat_task()) | ||
| 378 | argp = compat_ptr(arg); | ||
| 379 | else | ||
| 380 | argp = (void __user *)arg; | ||
| 380 | 381 | ||
| 381 | if (!block) | 382 | if (!block) |
| 382 | return -ENODEV; | 383 | return -ENODEV; |
| @@ -414,7 +415,7 @@ dasd_do_ioctl(struct block_device *bdev, fmode_t mode, | |||
| 414 | case BIODASDCMFDISABLE: | 415 | case BIODASDCMFDISABLE: |
| 415 | return disable_cmf(block->base->cdev); | 416 | return disable_cmf(block->base->cdev); |
| 416 | case BIODASDREADALLCMB: | 417 | case BIODASDREADALLCMB: |
| 417 | return dasd_ioctl_readall_cmb(block, cmd, arg); | 418 | return dasd_ioctl_readall_cmb(block, cmd, argp); |
| 418 | default: | 419 | default: |
| 419 | /* if the discipline has an ioctl method try it. */ | 420 | /* if the discipline has an ioctl method try it. */ |
| 420 | if (block->base->discipline->ioctl) { | 421 | if (block->base->discipline->ioctl) { |
diff --git a/drivers/s390/block/dasd_proc.c b/drivers/s390/block/dasd_proc.c index 6315fbd8e68b..71f95f54866f 100644 --- a/drivers/s390/block/dasd_proc.c +++ b/drivers/s390/block/dasd_proc.c | |||
| @@ -72,7 +72,7 @@ dasd_devices_show(struct seq_file *m, void *v) | |||
| 72 | /* Print device number. */ | 72 | /* Print device number. */ |
| 73 | seq_printf(m, "%s", dev_name(&device->cdev->dev)); | 73 | seq_printf(m, "%s", dev_name(&device->cdev->dev)); |
| 74 | /* Print discipline string. */ | 74 | /* Print discipline string. */ |
| 75 | if (device != NULL && device->discipline != NULL) | 75 | if (device->discipline != NULL) |
| 76 | seq_printf(m, "(%s)", device->discipline->name); | 76 | seq_printf(m, "(%s)", device->discipline->name); |
| 77 | else | 77 | else |
| 78 | seq_printf(m, "(none)"); | 78 | seq_printf(m, "(none)"); |
| @@ -92,10 +92,7 @@ dasd_devices_show(struct seq_file *m, void *v) | |||
| 92 | substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " "; | 92 | substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " "; |
| 93 | seq_printf(m, "%4s: ", substr); | 93 | seq_printf(m, "%4s: ", substr); |
| 94 | /* Print device status information. */ | 94 | /* Print device status information. */ |
| 95 | switch ((device != NULL) ? device->state : -1) { | 95 | switch (device->state) { |
| 96 | case -1: | ||
| 97 | seq_printf(m, "unknown"); | ||
| 98 | break; | ||
| 99 | case DASD_STATE_NEW: | 96 | case DASD_STATE_NEW: |
| 100 | seq_printf(m, "new"); | 97 | seq_printf(m, "new"); |
| 101 | break; | 98 | break; |
diff --git a/drivers/s390/char/con3215.c b/drivers/s390/char/con3215.c index 9d61683b5633..59ec073724bf 100644 --- a/drivers/s390/char/con3215.c +++ b/drivers/s390/char/con3215.c | |||
| @@ -1037,22 +1037,6 @@ static void tty3215_flush_buffer(struct tty_struct *tty) | |||
| 1037 | } | 1037 | } |
| 1038 | 1038 | ||
| 1039 | /* | 1039 | /* |
| 1040 | * Currently we don't have any io controls for 3215 ttys | ||
| 1041 | */ | ||
| 1042 | static int tty3215_ioctl(struct tty_struct *tty, struct file * file, | ||
| 1043 | unsigned int cmd, unsigned long arg) | ||
| 1044 | { | ||
| 1045 | if (tty->flags & (1 << TTY_IO_ERROR)) | ||
| 1046 | return -EIO; | ||
| 1047 | |||
| 1048 | switch (cmd) { | ||
| 1049 | default: | ||
| 1050 | return -ENOIOCTLCMD; | ||
| 1051 | } | ||
| 1052 | return 0; | ||
| 1053 | } | ||
| 1054 | |||
| 1055 | /* | ||
| 1056 | * Disable reading from a 3215 tty | 1040 | * Disable reading from a 3215 tty |
| 1057 | */ | 1041 | */ |
| 1058 | static void tty3215_throttle(struct tty_struct * tty) | 1042 | static void tty3215_throttle(struct tty_struct * tty) |
| @@ -1117,7 +1101,6 @@ static const struct tty_operations tty3215_ops = { | |||
| 1117 | .write_room = tty3215_write_room, | 1101 | .write_room = tty3215_write_room, |
| 1118 | .chars_in_buffer = tty3215_chars_in_buffer, | 1102 | .chars_in_buffer = tty3215_chars_in_buffer, |
| 1119 | .flush_buffer = tty3215_flush_buffer, | 1103 | .flush_buffer = tty3215_flush_buffer, |
| 1120 | .ioctl = tty3215_ioctl, | ||
| 1121 | .throttle = tty3215_throttle, | 1104 | .throttle = tty3215_throttle, |
| 1122 | .unthrottle = tty3215_unthrottle, | 1105 | .unthrottle = tty3215_unthrottle, |
| 1123 | .stop = tty3215_stop, | 1106 | .stop = tty3215_stop, |
diff --git a/drivers/s390/char/fs3270.c b/drivers/s390/char/fs3270.c index 247b2b934728..31c59b0d6df0 100644 --- a/drivers/s390/char/fs3270.c +++ b/drivers/s390/char/fs3270.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
| 16 | #include <linux/smp_lock.h> | 16 | #include <linux/smp_lock.h> |
| 17 | 17 | ||
| 18 | #include <asm/compat.h> | ||
| 18 | #include <asm/ccwdev.h> | 19 | #include <asm/ccwdev.h> |
| 19 | #include <asm/cio.h> | 20 | #include <asm/cio.h> |
| 20 | #include <asm/ebcdic.h> | 21 | #include <asm/ebcdic.h> |
| @@ -322,6 +323,7 @@ fs3270_write(struct file *filp, const char __user *data, size_t count, loff_t *o | |||
| 322 | static long | 323 | static long |
| 323 | fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | 324 | fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 324 | { | 325 | { |
| 326 | char __user *argp; | ||
| 325 | struct fs3270 *fp; | 327 | struct fs3270 *fp; |
| 326 | struct raw3270_iocb iocb; | 328 | struct raw3270_iocb iocb; |
| 327 | int rc; | 329 | int rc; |
| @@ -329,6 +331,10 @@ fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
| 329 | fp = filp->private_data; | 331 | fp = filp->private_data; |
| 330 | if (!fp) | 332 | if (!fp) |
| 331 | return -ENODEV; | 333 | return -ENODEV; |
| 334 | if (is_compat_task()) | ||
| 335 | argp = compat_ptr(arg); | ||
| 336 | else | ||
| 337 | argp = (char __user *)arg; | ||
| 332 | rc = 0; | 338 | rc = 0; |
| 333 | mutex_lock(&fs3270_mutex); | 339 | mutex_lock(&fs3270_mutex); |
| 334 | switch (cmd) { | 340 | switch (cmd) { |
| @@ -339,10 +345,10 @@ fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
| 339 | fp->write_command = arg; | 345 | fp->write_command = arg; |
| 340 | break; | 346 | break; |
| 341 | case TUBGETI: | 347 | case TUBGETI: |
| 342 | rc = put_user(fp->read_command, (char __user *) arg); | 348 | rc = put_user(fp->read_command, argp); |
| 343 | break; | 349 | break; |
| 344 | case TUBGETO: | 350 | case TUBGETO: |
| 345 | rc = put_user(fp->write_command,(char __user *) arg); | 351 | rc = put_user(fp->write_command, argp); |
| 346 | break; | 352 | break; |
| 347 | case TUBGETMOD: | 353 | case TUBGETMOD: |
| 348 | iocb.model = fp->view.model; | 354 | iocb.model = fp->view.model; |
| @@ -351,8 +357,7 @@ fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
| 351 | iocb.pf_cnt = 24; | 357 | iocb.pf_cnt = 24; |
| 352 | iocb.re_cnt = 20; | 358 | iocb.re_cnt = 20; |
| 353 | iocb.map = 0; | 359 | iocb.map = 0; |
| 354 | if (copy_to_user((char __user *) arg, &iocb, | 360 | if (copy_to_user(argp, &iocb, sizeof(struct raw3270_iocb))) |
| 355 | sizeof(struct raw3270_iocb))) | ||
| 356 | rc = -EFAULT; | 361 | rc = -EFAULT; |
| 357 | break; | 362 | break; |
| 358 | } | 363 | } |
| @@ -511,8 +516,8 @@ static const struct file_operations fs3270_fops = { | |||
| 511 | .write = fs3270_write, /* write */ | 516 | .write = fs3270_write, /* write */ |
| 512 | .unlocked_ioctl = fs3270_ioctl, /* ioctl */ | 517 | .unlocked_ioctl = fs3270_ioctl, /* ioctl */ |
| 513 | .compat_ioctl = fs3270_ioctl, /* ioctl */ | 518 | .compat_ioctl = fs3270_ioctl, /* ioctl */ |
| 514 | .open = fs3270_open, /* open */ | 519 | .open = fs3270_open, /* open */ |
| 515 | .release = fs3270_close, /* release */ | 520 | .release = fs3270_close, /* release */ |
| 516 | }; | 521 | }; |
| 517 | 522 | ||
| 518 | /* | 523 | /* |
diff --git a/drivers/s390/char/sclp_vt220.c b/drivers/s390/char/sclp_vt220.c index b9d2a007e93b..3796ffdb8479 100644 --- a/drivers/s390/char/sclp_vt220.c +++ b/drivers/s390/char/sclp_vt220.c | |||
| @@ -495,6 +495,10 @@ sclp_vt220_open(struct tty_struct *tty, struct file *filp) | |||
| 495 | if (tty->driver_data == NULL) | 495 | if (tty->driver_data == NULL) |
| 496 | return -ENOMEM; | 496 | return -ENOMEM; |
| 497 | tty->low_latency = 0; | 497 | tty->low_latency = 0; |
| 498 | if (!tty->winsize.ws_row && !tty->winsize.ws_col) { | ||
| 499 | tty->winsize.ws_row = 24; | ||
| 500 | tty->winsize.ws_col = 80; | ||
| 501 | } | ||
| 498 | } | 502 | } |
| 499 | return 0; | 503 | return 0; |
| 500 | } | 504 | } |
diff --git a/drivers/s390/char/tape_block.c b/drivers/s390/char/tape_block.c index 96816149368a..8d3d720737da 100644 --- a/drivers/s390/char/tape_block.c +++ b/drivers/s390/char/tape_block.c | |||
| @@ -46,8 +46,6 @@ | |||
| 46 | */ | 46 | */ |
| 47 | static int tapeblock_open(struct block_device *, fmode_t); | 47 | static int tapeblock_open(struct block_device *, fmode_t); |
| 48 | static int tapeblock_release(struct gendisk *, fmode_t); | 48 | static int tapeblock_release(struct gendisk *, fmode_t); |
| 49 | static int tapeblock_ioctl(struct block_device *, fmode_t, unsigned int, | ||
| 50 | unsigned long); | ||
| 51 | static int tapeblock_medium_changed(struct gendisk *); | 49 | static int tapeblock_medium_changed(struct gendisk *); |
| 52 | static int tapeblock_revalidate_disk(struct gendisk *); | 50 | static int tapeblock_revalidate_disk(struct gendisk *); |
| 53 | 51 | ||
| @@ -55,7 +53,6 @@ static const struct block_device_operations tapeblock_fops = { | |||
| 55 | .owner = THIS_MODULE, | 53 | .owner = THIS_MODULE, |
| 56 | .open = tapeblock_open, | 54 | .open = tapeblock_open, |
| 57 | .release = tapeblock_release, | 55 | .release = tapeblock_release, |
| 58 | .ioctl = tapeblock_ioctl, | ||
| 59 | .media_changed = tapeblock_medium_changed, | 56 | .media_changed = tapeblock_medium_changed, |
| 60 | .revalidate_disk = tapeblock_revalidate_disk, | 57 | .revalidate_disk = tapeblock_revalidate_disk, |
| 61 | }; | 58 | }; |
| @@ -416,42 +413,6 @@ tapeblock_release(struct gendisk *disk, fmode_t mode) | |||
| 416 | } | 413 | } |
| 417 | 414 | ||
| 418 | /* | 415 | /* |
| 419 | * Support of some generic block device IOCTLs. | ||
| 420 | */ | ||
| 421 | static int | ||
| 422 | tapeblock_ioctl( | ||
| 423 | struct block_device * bdev, | ||
| 424 | fmode_t mode, | ||
| 425 | unsigned int command, | ||
| 426 | unsigned long arg | ||
| 427 | ) { | ||
| 428 | int rc; | ||
| 429 | int minor; | ||
| 430 | struct gendisk *disk = bdev->bd_disk; | ||
| 431 | struct tape_device *device; | ||
| 432 | |||
| 433 | rc = 0; | ||
| 434 | BUG_ON(!disk); | ||
| 435 | device = disk->private_data; | ||
| 436 | BUG_ON(!device); | ||
| 437 | minor = MINOR(bdev->bd_dev); | ||
| 438 | |||
| 439 | DBF_LH(6, "tapeblock_ioctl(0x%0x)\n", command); | ||
| 440 | DBF_LH(6, "device = %d:%d\n", tapeblock_major, minor); | ||
| 441 | |||
| 442 | switch (command) { | ||
| 443 | /* Refuse some IOCTL calls without complaining (mount). */ | ||
| 444 | case 0x5310: /* CDROMMULTISESSION */ | ||
| 445 | rc = -EINVAL; | ||
| 446 | break; | ||
| 447 | default: | ||
| 448 | rc = -EINVAL; | ||
| 449 | } | ||
| 450 | |||
| 451 | return rc; | ||
| 452 | } | ||
| 453 | |||
| 454 | /* | ||
| 455 | * Initialize block device frontend. | 416 | * Initialize block device frontend. |
| 456 | */ | 417 | */ |
| 457 | int | 418 | int |
diff --git a/drivers/s390/char/tape_char.c b/drivers/s390/char/tape_char.c index 2125ec7d95f0..539045acaad4 100644 --- a/drivers/s390/char/tape_char.c +++ b/drivers/s390/char/tape_char.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/proc_fs.h> | 18 | #include <linux/proc_fs.h> |
| 19 | #include <linux/mtio.h> | 19 | #include <linux/mtio.h> |
| 20 | #include <linux/smp_lock.h> | 20 | #include <linux/smp_lock.h> |
| 21 | #include <linux/compat.h> | ||
| 21 | 22 | ||
| 22 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
| 23 | 24 | ||
| @@ -37,8 +38,9 @@ static ssize_t tapechar_write(struct file *, const char __user *, size_t, loff_t | |||
| 37 | static int tapechar_open(struct inode *,struct file *); | 38 | static int tapechar_open(struct inode *,struct file *); |
| 38 | static int tapechar_release(struct inode *,struct file *); | 39 | static int tapechar_release(struct inode *,struct file *); |
| 39 | static long tapechar_ioctl(struct file *, unsigned int, unsigned long); | 40 | static long tapechar_ioctl(struct file *, unsigned int, unsigned long); |
| 40 | static long tapechar_compat_ioctl(struct file *, unsigned int, | 41 | #ifdef CONFIG_COMPAT |
| 41 | unsigned long); | 42 | static long tapechar_compat_ioctl(struct file *, unsigned int, unsigned long); |
| 43 | #endif | ||
| 42 | 44 | ||
| 43 | static const struct file_operations tape_fops = | 45 | static const struct file_operations tape_fops = |
| 44 | { | 46 | { |
| @@ -46,7 +48,9 @@ static const struct file_operations tape_fops = | |||
| 46 | .read = tapechar_read, | 48 | .read = tapechar_read, |
| 47 | .write = tapechar_write, | 49 | .write = tapechar_write, |
| 48 | .unlocked_ioctl = tapechar_ioctl, | 50 | .unlocked_ioctl = tapechar_ioctl, |
| 51 | #ifdef CONFIG_COMPAT | ||
| 49 | .compat_ioctl = tapechar_compat_ioctl, | 52 | .compat_ioctl = tapechar_compat_ioctl, |
| 53 | #endif | ||
| 50 | .open = tapechar_open, | 54 | .open = tapechar_open, |
| 51 | .release = tapechar_release, | 55 | .release = tapechar_release, |
| 52 | }; | 56 | }; |
| @@ -457,15 +461,22 @@ tapechar_ioctl(struct file *filp, unsigned int no, unsigned long data) | |||
| 457 | return rc; | 461 | return rc; |
| 458 | } | 462 | } |
| 459 | 463 | ||
| 464 | #ifdef CONFIG_COMPAT | ||
| 460 | static long | 465 | static long |
| 461 | tapechar_compat_ioctl(struct file *filp, unsigned int no, unsigned long data) | 466 | tapechar_compat_ioctl(struct file *filp, unsigned int no, unsigned long data) |
| 462 | { | 467 | { |
| 463 | struct tape_device *device = filp->private_data; | 468 | struct tape_device *device = filp->private_data; |
| 464 | int rval = -ENOIOCTLCMD; | 469 | int rval = -ENOIOCTLCMD; |
| 470 | unsigned long argp; | ||
| 465 | 471 | ||
| 472 | /* The 'arg' argument of any ioctl function may only be used for | ||
| 473 | * pointers because of the compat pointer conversion. | ||
| 474 | * Consider this when adding new ioctls. | ||
| 475 | */ | ||
| 476 | argp = (unsigned long) compat_ptr(data); | ||
| 466 | if (device->discipline->ioctl_fn) { | 477 | if (device->discipline->ioctl_fn) { |
| 467 | mutex_lock(&device->mutex); | 478 | mutex_lock(&device->mutex); |
| 468 | rval = device->discipline->ioctl_fn(device, no, data); | 479 | rval = device->discipline->ioctl_fn(device, no, argp); |
| 469 | mutex_unlock(&device->mutex); | 480 | mutex_unlock(&device->mutex); |
| 470 | if (rval == -EINVAL) | 481 | if (rval == -EINVAL) |
| 471 | rval = -ENOIOCTLCMD; | 482 | rval = -ENOIOCTLCMD; |
| @@ -473,6 +484,7 @@ tapechar_compat_ioctl(struct file *filp, unsigned int no, unsigned long data) | |||
| 473 | 484 | ||
| 474 | return rval; | 485 | return rval; |
| 475 | } | 486 | } |
| 487 | #endif /* CONFIG_COMPAT */ | ||
| 476 | 488 | ||
| 477 | /* | 489 | /* |
| 478 | * Initialize character device frontend. | 490 | * Initialize character device frontend. |
diff --git a/drivers/s390/char/vmcp.c b/drivers/s390/char/vmcp.c index a6087cec55b4..921dcda77676 100644 --- a/drivers/s390/char/vmcp.c +++ b/drivers/s390/char/vmcp.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/miscdevice.h> | 20 | #include <linux/miscdevice.h> |
| 21 | #include <linux/module.h> | 21 | #include <linux/module.h> |
| 22 | #include <asm/compat.h> | ||
| 22 | #include <asm/cpcmd.h> | 23 | #include <asm/cpcmd.h> |
| 23 | #include <asm/debug.h> | 24 | #include <asm/debug.h> |
| 24 | #include <asm/uaccess.h> | 25 | #include <asm/uaccess.h> |
| @@ -139,21 +140,26 @@ vmcp_write(struct file *file, const char __user *buff, size_t count, | |||
| 139 | static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 140 | static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 140 | { | 141 | { |
| 141 | struct vmcp_session *session; | 142 | struct vmcp_session *session; |
| 143 | int __user *argp; | ||
| 142 | int temp; | 144 | int temp; |
| 143 | 145 | ||
| 144 | session = (struct vmcp_session *)file->private_data; | 146 | session = (struct vmcp_session *)file->private_data; |
| 147 | if (is_compat_task()) | ||
| 148 | argp = compat_ptr(arg); | ||
| 149 | else | ||
| 150 | argp = (int __user *)arg; | ||
| 145 | if (mutex_lock_interruptible(&session->mutex)) | 151 | if (mutex_lock_interruptible(&session->mutex)) |
| 146 | return -ERESTARTSYS; | 152 | return -ERESTARTSYS; |
| 147 | switch (cmd) { | 153 | switch (cmd) { |
| 148 | case VMCP_GETCODE: | 154 | case VMCP_GETCODE: |
| 149 | temp = session->resp_code; | 155 | temp = session->resp_code; |
| 150 | mutex_unlock(&session->mutex); | 156 | mutex_unlock(&session->mutex); |
| 151 | return put_user(temp, (int __user *)arg); | 157 | return put_user(temp, argp); |
| 152 | case VMCP_SETBUF: | 158 | case VMCP_SETBUF: |
| 153 | free_pages((unsigned long)session->response, | 159 | free_pages((unsigned long)session->response, |
| 154 | get_order(session->bufsize)); | 160 | get_order(session->bufsize)); |
| 155 | session->response=NULL; | 161 | session->response=NULL; |
| 156 | temp = get_user(session->bufsize, (int __user *)arg); | 162 | temp = get_user(session->bufsize, argp); |
| 157 | if (get_order(session->bufsize) > 8) { | 163 | if (get_order(session->bufsize) > 8) { |
| 158 | session->bufsize = PAGE_SIZE; | 164 | session->bufsize = PAGE_SIZE; |
| 159 | temp = -EINVAL; | 165 | temp = -EINVAL; |
| @@ -163,7 +169,7 @@ static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
| 163 | case VMCP_GETSIZE: | 169 | case VMCP_GETSIZE: |
| 164 | temp = session->resp_size; | 170 | temp = session->resp_size; |
| 165 | mutex_unlock(&session->mutex); | 171 | mutex_unlock(&session->mutex); |
| 166 | return put_user(temp, (int __user *)arg); | 172 | return put_user(temp, argp); |
| 167 | default: | 173 | default: |
| 168 | mutex_unlock(&session->mutex); | 174 | mutex_unlock(&session->mutex); |
| 169 | return -ENOIOCTLCMD; | 175 | return -ENOIOCTLCMD; |
diff --git a/drivers/s390/cio/chsc_sch.c b/drivers/s390/cio/chsc_sch.c index cc5144b6f9d9..c84ac9443079 100644 --- a/drivers/s390/cio/chsc_sch.c +++ b/drivers/s390/cio/chsc_sch.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/uaccess.h> | 12 | #include <linux/uaccess.h> |
| 13 | #include <linux/miscdevice.h> | 13 | #include <linux/miscdevice.h> |
| 14 | 14 | ||
| 15 | #include <asm/compat.h> | ||
| 15 | #include <asm/cio.h> | 16 | #include <asm/cio.h> |
| 16 | #include <asm/chsc.h> | 17 | #include <asm/chsc.h> |
| 17 | #include <asm/isc.h> | 18 | #include <asm/isc.h> |
| @@ -770,24 +771,30 @@ out_free: | |||
| 770 | static long chsc_ioctl(struct file *filp, unsigned int cmd, | 771 | static long chsc_ioctl(struct file *filp, unsigned int cmd, |
| 771 | unsigned long arg) | 772 | unsigned long arg) |
| 772 | { | 773 | { |
| 774 | void __user *argp; | ||
| 775 | |||
| 773 | CHSC_MSG(2, "chsc_ioctl called, cmd=%x\n", cmd); | 776 | CHSC_MSG(2, "chsc_ioctl called, cmd=%x\n", cmd); |
| 777 | if (is_compat_task()) | ||
| 778 | argp = compat_ptr(arg); | ||
| 779 | else | ||
| 780 | argp = (void __user *)arg; | ||
| 774 | switch (cmd) { | 781 | switch (cmd) { |
| 775 | case CHSC_START: | 782 | case CHSC_START: |
| 776 | return chsc_ioctl_start((void __user *)arg); | 783 | return chsc_ioctl_start(argp); |
| 777 | case CHSC_INFO_CHANNEL_PATH: | 784 | case CHSC_INFO_CHANNEL_PATH: |
| 778 | return chsc_ioctl_info_channel_path((void __user *)arg); | 785 | return chsc_ioctl_info_channel_path(argp); |
| 779 | case CHSC_INFO_CU: | 786 | case CHSC_INFO_CU: |
| 780 | return chsc_ioctl_info_cu((void __user *)arg); | 787 | return chsc_ioctl_info_cu(argp); |
| 781 | case CHSC_INFO_SCH_CU: | 788 | case CHSC_INFO_SCH_CU: |
| 782 | return chsc_ioctl_info_sch_cu((void __user *)arg); | 789 | return chsc_ioctl_info_sch_cu(argp); |
| 783 | case CHSC_INFO_CI: | 790 | case CHSC_INFO_CI: |
| 784 | return chsc_ioctl_conf_info((void __user *)arg); | 791 | return chsc_ioctl_conf_info(argp); |
| 785 | case CHSC_INFO_CCL: | 792 | case CHSC_INFO_CCL: |
| 786 | return chsc_ioctl_conf_comp_list((void __user *)arg); | 793 | return chsc_ioctl_conf_comp_list(argp); |
| 787 | case CHSC_INFO_CPD: | 794 | case CHSC_INFO_CPD: |
| 788 | return chsc_ioctl_chpd((void __user *)arg); | 795 | return chsc_ioctl_chpd(argp); |
| 789 | case CHSC_INFO_DCAL: | 796 | case CHSC_INFO_DCAL: |
| 790 | return chsc_ioctl_dcal((void __user *)arg); | 797 | return chsc_ioctl_dcal(argp); |
| 791 | default: /* unknown ioctl number */ | 798 | default: /* unknown ioctl number */ |
| 792 | return -ENOIOCTLCMD; | 799 | return -ENOIOCTLCMD; |
| 793 | } | 800 | } |
diff --git a/drivers/s390/crypto/zcrypt_api.c b/drivers/s390/crypto/zcrypt_api.c index 0d4d18bdd45c..c68be24e27d9 100644 --- a/drivers/s390/crypto/zcrypt_api.c +++ b/drivers/s390/crypto/zcrypt_api.c | |||
| @@ -393,10 +393,12 @@ static long zcrypt_rsa_crt(struct ica_rsa_modexpo_crt *crt) | |||
| 393 | * u_mult_inv > 128 bytes. | 393 | * u_mult_inv > 128 bytes. |
| 394 | */ | 394 | */ |
| 395 | if (copied == 0) { | 395 | if (copied == 0) { |
| 396 | int len; | 396 | unsigned int len; |
| 397 | spin_unlock_bh(&zcrypt_device_lock); | 397 | spin_unlock_bh(&zcrypt_device_lock); |
| 398 | /* len is max 256 / 2 - 120 = 8 */ | 398 | /* len is max 256 / 2 - 120 = 8 */ |
| 399 | len = crt->inputdatalength / 2 - 120; | 399 | len = crt->inputdatalength / 2 - 120; |
| 400 | if (len > sizeof(z1)) | ||
| 401 | return -EFAULT; | ||
| 400 | z1 = z2 = z3 = 0; | 402 | z1 = z2 = z3 = 0; |
| 401 | if (copy_from_user(&z1, crt->np_prime, len) || | 403 | if (copy_from_user(&z1, crt->np_prime, len) || |
| 402 | copy_from_user(&z2, crt->bp_key, len) || | 404 | copy_from_user(&z2, crt->bp_key, len) || |
diff --git a/drivers/s390/crypto/zcrypt_pcicc.c b/drivers/s390/crypto/zcrypt_pcicc.c index a23726a0735c..142f72a2ca5a 100644 --- a/drivers/s390/crypto/zcrypt_pcicc.c +++ b/drivers/s390/crypto/zcrypt_pcicc.c | |||
| @@ -373,6 +373,8 @@ static int convert_type86(struct zcrypt_device *zdev, | |||
| 373 | zdev->max_mod_size = PCICC_MAX_MOD_SIZE_OLD; | 373 | zdev->max_mod_size = PCICC_MAX_MOD_SIZE_OLD; |
| 374 | return -EAGAIN; | 374 | return -EAGAIN; |
| 375 | } | 375 | } |
| 376 | if (service_rc == 8 && service_rs == 72) | ||
| 377 | return -EINVAL; | ||
| 376 | zdev->online = 0; | 378 | zdev->online = 0; |
| 377 | return -EAGAIN; /* repeat the request on a different device. */ | 379 | return -EAGAIN; /* repeat the request on a different device. */ |
| 378 | } | 380 | } |
diff --git a/drivers/s390/crypto/zcrypt_pcixcc.c b/drivers/s390/crypto/zcrypt_pcixcc.c index 79c120578e61..68f3e6204db8 100644 --- a/drivers/s390/crypto/zcrypt_pcixcc.c +++ b/drivers/s390/crypto/zcrypt_pcixcc.c | |||
| @@ -470,6 +470,8 @@ static int convert_type86_ica(struct zcrypt_device *zdev, | |||
| 470 | } | 470 | } |
| 471 | if (service_rc == 12 && service_rs == 769) | 471 | if (service_rc == 12 && service_rs == 769) |
| 472 | return -EINVAL; | 472 | return -EINVAL; |
| 473 | if (service_rc == 8 && service_rs == 72) | ||
| 474 | return -EINVAL; | ||
| 473 | zdev->online = 0; | 475 | zdev->online = 0; |
| 474 | return -EAGAIN; /* repeat the request on a different device. */ | 476 | return -EAGAIN; /* repeat the request on a different device. */ |
| 475 | } | 477 | } |
diff --git a/drivers/s390/net/claw.c b/drivers/s390/net/claw.c index 3c77bfe0764c..147bb1a69aba 100644 --- a/drivers/s390/net/claw.c +++ b/drivers/s390/net/claw.c | |||
| @@ -3398,7 +3398,7 @@ claw_init(void) | |||
| 3398 | goto out_err; | 3398 | goto out_err; |
| 3399 | } | 3399 | } |
| 3400 | CLAW_DBF_TEXT(2, setup, "init_mod"); | 3400 | CLAW_DBF_TEXT(2, setup, "init_mod"); |
| 3401 | claw_root_dev = root_device_register("qeth"); | 3401 | claw_root_dev = root_device_register("claw"); |
| 3402 | ret = IS_ERR(claw_root_dev) ? PTR_ERR(claw_root_dev) : 0; | 3402 | ret = IS_ERR(claw_root_dev) ? PTR_ERR(claw_root_dev) : 0; |
| 3403 | if (ret) | 3403 | if (ret) |
| 3404 | goto register_err; | 3404 | goto register_err; |
diff --git a/drivers/s390/scsi/zfcp_cfdc.c b/drivers/s390/scsi/zfcp_cfdc.c index f932400e980a..0eb6eefd2c1a 100644 --- a/drivers/s390/scsi/zfcp_cfdc.c +++ b/drivers/s390/scsi/zfcp_cfdc.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | #include <linux/types.h> | 13 | #include <linux/types.h> |
| 14 | #include <linux/miscdevice.h> | 14 | #include <linux/miscdevice.h> |
| 15 | #include <asm/compat.h> | ||
| 15 | #include <asm/ccwdev.h> | 16 | #include <asm/ccwdev.h> |
| 16 | #include "zfcp_def.h" | 17 | #include "zfcp_def.h" |
| 17 | #include "zfcp_ext.h" | 18 | #include "zfcp_ext.h" |
| @@ -163,7 +164,7 @@ static void zfcp_cfdc_req_to_sense(struct zfcp_cfdc_data *data, | |||
| 163 | } | 164 | } |
| 164 | 165 | ||
| 165 | static long zfcp_cfdc_dev_ioctl(struct file *file, unsigned int command, | 166 | static long zfcp_cfdc_dev_ioctl(struct file *file, unsigned int command, |
| 166 | unsigned long buffer) | 167 | unsigned long arg) |
| 167 | { | 168 | { |
| 168 | struct zfcp_cfdc_data *data; | 169 | struct zfcp_cfdc_data *data; |
| 169 | struct zfcp_cfdc_data __user *data_user; | 170 | struct zfcp_cfdc_data __user *data_user; |
| @@ -175,7 +176,11 @@ static long zfcp_cfdc_dev_ioctl(struct file *file, unsigned int command, | |||
| 175 | if (command != ZFCP_CFDC_IOC) | 176 | if (command != ZFCP_CFDC_IOC) |
| 176 | return -ENOTTY; | 177 | return -ENOTTY; |
| 177 | 178 | ||
| 178 | data_user = (void __user *) buffer; | 179 | if (is_compat_task()) |
| 180 | data_user = compat_ptr(arg); | ||
| 181 | else | ||
| 182 | data_user = (void __user *)arg; | ||
| 183 | |||
| 179 | if (!data_user) | 184 | if (!data_user) |
| 180 | return -EINVAL; | 185 | return -EINVAL; |
| 181 | 186 | ||
diff --git a/drivers/s390/scsi/zfcp_dbf.c b/drivers/s390/scsi/zfcp_dbf.c index 84450955ae11..7369c8911bcf 100644 --- a/drivers/s390/scsi/zfcp_dbf.c +++ b/drivers/s390/scsi/zfcp_dbf.c | |||
| @@ -327,7 +327,7 @@ static void zfcp_dbf_hba_view_response(char **p, | |||
| 327 | break; | 327 | break; |
| 328 | zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd); | 328 | zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd); |
| 329 | zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial); | 329 | zfcp_dbf_out(p, "scsi_serial", "0x%016Lx", r->u.fcp.serial); |
| 330 | p += sprintf(*p, "\n"); | 330 | *p += sprintf(*p, "\n"); |
| 331 | break; | 331 | break; |
| 332 | 332 | ||
| 333 | case FSF_QTCB_OPEN_PORT_WITH_DID: | 333 | case FSF_QTCB_OPEN_PORT_WITH_DID: |
diff --git a/drivers/s390/scsi/zfcp_ext.h b/drivers/s390/scsi/zfcp_ext.h index 03dec832b465..66bdb34143cb 100644 --- a/drivers/s390/scsi/zfcp_ext.h +++ b/drivers/s390/scsi/zfcp_ext.h | |||
| @@ -108,6 +108,7 @@ extern void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *); | |||
| 108 | extern int zfcp_fc_gs_setup(struct zfcp_adapter *); | 108 | extern int zfcp_fc_gs_setup(struct zfcp_adapter *); |
| 109 | extern void zfcp_fc_gs_destroy(struct zfcp_adapter *); | 109 | extern void zfcp_fc_gs_destroy(struct zfcp_adapter *); |
| 110 | extern int zfcp_fc_exec_bsg_job(struct fc_bsg_job *); | 110 | extern int zfcp_fc_exec_bsg_job(struct fc_bsg_job *); |
| 111 | extern int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *); | ||
| 111 | 112 | ||
| 112 | /* zfcp_fsf.c */ | 113 | /* zfcp_fsf.c */ |
| 113 | extern int zfcp_fsf_open_port(struct zfcp_erp_action *); | 114 | extern int zfcp_fsf_open_port(struct zfcp_erp_action *); |
| @@ -129,9 +130,9 @@ extern void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *); | |||
| 129 | extern int zfcp_fsf_status_read(struct zfcp_qdio *); | 130 | extern int zfcp_fsf_status_read(struct zfcp_qdio *); |
| 130 | extern int zfcp_status_read_refill(struct zfcp_adapter *adapter); | 131 | extern int zfcp_status_read_refill(struct zfcp_adapter *adapter); |
| 131 | extern int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *, struct zfcp_fsf_ct_els *, | 132 | extern int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *, struct zfcp_fsf_ct_els *, |
| 132 | mempool_t *); | 133 | mempool_t *, unsigned int); |
| 133 | extern int zfcp_fsf_send_els(struct zfcp_adapter *, u32, | 134 | extern int zfcp_fsf_send_els(struct zfcp_adapter *, u32, |
| 134 | struct zfcp_fsf_ct_els *); | 135 | struct zfcp_fsf_ct_els *, unsigned int); |
| 135 | extern int zfcp_fsf_send_fcp_command_task(struct zfcp_unit *, | 136 | extern int zfcp_fsf_send_fcp_command_task(struct zfcp_unit *, |
| 136 | struct scsi_cmnd *); | 137 | struct scsi_cmnd *); |
| 137 | extern void zfcp_fsf_req_free(struct zfcp_fsf_req *); | 138 | extern void zfcp_fsf_req_free(struct zfcp_fsf_req *); |
diff --git a/drivers/s390/scsi/zfcp_fc.c b/drivers/s390/scsi/zfcp_fc.c index ac5e3b7a3576..0f7b493fb105 100644 --- a/drivers/s390/scsi/zfcp_fc.c +++ b/drivers/s390/scsi/zfcp_fc.c | |||
| @@ -258,7 +258,8 @@ static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port, | |||
| 258 | gid_pn->gid_pn_req.gid_pn.fn_wwpn = port->wwpn; | 258 | gid_pn->gid_pn_req.gid_pn.fn_wwpn = port->wwpn; |
| 259 | 259 | ||
| 260 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, &gid_pn->ct, | 260 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, &gid_pn->ct, |
| 261 | adapter->pool.gid_pn_req); | 261 | adapter->pool.gid_pn_req, |
| 262 | ZFCP_FC_CTELS_TMO); | ||
| 262 | if (!ret) { | 263 | if (!ret) { |
| 263 | wait_for_completion(&completion); | 264 | wait_for_completion(&completion); |
| 264 | zfcp_fc_ns_gid_pn_eval(gid_pn); | 265 | zfcp_fc_ns_gid_pn_eval(gid_pn); |
| @@ -421,7 +422,8 @@ static int zfcp_fc_adisc(struct zfcp_port *port) | |||
| 421 | hton24(adisc->adisc_req.adisc_port_id, | 422 | hton24(adisc->adisc_req.adisc_port_id, |
| 422 | fc_host_port_id(adapter->scsi_host)); | 423 | fc_host_port_id(adapter->scsi_host)); |
| 423 | 424 | ||
| 424 | ret = zfcp_fsf_send_els(adapter, port->d_id, &adisc->els); | 425 | ret = zfcp_fsf_send_els(adapter, port->d_id, &adisc->els, |
| 426 | ZFCP_FC_CTELS_TMO); | ||
| 425 | if (ret) | 427 | if (ret) |
| 426 | kmem_cache_free(zfcp_data.adisc_cache, adisc); | 428 | kmem_cache_free(zfcp_data.adisc_cache, adisc); |
| 427 | 429 | ||
| @@ -532,7 +534,8 @@ static int zfcp_fc_send_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft, | |||
| 532 | ct->req = &gpn_ft->sg_req; | 534 | ct->req = &gpn_ft->sg_req; |
| 533 | ct->resp = gpn_ft->sg_resp; | 535 | ct->resp = gpn_ft->sg_resp; |
| 534 | 536 | ||
| 535 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct, NULL); | 537 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct, NULL, |
| 538 | ZFCP_FC_CTELS_TMO); | ||
| 536 | if (!ret) | 539 | if (!ret) |
| 537 | wait_for_completion(&completion); | 540 | wait_for_completion(&completion); |
| 538 | return ret; | 541 | return ret; |
| @@ -677,6 +680,44 @@ static void zfcp_fc_ct_els_job_handler(void *data) | |||
| 677 | job->job_done(job); | 680 | job->job_done(job); |
| 678 | } | 681 | } |
| 679 | 682 | ||
| 683 | static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job) | ||
| 684 | { | ||
| 685 | u32 preamble_word1; | ||
| 686 | u8 gs_type; | ||
| 687 | struct zfcp_adapter *adapter; | ||
| 688 | |||
| 689 | preamble_word1 = job->request->rqst_data.r_ct.preamble_word1; | ||
| 690 | gs_type = (preamble_word1 & 0xff000000) >> 24; | ||
| 691 | |||
| 692 | adapter = (struct zfcp_adapter *) job->shost->hostdata[0]; | ||
| 693 | |||
| 694 | switch (gs_type) { | ||
| 695 | case FC_FST_ALIAS: | ||
| 696 | return &adapter->gs->as; | ||
| 697 | case FC_FST_MGMT: | ||
| 698 | return &adapter->gs->ms; | ||
| 699 | case FC_FST_TIME: | ||
| 700 | return &adapter->gs->ts; | ||
| 701 | break; | ||
| 702 | case FC_FST_DIR: | ||
| 703 | return &adapter->gs->ds; | ||
| 704 | break; | ||
| 705 | default: | ||
| 706 | return NULL; | ||
| 707 | } | ||
| 708 | } | ||
| 709 | |||
| 710 | static void zfcp_fc_ct_job_handler(void *data) | ||
| 711 | { | ||
| 712 | struct fc_bsg_job *job = data; | ||
| 713 | struct zfcp_fc_wka_port *wka_port; | ||
| 714 | |||
| 715 | wka_port = zfcp_fc_job_wka_port(job); | ||
| 716 | zfcp_fc_wka_port_put(wka_port); | ||
| 717 | |||
| 718 | zfcp_fc_ct_els_job_handler(data); | ||
| 719 | } | ||
| 720 | |||
| 680 | static int zfcp_fc_exec_els_job(struct fc_bsg_job *job, | 721 | static int zfcp_fc_exec_els_job(struct fc_bsg_job *job, |
| 681 | struct zfcp_adapter *adapter) | 722 | struct zfcp_adapter *adapter) |
| 682 | { | 723 | { |
| @@ -695,43 +736,27 @@ static int zfcp_fc_exec_els_job(struct fc_bsg_job *job, | |||
| 695 | } else | 736 | } else |
| 696 | d_id = ntoh24(job->request->rqst_data.h_els.port_id); | 737 | d_id = ntoh24(job->request->rqst_data.h_els.port_id); |
| 697 | 738 | ||
| 698 | return zfcp_fsf_send_els(adapter, d_id, els); | 739 | els->handler = zfcp_fc_ct_els_job_handler; |
| 740 | return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ); | ||
| 699 | } | 741 | } |
| 700 | 742 | ||
| 701 | static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job, | 743 | static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job, |
| 702 | struct zfcp_adapter *adapter) | 744 | struct zfcp_adapter *adapter) |
| 703 | { | 745 | { |
| 704 | int ret; | 746 | int ret; |
| 705 | u8 gs_type; | ||
| 706 | struct zfcp_fsf_ct_els *ct = job->dd_data; | 747 | struct zfcp_fsf_ct_els *ct = job->dd_data; |
| 707 | struct zfcp_fc_wka_port *wka_port; | 748 | struct zfcp_fc_wka_port *wka_port; |
| 708 | u32 preamble_word1; | ||
| 709 | 749 | ||
| 710 | preamble_word1 = job->request->rqst_data.r_ct.preamble_word1; | 750 | wka_port = zfcp_fc_job_wka_port(job); |
| 711 | gs_type = (preamble_word1 & 0xff000000) >> 24; | 751 | if (!wka_port) |
| 712 | 752 | return -EINVAL; | |
| 713 | switch (gs_type) { | ||
| 714 | case FC_FST_ALIAS: | ||
| 715 | wka_port = &adapter->gs->as; | ||
| 716 | break; | ||
| 717 | case FC_FST_MGMT: | ||
| 718 | wka_port = &adapter->gs->ms; | ||
| 719 | break; | ||
| 720 | case FC_FST_TIME: | ||
| 721 | wka_port = &adapter->gs->ts; | ||
| 722 | break; | ||
| 723 | case FC_FST_DIR: | ||
| 724 | wka_port = &adapter->gs->ds; | ||
| 725 | break; | ||
| 726 | default: | ||
| 727 | return -EINVAL; /* no such service */ | ||
| 728 | } | ||
| 729 | 753 | ||
| 730 | ret = zfcp_fc_wka_port_get(wka_port); | 754 | ret = zfcp_fc_wka_port_get(wka_port); |
| 731 | if (ret) | 755 | if (ret) |
| 732 | return ret; | 756 | return ret; |
| 733 | 757 | ||
| 734 | ret = zfcp_fsf_send_ct(wka_port, ct, NULL); | 758 | ct->handler = zfcp_fc_ct_job_handler; |
| 759 | ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ); | ||
| 735 | if (ret) | 760 | if (ret) |
| 736 | zfcp_fc_wka_port_put(wka_port); | 761 | zfcp_fc_wka_port_put(wka_port); |
| 737 | 762 | ||
| @@ -752,7 +777,6 @@ int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job) | |||
| 752 | 777 | ||
| 753 | ct_els->req = job->request_payload.sg_list; | 778 | ct_els->req = job->request_payload.sg_list; |
| 754 | ct_els->resp = job->reply_payload.sg_list; | 779 | ct_els->resp = job->reply_payload.sg_list; |
| 755 | ct_els->handler = zfcp_fc_ct_els_job_handler; | ||
| 756 | ct_els->handler_data = job; | 780 | ct_els->handler_data = job; |
| 757 | 781 | ||
| 758 | switch (job->request->msgcode) { | 782 | switch (job->request->msgcode) { |
| @@ -767,6 +791,12 @@ int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job) | |||
| 767 | } | 791 | } |
| 768 | } | 792 | } |
| 769 | 793 | ||
| 794 | int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job) | ||
| 795 | { | ||
| 796 | /* hardware tracks timeout, reset bsg timeout to not interfere */ | ||
| 797 | return -EAGAIN; | ||
| 798 | } | ||
| 799 | |||
| 770 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) | 800 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) |
| 771 | { | 801 | { |
| 772 | struct zfcp_fc_wka_ports *wka_ports; | 802 | struct zfcp_fc_wka_ports *wka_ports; |
diff --git a/drivers/s390/scsi/zfcp_fc.h b/drivers/s390/scsi/zfcp_fc.h index cb2a3669a384..0747b087390d 100644 --- a/drivers/s390/scsi/zfcp_fc.h +++ b/drivers/s390/scsi/zfcp_fc.h | |||
| @@ -27,6 +27,8 @@ | |||
| 27 | #define ZFCP_FC_GPN_FT_MAX_ENT (ZFCP_FC_GPN_FT_NUM_BUFS * \ | 27 | #define ZFCP_FC_GPN_FT_MAX_ENT (ZFCP_FC_GPN_FT_NUM_BUFS * \ |
| 28 | (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) | 28 | (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) |
| 29 | 29 | ||
| 30 | #define ZFCP_FC_CTELS_TMO (2 * FC_DEF_R_A_TOV / 1000) | ||
| 31 | |||
| 30 | /** | 32 | /** |
| 31 | * struct zfcp_fc_gid_pn_req - container for ct header plus gid_pn request | 33 | * struct zfcp_fc_gid_pn_req - container for ct header plus gid_pn request |
| 32 | * @ct_hdr: FC GS common transport header | 34 | * @ct_hdr: FC GS common transport header |
diff --git a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c index 482dcd97aa5d..e8fb4d9baa8b 100644 --- a/drivers/s390/scsi/zfcp_fsf.c +++ b/drivers/s390/scsi/zfcp_fsf.c | |||
| @@ -1068,20 +1068,20 @@ static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req, | |||
| 1068 | static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req, | 1068 | static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req, |
| 1069 | struct scatterlist *sg_req, | 1069 | struct scatterlist *sg_req, |
| 1070 | struct scatterlist *sg_resp, | 1070 | struct scatterlist *sg_resp, |
| 1071 | int max_sbals) | 1071 | int max_sbals, unsigned int timeout) |
| 1072 | { | 1072 | { |
| 1073 | int ret; | 1073 | int ret; |
| 1074 | unsigned int fcp_chan_timeout; | ||
| 1075 | 1074 | ||
| 1076 | ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp, max_sbals); | 1075 | ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp, max_sbals); |
| 1077 | if (ret) | 1076 | if (ret) |
| 1078 | return ret; | 1077 | return ret; |
| 1079 | 1078 | ||
| 1080 | /* common settings for ct/gs and els requests */ | 1079 | /* common settings for ct/gs and els requests */ |
| 1081 | fcp_chan_timeout = 2 * FC_DEF_R_A_TOV / 1000; | 1080 | if (timeout > 255) |
| 1081 | timeout = 255; /* max value accepted by hardware */ | ||
| 1082 | req->qtcb->bottom.support.service_class = FSF_CLASS_3; | 1082 | req->qtcb->bottom.support.service_class = FSF_CLASS_3; |
| 1083 | req->qtcb->bottom.support.timeout = fcp_chan_timeout; | 1083 | req->qtcb->bottom.support.timeout = timeout; |
| 1084 | zfcp_fsf_start_timer(req, (fcp_chan_timeout + 10) * HZ); | 1084 | zfcp_fsf_start_timer(req, (timeout + 10) * HZ); |
| 1085 | 1085 | ||
| 1086 | return 0; | 1086 | return 0; |
| 1087 | } | 1087 | } |
| @@ -1092,7 +1092,8 @@ static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req, | |||
| 1092 | * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req | 1092 | * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req |
| 1093 | */ | 1093 | */ |
| 1094 | int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port, | 1094 | int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port, |
| 1095 | struct zfcp_fsf_ct_els *ct, mempool_t *pool) | 1095 | struct zfcp_fsf_ct_els *ct, mempool_t *pool, |
| 1096 | unsigned int timeout) | ||
| 1096 | { | 1097 | { |
| 1097 | struct zfcp_qdio *qdio = wka_port->adapter->qdio; | 1098 | struct zfcp_qdio *qdio = wka_port->adapter->qdio; |
| 1098 | struct zfcp_fsf_req *req; | 1099 | struct zfcp_fsf_req *req; |
| @@ -1111,7 +1112,7 @@ int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port, | |||
| 1111 | 1112 | ||
| 1112 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; | 1113 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
| 1113 | ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, | 1114 | ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, |
| 1114 | FSF_MAX_SBALS_PER_REQ); | 1115 | FSF_MAX_SBALS_PER_REQ, timeout); |
| 1115 | if (ret) | 1116 | if (ret) |
| 1116 | goto failed_send; | 1117 | goto failed_send; |
| 1117 | 1118 | ||
| @@ -1188,7 +1189,7 @@ skip_fsfstatus: | |||
| 1188 | * @els: pointer to struct zfcp_send_els with data for the command | 1189 | * @els: pointer to struct zfcp_send_els with data for the command |
| 1189 | */ | 1190 | */ |
| 1190 | int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id, | 1191 | int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id, |
| 1191 | struct zfcp_fsf_ct_els *els) | 1192 | struct zfcp_fsf_ct_els *els, unsigned int timeout) |
| 1192 | { | 1193 | { |
| 1193 | struct zfcp_fsf_req *req; | 1194 | struct zfcp_fsf_req *req; |
| 1194 | struct zfcp_qdio *qdio = adapter->qdio; | 1195 | struct zfcp_qdio *qdio = adapter->qdio; |
| @@ -1206,7 +1207,7 @@ int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id, | |||
| 1206 | } | 1207 | } |
| 1207 | 1208 | ||
| 1208 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; | 1209 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
| 1209 | ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, 2); | 1210 | ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, 2, timeout); |
| 1210 | 1211 | ||
| 1211 | if (ret) | 1212 | if (ret) |
| 1212 | goto failed_send; | 1213 | goto failed_send; |
diff --git a/drivers/s390/scsi/zfcp_scsi.c b/drivers/s390/scsi/zfcp_scsi.c index 771cc536a989..8e6fc68d6bd4 100644 --- a/drivers/s390/scsi/zfcp_scsi.c +++ b/drivers/s390/scsi/zfcp_scsi.c | |||
| @@ -652,6 +652,7 @@ struct fc_function_template zfcp_transport_functions = { | |||
| 652 | .show_host_port_state = 1, | 652 | .show_host_port_state = 1, |
| 653 | .show_host_active_fc4s = 1, | 653 | .show_host_active_fc4s = 1, |
| 654 | .bsg_request = zfcp_fc_exec_bsg_job, | 654 | .bsg_request = zfcp_fc_exec_bsg_job, |
| 655 | .bsg_timeout = zfcp_fc_timeout_bsg_job, | ||
| 655 | /* no functions registered for following dynamic attributes but | 656 | /* no functions registered for following dynamic attributes but |
| 656 | directly set by LLDD */ | 657 | directly set by LLDD */ |
| 657 | .show_host_port_type = 1, | 658 | .show_host_port_type = 1, |
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c index 2a889853a106..7e26ebc26661 100644 --- a/drivers/scsi/aacraid/aachba.c +++ b/drivers/scsi/aacraid/aachba.c | |||
| @@ -293,7 +293,10 @@ int aac_get_config_status(struct aac_dev *dev, int commit_flag) | |||
| 293 | status = -EINVAL; | 293 | status = -EINVAL; |
| 294 | } | 294 | } |
| 295 | } | 295 | } |
| 296 | aac_fib_complete(fibptr); | 296 | /* Do not set XferState to zero unless receives a response from F/W */ |
| 297 | if (status >= 0) | ||
| 298 | aac_fib_complete(fibptr); | ||
| 299 | |||
| 297 | /* Send a CT_COMMIT_CONFIG to enable discovery of devices */ | 300 | /* Send a CT_COMMIT_CONFIG to enable discovery of devices */ |
| 298 | if (status >= 0) { | 301 | if (status >= 0) { |
| 299 | if ((aac_commit == 1) || commit_flag) { | 302 | if ((aac_commit == 1) || commit_flag) { |
| @@ -310,13 +313,18 @@ int aac_get_config_status(struct aac_dev *dev, int commit_flag) | |||
| 310 | FsaNormal, | 313 | FsaNormal, |
| 311 | 1, 1, | 314 | 1, 1, |
| 312 | NULL, NULL); | 315 | NULL, NULL); |
| 313 | aac_fib_complete(fibptr); | 316 | /* Do not set XferState to zero unless |
| 317 | * receives a response from F/W */ | ||
| 318 | if (status >= 0) | ||
| 319 | aac_fib_complete(fibptr); | ||
| 314 | } else if (aac_commit == 0) { | 320 | } else if (aac_commit == 0) { |
| 315 | printk(KERN_WARNING | 321 | printk(KERN_WARNING |
| 316 | "aac_get_config_status: Foreign device configurations are being ignored\n"); | 322 | "aac_get_config_status: Foreign device configurations are being ignored\n"); |
| 317 | } | 323 | } |
| 318 | } | 324 | } |
| 319 | aac_fib_free(fibptr); | 325 | /* FIB should be freed only after getting the response from the F/W */ |
| 326 | if (status != -ERESTARTSYS) | ||
| 327 | aac_fib_free(fibptr); | ||
| 320 | return status; | 328 | return status; |
| 321 | } | 329 | } |
| 322 | 330 | ||
| @@ -355,7 +363,9 @@ int aac_get_containers(struct aac_dev *dev) | |||
| 355 | maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries); | 363 | maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries); |
| 356 | aac_fib_complete(fibptr); | 364 | aac_fib_complete(fibptr); |
| 357 | } | 365 | } |
| 358 | aac_fib_free(fibptr); | 366 | /* FIB should be freed only after getting the response from the F/W */ |
| 367 | if (status != -ERESTARTSYS) | ||
| 368 | aac_fib_free(fibptr); | ||
| 359 | 369 | ||
| 360 | if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS) | 370 | if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS) |
| 361 | maximum_num_containers = MAXIMUM_NUM_CONTAINERS; | 371 | maximum_num_containers = MAXIMUM_NUM_CONTAINERS; |
| @@ -1245,8 +1255,12 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
| 1245 | NULL); | 1255 | NULL); |
| 1246 | 1256 | ||
| 1247 | if (rcode < 0) { | 1257 | if (rcode < 0) { |
| 1248 | aac_fib_complete(fibptr); | 1258 | /* FIB should be freed only after |
| 1249 | aac_fib_free(fibptr); | 1259 | * getting the response from the F/W */ |
| 1260 | if (rcode != -ERESTARTSYS) { | ||
| 1261 | aac_fib_complete(fibptr); | ||
| 1262 | aac_fib_free(fibptr); | ||
| 1263 | } | ||
| 1250 | return rcode; | 1264 | return rcode; |
| 1251 | } | 1265 | } |
| 1252 | memcpy(&dev->adapter_info, info, sizeof(*info)); | 1266 | memcpy(&dev->adapter_info, info, sizeof(*info)); |
| @@ -1270,6 +1284,12 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
| 1270 | 1284 | ||
| 1271 | if (rcode >= 0) | 1285 | if (rcode >= 0) |
| 1272 | memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo)); | 1286 | memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo)); |
| 1287 | if (rcode == -ERESTARTSYS) { | ||
| 1288 | fibptr = aac_fib_alloc(dev); | ||
| 1289 | if (!fibptr) | ||
| 1290 | return -ENOMEM; | ||
| 1291 | } | ||
| 1292 | |||
| 1273 | } | 1293 | } |
| 1274 | 1294 | ||
| 1275 | 1295 | ||
| @@ -1470,9 +1490,11 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
| 1470 | (dev->scsi_host_ptr->sg_tablesize * 8) + 112; | 1490 | (dev->scsi_host_ptr->sg_tablesize * 8) + 112; |
| 1471 | } | 1491 | } |
| 1472 | } | 1492 | } |
| 1473 | 1493 | /* FIB should be freed only after getting the response from the F/W */ | |
| 1474 | aac_fib_complete(fibptr); | 1494 | if (rcode != -ERESTARTSYS) { |
| 1475 | aac_fib_free(fibptr); | 1495 | aac_fib_complete(fibptr); |
| 1496 | aac_fib_free(fibptr); | ||
| 1497 | } | ||
| 1476 | 1498 | ||
| 1477 | return rcode; | 1499 | return rcode; |
| 1478 | } | 1500 | } |
| @@ -1633,6 +1655,7 @@ static int aac_read(struct scsi_cmnd * scsicmd) | |||
| 1633 | * Alocate and initialize a Fib | 1655 | * Alocate and initialize a Fib |
| 1634 | */ | 1656 | */ |
| 1635 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { | 1657 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { |
| 1658 | printk(KERN_WARNING "aac_read: fib allocation failed\n"); | ||
| 1636 | return -1; | 1659 | return -1; |
| 1637 | } | 1660 | } |
| 1638 | 1661 | ||
| @@ -1712,9 +1735,14 @@ static int aac_write(struct scsi_cmnd * scsicmd) | |||
| 1712 | * Allocate and initialize a Fib then setup a BlockWrite command | 1735 | * Allocate and initialize a Fib then setup a BlockWrite command |
| 1713 | */ | 1736 | */ |
| 1714 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { | 1737 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { |
| 1715 | scsicmd->result = DID_ERROR << 16; | 1738 | /* FIB temporarily unavailable,not catastrophic failure */ |
| 1716 | scsicmd->scsi_done(scsicmd); | 1739 | |
| 1717 | return 0; | 1740 | /* scsicmd->result = DID_ERROR << 16; |
| 1741 | * scsicmd->scsi_done(scsicmd); | ||
| 1742 | * return 0; | ||
| 1743 | */ | ||
| 1744 | printk(KERN_WARNING "aac_write: fib allocation failed\n"); | ||
| 1745 | return -1; | ||
| 1718 | } | 1746 | } |
| 1719 | 1747 | ||
| 1720 | status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua); | 1748 | status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua); |
diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 83986ed86556..619c02d9c862 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scsi/aacraid/aacraid.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | *----------------------------------------------------------------------------*/ | 12 | *----------------------------------------------------------------------------*/ |
| 13 | 13 | ||
| 14 | #ifndef AAC_DRIVER_BUILD | 14 | #ifndef AAC_DRIVER_BUILD |
| 15 | # define AAC_DRIVER_BUILD 2461 | 15 | # define AAC_DRIVER_BUILD 24702 |
| 16 | # define AAC_DRIVER_BRANCH "-ms" | 16 | # define AAC_DRIVER_BRANCH "-ms" |
| 17 | #endif | 17 | #endif |
| 18 | #define MAXIMUM_NUM_CONTAINERS 32 | 18 | #define MAXIMUM_NUM_CONTAINERS 32 |
| @@ -1036,6 +1036,9 @@ struct aac_dev | |||
| 1036 | u8 printf_enabled; | 1036 | u8 printf_enabled; |
| 1037 | u8 in_reset; | 1037 | u8 in_reset; |
| 1038 | u8 msi; | 1038 | u8 msi; |
| 1039 | int management_fib_count; | ||
| 1040 | spinlock_t manage_lock; | ||
| 1041 | |||
| 1039 | }; | 1042 | }; |
| 1040 | 1043 | ||
| 1041 | #define aac_adapter_interrupt(dev) \ | 1044 | #define aac_adapter_interrupt(dev) \ |
diff --git a/drivers/scsi/aacraid/commctrl.c b/drivers/scsi/aacraid/commctrl.c index 0391d759dfdb..9c0c91178538 100644 --- a/drivers/scsi/aacraid/commctrl.c +++ b/drivers/scsi/aacraid/commctrl.c | |||
| @@ -153,7 +153,7 @@ cleanup: | |||
| 153 | fibptr->hw_fib_pa = hw_fib_pa; | 153 | fibptr->hw_fib_pa = hw_fib_pa; |
| 154 | fibptr->hw_fib_va = hw_fib; | 154 | fibptr->hw_fib_va = hw_fib; |
| 155 | } | 155 | } |
| 156 | if (retval != -EINTR) | 156 | if (retval != -ERESTARTSYS) |
| 157 | aac_fib_free(fibptr); | 157 | aac_fib_free(fibptr); |
| 158 | return retval; | 158 | return retval; |
| 159 | } | 159 | } |
| @@ -322,7 +322,7 @@ return_fib: | |||
| 322 | } | 322 | } |
| 323 | if (f.wait) { | 323 | if (f.wait) { |
| 324 | if(down_interruptible(&fibctx->wait_sem) < 0) { | 324 | if(down_interruptible(&fibctx->wait_sem) < 0) { |
| 325 | status = -EINTR; | 325 | status = -ERESTARTSYS; |
| 326 | } else { | 326 | } else { |
| 327 | /* Lock again and retry */ | 327 | /* Lock again and retry */ |
| 328 | spin_lock_irqsave(&dev->fib_lock, flags); | 328 | spin_lock_irqsave(&dev->fib_lock, flags); |
| @@ -593,10 +593,10 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
| 593 | u64 addr; | 593 | u64 addr; |
| 594 | void* p; | 594 | void* p; |
| 595 | if (upsg->sg[i].count > | 595 | if (upsg->sg[i].count > |
| 596 | (dev->adapter_info.options & | 596 | ((dev->adapter_info.options & |
| 597 | AAC_OPT_NEW_COMM) ? | 597 | AAC_OPT_NEW_COMM) ? |
| 598 | (dev->scsi_host_ptr->max_sectors << 9) : | 598 | (dev->scsi_host_ptr->max_sectors << 9) : |
| 599 | 65536) { | 599 | 65536)) { |
| 600 | rcode = -EINVAL; | 600 | rcode = -EINVAL; |
| 601 | goto cleanup; | 601 | goto cleanup; |
| 602 | } | 602 | } |
| @@ -645,10 +645,10 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
| 645 | u64 addr; | 645 | u64 addr; |
| 646 | void* p; | 646 | void* p; |
| 647 | if (usg->sg[i].count > | 647 | if (usg->sg[i].count > |
| 648 | (dev->adapter_info.options & | 648 | ((dev->adapter_info.options & |
| 649 | AAC_OPT_NEW_COMM) ? | 649 | AAC_OPT_NEW_COMM) ? |
| 650 | (dev->scsi_host_ptr->max_sectors << 9) : | 650 | (dev->scsi_host_ptr->max_sectors << 9) : |
| 651 | 65536) { | 651 | 65536)) { |
| 652 | rcode = -EINVAL; | 652 | rcode = -EINVAL; |
| 653 | goto cleanup; | 653 | goto cleanup; |
| 654 | } | 654 | } |
| @@ -695,10 +695,10 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
| 695 | uintptr_t addr; | 695 | uintptr_t addr; |
| 696 | void* p; | 696 | void* p; |
| 697 | if (usg->sg[i].count > | 697 | if (usg->sg[i].count > |
| 698 | (dev->adapter_info.options & | 698 | ((dev->adapter_info.options & |
| 699 | AAC_OPT_NEW_COMM) ? | 699 | AAC_OPT_NEW_COMM) ? |
| 700 | (dev->scsi_host_ptr->max_sectors << 9) : | 700 | (dev->scsi_host_ptr->max_sectors << 9) : |
| 701 | 65536) { | 701 | 65536)) { |
| 702 | rcode = -EINVAL; | 702 | rcode = -EINVAL; |
| 703 | goto cleanup; | 703 | goto cleanup; |
| 704 | } | 704 | } |
| @@ -734,10 +734,10 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
| 734 | dma_addr_t addr; | 734 | dma_addr_t addr; |
| 735 | void* p; | 735 | void* p; |
| 736 | if (upsg->sg[i].count > | 736 | if (upsg->sg[i].count > |
| 737 | (dev->adapter_info.options & | 737 | ((dev->adapter_info.options & |
| 738 | AAC_OPT_NEW_COMM) ? | 738 | AAC_OPT_NEW_COMM) ? |
| 739 | (dev->scsi_host_ptr->max_sectors << 9) : | 739 | (dev->scsi_host_ptr->max_sectors << 9) : |
| 740 | 65536) { | 740 | 65536)) { |
| 741 | rcode = -EINVAL; | 741 | rcode = -EINVAL; |
| 742 | goto cleanup; | 742 | goto cleanup; |
| 743 | } | 743 | } |
| @@ -772,8 +772,8 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
| 772 | psg->count = cpu_to_le32(sg_indx+1); | 772 | psg->count = cpu_to_le32(sg_indx+1); |
| 773 | status = aac_fib_send(ScsiPortCommand, srbfib, actual_fibsize, FsaNormal, 1, 1, NULL, NULL); | 773 | status = aac_fib_send(ScsiPortCommand, srbfib, actual_fibsize, FsaNormal, 1, 1, NULL, NULL); |
| 774 | } | 774 | } |
| 775 | if (status == -EINTR) { | 775 | if (status == -ERESTARTSYS) { |
| 776 | rcode = -EINTR; | 776 | rcode = -ERESTARTSYS; |
| 777 | goto cleanup; | 777 | goto cleanup; |
| 778 | } | 778 | } |
| 779 | 779 | ||
| @@ -810,7 +810,7 @@ cleanup: | |||
| 810 | for(i=0; i <= sg_indx; i++){ | 810 | for(i=0; i <= sg_indx; i++){ |
| 811 | kfree(sg_list[i]); | 811 | kfree(sg_list[i]); |
| 812 | } | 812 | } |
| 813 | if (rcode != -EINTR) { | 813 | if (rcode != -ERESTARTSYS) { |
| 814 | aac_fib_complete(srbfib); | 814 | aac_fib_complete(srbfib); |
| 815 | aac_fib_free(srbfib); | 815 | aac_fib_free(srbfib); |
| 816 | } | 816 | } |
| @@ -848,7 +848,7 @@ int aac_do_ioctl(struct aac_dev * dev, int cmd, void __user *arg) | |||
| 848 | */ | 848 | */ |
| 849 | 849 | ||
| 850 | status = aac_dev_ioctl(dev, cmd, arg); | 850 | status = aac_dev_ioctl(dev, cmd, arg); |
| 851 | if(status != -ENOTTY) | 851 | if (status != -ENOTTY) |
| 852 | return status; | 852 | return status; |
| 853 | 853 | ||
| 854 | switch (cmd) { | 854 | switch (cmd) { |
diff --git a/drivers/scsi/aacraid/comminit.c b/drivers/scsi/aacraid/comminit.c index 666d5151d628..a7261486ccd4 100644 --- a/drivers/scsi/aacraid/comminit.c +++ b/drivers/scsi/aacraid/comminit.c | |||
| @@ -194,7 +194,9 @@ int aac_send_shutdown(struct aac_dev * dev) | |||
| 194 | 194 | ||
| 195 | if (status >= 0) | 195 | if (status >= 0) |
| 196 | aac_fib_complete(fibctx); | 196 | aac_fib_complete(fibctx); |
| 197 | aac_fib_free(fibctx); | 197 | /* FIB should be freed only after getting the response from the F/W */ |
| 198 | if (status != -ERESTARTSYS) | ||
| 199 | aac_fib_free(fibctx); | ||
| 198 | return status; | 200 | return status; |
| 199 | } | 201 | } |
| 200 | 202 | ||
| @@ -304,6 +306,8 @@ struct aac_dev *aac_init_adapter(struct aac_dev *dev) | |||
| 304 | /* | 306 | /* |
| 305 | * Check the preferred comm settings, defaults from template. | 307 | * Check the preferred comm settings, defaults from template. |
| 306 | */ | 308 | */ |
| 309 | dev->management_fib_count = 0; | ||
| 310 | spin_lock_init(&dev->manage_lock); | ||
| 307 | dev->max_fib_size = sizeof(struct hw_fib); | 311 | dev->max_fib_size = sizeof(struct hw_fib); |
| 308 | dev->sg_tablesize = host->sg_tablesize = (dev->max_fib_size | 312 | dev->sg_tablesize = host->sg_tablesize = (dev->max_fib_size |
| 309 | - sizeof(struct aac_fibhdr) | 313 | - sizeof(struct aac_fibhdr) |
diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c index 956261f25181..94d2954d79ae 100644 --- a/drivers/scsi/aacraid/commsup.c +++ b/drivers/scsi/aacraid/commsup.c | |||
| @@ -189,7 +189,14 @@ struct fib *aac_fib_alloc(struct aac_dev *dev) | |||
| 189 | 189 | ||
| 190 | void aac_fib_free(struct fib *fibptr) | 190 | void aac_fib_free(struct fib *fibptr) |
| 191 | { | 191 | { |
| 192 | unsigned long flags; | 192 | unsigned long flags, flagsv; |
| 193 | |||
| 194 | spin_lock_irqsave(&fibptr->event_lock, flagsv); | ||
| 195 | if (fibptr->done == 2) { | ||
| 196 | spin_unlock_irqrestore(&fibptr->event_lock, flagsv); | ||
| 197 | return; | ||
| 198 | } | ||
| 199 | spin_unlock_irqrestore(&fibptr->event_lock, flagsv); | ||
| 193 | 200 | ||
| 194 | spin_lock_irqsave(&fibptr->dev->fib_lock, flags); | 201 | spin_lock_irqsave(&fibptr->dev->fib_lock, flags); |
| 195 | if (unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)) | 202 | if (unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)) |
| @@ -390,6 +397,8 @@ int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, | |||
| 390 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 397 | struct hw_fib * hw_fib = fibptr->hw_fib_va; |
| 391 | unsigned long flags = 0; | 398 | unsigned long flags = 0; |
| 392 | unsigned long qflags; | 399 | unsigned long qflags; |
| 400 | unsigned long mflags = 0; | ||
| 401 | |||
| 393 | 402 | ||
| 394 | if (!(hw_fib->header.XferState & cpu_to_le32(HostOwned))) | 403 | if (!(hw_fib->header.XferState & cpu_to_le32(HostOwned))) |
| 395 | return -EBUSY; | 404 | return -EBUSY; |
| @@ -471,9 +480,31 @@ int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, | |||
| 471 | if (!dev->queues) | 480 | if (!dev->queues) |
| 472 | return -EBUSY; | 481 | return -EBUSY; |
| 473 | 482 | ||
| 474 | if(wait) | 483 | if (wait) { |
| 484 | |||
| 485 | spin_lock_irqsave(&dev->manage_lock, mflags); | ||
| 486 | if (dev->management_fib_count >= AAC_NUM_MGT_FIB) { | ||
| 487 | printk(KERN_INFO "No management Fibs Available:%d\n", | ||
| 488 | dev->management_fib_count); | ||
| 489 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | ||
| 490 | return -EBUSY; | ||
| 491 | } | ||
| 492 | dev->management_fib_count++; | ||
| 493 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | ||
| 475 | spin_lock_irqsave(&fibptr->event_lock, flags); | 494 | spin_lock_irqsave(&fibptr->event_lock, flags); |
| 476 | aac_adapter_deliver(fibptr); | 495 | } |
| 496 | |||
| 497 | if (aac_adapter_deliver(fibptr) != 0) { | ||
| 498 | printk(KERN_ERR "aac_fib_send: returned -EBUSY\n"); | ||
| 499 | if (wait) { | ||
| 500 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | ||
| 501 | spin_lock_irqsave(&dev->manage_lock, mflags); | ||
| 502 | dev->management_fib_count--; | ||
| 503 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | ||
| 504 | } | ||
| 505 | return -EBUSY; | ||
| 506 | } | ||
| 507 | |||
| 477 | 508 | ||
| 478 | /* | 509 | /* |
| 479 | * If the caller wanted us to wait for response wait now. | 510 | * If the caller wanted us to wait for response wait now. |
| @@ -516,14 +547,15 @@ int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, | |||
| 516 | udelay(5); | 547 | udelay(5); |
| 517 | } | 548 | } |
| 518 | } else if (down_interruptible(&fibptr->event_wait)) { | 549 | } else if (down_interruptible(&fibptr->event_wait)) { |
| 519 | fibptr->done = 2; | 550 | /* Do nothing ... satisfy |
| 520 | up(&fibptr->event_wait); | 551 | * down_interruptible must_check */ |
| 521 | } | 552 | } |
| 553 | |||
| 522 | spin_lock_irqsave(&fibptr->event_lock, flags); | 554 | spin_lock_irqsave(&fibptr->event_lock, flags); |
| 523 | if ((fibptr->done == 0) || (fibptr->done == 2)) { | 555 | if (fibptr->done == 0) { |
| 524 | fibptr->done = 2; /* Tell interrupt we aborted */ | 556 | fibptr->done = 2; /* Tell interrupt we aborted */ |
| 525 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 557 | spin_unlock_irqrestore(&fibptr->event_lock, flags); |
| 526 | return -EINTR; | 558 | return -ERESTARTSYS; |
| 527 | } | 559 | } |
| 528 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 560 | spin_unlock_irqrestore(&fibptr->event_lock, flags); |
| 529 | BUG_ON(fibptr->done == 0); | 561 | BUG_ON(fibptr->done == 0); |
| @@ -689,6 +721,7 @@ int aac_fib_adapter_complete(struct fib *fibptr, unsigned short size) | |||
| 689 | 721 | ||
| 690 | int aac_fib_complete(struct fib *fibptr) | 722 | int aac_fib_complete(struct fib *fibptr) |
| 691 | { | 723 | { |
| 724 | unsigned long flags; | ||
| 692 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 725 | struct hw_fib * hw_fib = fibptr->hw_fib_va; |
| 693 | 726 | ||
| 694 | /* | 727 | /* |
| @@ -709,6 +742,13 @@ int aac_fib_complete(struct fib *fibptr) | |||
| 709 | * command is complete that we had sent to the adapter and this | 742 | * command is complete that we had sent to the adapter and this |
| 710 | * cdb could be reused. | 743 | * cdb could be reused. |
| 711 | */ | 744 | */ |
| 745 | spin_lock_irqsave(&fibptr->event_lock, flags); | ||
| 746 | if (fibptr->done == 2) { | ||
| 747 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | ||
| 748 | return 0; | ||
| 749 | } | ||
| 750 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | ||
| 751 | |||
| 712 | if((hw_fib->header.XferState & cpu_to_le32(SentFromHost)) && | 752 | if((hw_fib->header.XferState & cpu_to_le32(SentFromHost)) && |
| 713 | (hw_fib->header.XferState & cpu_to_le32(AdapterProcessed))) | 753 | (hw_fib->header.XferState & cpu_to_le32(AdapterProcessed))) |
| 714 | { | 754 | { |
| @@ -1355,7 +1395,10 @@ int aac_reset_adapter(struct aac_dev * aac, int forced) | |||
| 1355 | 1395 | ||
| 1356 | if (status >= 0) | 1396 | if (status >= 0) |
| 1357 | aac_fib_complete(fibctx); | 1397 | aac_fib_complete(fibctx); |
| 1358 | aac_fib_free(fibctx); | 1398 | /* FIB should be freed only after getting |
| 1399 | * the response from the F/W */ | ||
| 1400 | if (status != -ERESTARTSYS) | ||
| 1401 | aac_fib_free(fibctx); | ||
| 1359 | } | 1402 | } |
| 1360 | } | 1403 | } |
| 1361 | 1404 | ||
| @@ -1759,6 +1802,7 @@ int aac_command_thread(void *data) | |||
| 1759 | struct fib *fibptr; | 1802 | struct fib *fibptr; |
| 1760 | 1803 | ||
| 1761 | if ((fibptr = aac_fib_alloc(dev))) { | 1804 | if ((fibptr = aac_fib_alloc(dev))) { |
| 1805 | int status; | ||
| 1762 | __le32 *info; | 1806 | __le32 *info; |
| 1763 | 1807 | ||
| 1764 | aac_fib_init(fibptr); | 1808 | aac_fib_init(fibptr); |
| @@ -1769,15 +1813,21 @@ int aac_command_thread(void *data) | |||
| 1769 | 1813 | ||
| 1770 | *info = cpu_to_le32(now.tv_sec); | 1814 | *info = cpu_to_le32(now.tv_sec); |
| 1771 | 1815 | ||
| 1772 | (void)aac_fib_send(SendHostTime, | 1816 | status = aac_fib_send(SendHostTime, |
| 1773 | fibptr, | 1817 | fibptr, |
| 1774 | sizeof(*info), | 1818 | sizeof(*info), |
| 1775 | FsaNormal, | 1819 | FsaNormal, |
| 1776 | 1, 1, | 1820 | 1, 1, |
| 1777 | NULL, | 1821 | NULL, |
| 1778 | NULL); | 1822 | NULL); |
| 1779 | aac_fib_complete(fibptr); | 1823 | /* Do not set XferState to zero unless |
| 1780 | aac_fib_free(fibptr); | 1824 | * receives a response from F/W */ |
| 1825 | if (status >= 0) | ||
| 1826 | aac_fib_complete(fibptr); | ||
| 1827 | /* FIB should be freed only after | ||
| 1828 | * getting the response from the F/W */ | ||
| 1829 | if (status != -ERESTARTSYS) | ||
| 1830 | aac_fib_free(fibptr); | ||
| 1781 | } | 1831 | } |
| 1782 | difference = (long)(unsigned)update_interval*HZ; | 1832 | difference = (long)(unsigned)update_interval*HZ; |
| 1783 | } else { | 1833 | } else { |
diff --git a/drivers/scsi/aacraid/dpcsup.c b/drivers/scsi/aacraid/dpcsup.c index abc9ef5d1b10..9c7408fe8c7d 100644 --- a/drivers/scsi/aacraid/dpcsup.c +++ b/drivers/scsi/aacraid/dpcsup.c | |||
| @@ -57,9 +57,9 @@ unsigned int aac_response_normal(struct aac_queue * q) | |||
| 57 | struct hw_fib * hwfib; | 57 | struct hw_fib * hwfib; |
| 58 | struct fib * fib; | 58 | struct fib * fib; |
| 59 | int consumed = 0; | 59 | int consumed = 0; |
| 60 | unsigned long flags; | 60 | unsigned long flags, mflags; |
| 61 | 61 | ||
| 62 | spin_lock_irqsave(q->lock, flags); | 62 | spin_lock_irqsave(q->lock, flags); |
| 63 | /* | 63 | /* |
| 64 | * Keep pulling response QEs off the response queue and waking | 64 | * Keep pulling response QEs off the response queue and waking |
| 65 | * up the waiters until there are no more QEs. We then return | 65 | * up the waiters until there are no more QEs. We then return |
| @@ -125,12 +125,21 @@ unsigned int aac_response_normal(struct aac_queue * q) | |||
| 125 | } else { | 125 | } else { |
| 126 | unsigned long flagv; | 126 | unsigned long flagv; |
| 127 | spin_lock_irqsave(&fib->event_lock, flagv); | 127 | spin_lock_irqsave(&fib->event_lock, flagv); |
| 128 | if (!fib->done) | 128 | if (!fib->done) { |
| 129 | fib->done = 1; | 129 | fib->done = 1; |
| 130 | up(&fib->event_wait); | 130 | up(&fib->event_wait); |
| 131 | } | ||
| 131 | spin_unlock_irqrestore(&fib->event_lock, flagv); | 132 | spin_unlock_irqrestore(&fib->event_lock, flagv); |
| 133 | |||
| 134 | spin_lock_irqsave(&dev->manage_lock, mflags); | ||
| 135 | dev->management_fib_count--; | ||
| 136 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | ||
| 137 | |||
| 132 | FIB_COUNTER_INCREMENT(aac_config.NormalRecved); | 138 | FIB_COUNTER_INCREMENT(aac_config.NormalRecved); |
| 133 | if (fib->done == 2) { | 139 | if (fib->done == 2) { |
| 140 | spin_lock_irqsave(&fib->event_lock, flagv); | ||
| 141 | fib->done = 0; | ||
| 142 | spin_unlock_irqrestore(&fib->event_lock, flagv); | ||
| 134 | aac_fib_complete(fib); | 143 | aac_fib_complete(fib); |
| 135 | aac_fib_free(fib); | 144 | aac_fib_free(fib); |
| 136 | } | 145 | } |
| @@ -232,6 +241,7 @@ unsigned int aac_command_normal(struct aac_queue *q) | |||
| 232 | 241 | ||
| 233 | unsigned int aac_intr_normal(struct aac_dev * dev, u32 index) | 242 | unsigned int aac_intr_normal(struct aac_dev * dev, u32 index) |
| 234 | { | 243 | { |
| 244 | unsigned long mflags; | ||
| 235 | dprintk((KERN_INFO "aac_intr_normal(%p,%x)\n", dev, index)); | 245 | dprintk((KERN_INFO "aac_intr_normal(%p,%x)\n", dev, index)); |
| 236 | if ((index & 0x00000002L)) { | 246 | if ((index & 0x00000002L)) { |
| 237 | struct hw_fib * hw_fib; | 247 | struct hw_fib * hw_fib; |
| @@ -320,11 +330,25 @@ unsigned int aac_intr_normal(struct aac_dev * dev, u32 index) | |||
| 320 | unsigned long flagv; | 330 | unsigned long flagv; |
| 321 | dprintk((KERN_INFO "event_wait up\n")); | 331 | dprintk((KERN_INFO "event_wait up\n")); |
| 322 | spin_lock_irqsave(&fib->event_lock, flagv); | 332 | spin_lock_irqsave(&fib->event_lock, flagv); |
| 323 | if (!fib->done) | 333 | if (!fib->done) { |
| 324 | fib->done = 1; | 334 | fib->done = 1; |
| 325 | up(&fib->event_wait); | 335 | up(&fib->event_wait); |
| 336 | } | ||
| 326 | spin_unlock_irqrestore(&fib->event_lock, flagv); | 337 | spin_unlock_irqrestore(&fib->event_lock, flagv); |
| 338 | |||
| 339 | spin_lock_irqsave(&dev->manage_lock, mflags); | ||
| 340 | dev->management_fib_count--; | ||
| 341 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | ||
| 342 | |||
| 327 | FIB_COUNTER_INCREMENT(aac_config.NormalRecved); | 343 | FIB_COUNTER_INCREMENT(aac_config.NormalRecved); |
| 344 | if (fib->done == 2) { | ||
| 345 | spin_lock_irqsave(&fib->event_lock, flagv); | ||
| 346 | fib->done = 0; | ||
| 347 | spin_unlock_irqrestore(&fib->event_lock, flagv); | ||
| 348 | aac_fib_complete(fib); | ||
| 349 | aac_fib_free(fib); | ||
| 350 | } | ||
| 351 | |||
| 328 | } | 352 | } |
| 329 | return 0; | 353 | return 0; |
| 330 | } | 354 | } |
diff --git a/drivers/scsi/aic7xxx/aic79xx_core.c b/drivers/scsi/aic7xxx/aic79xx_core.c index 4d419c155ce9..78971db5b60e 100644 --- a/drivers/scsi/aic7xxx/aic79xx_core.c +++ b/drivers/scsi/aic7xxx/aic79xx_core.c | |||
| @@ -3171,13 +3171,16 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
| 3171 | tinfo->curr.transport_version = 2; | 3171 | tinfo->curr.transport_version = 2; |
| 3172 | tinfo->goal.transport_version = 2; | 3172 | tinfo->goal.transport_version = 2; |
| 3173 | tinfo->goal.ppr_options = 0; | 3173 | tinfo->goal.ppr_options = 0; |
| 3174 | /* | 3174 | if (scb != NULL) { |
| 3175 | * Remove any SCBs in the waiting for selection | 3175 | /* |
| 3176 | * queue that may also be for this target so | 3176 | * Remove any SCBs in the waiting |
| 3177 | * that command ordering is preserved. | 3177 | * for selection queue that may |
| 3178 | */ | 3178 | * also be for this target so that |
| 3179 | ahd_freeze_devq(ahd, scb); | 3179 | * command ordering is preserved. |
| 3180 | ahd_qinfifo_requeue_tail(ahd, scb); | 3180 | */ |
| 3181 | ahd_freeze_devq(ahd, scb); | ||
| 3182 | ahd_qinfifo_requeue_tail(ahd, scb); | ||
| 3183 | } | ||
| 3181 | printerror = 0; | 3184 | printerror = 0; |
| 3182 | } | 3185 | } |
| 3183 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, FALSE) | 3186 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, FALSE) |
| @@ -3194,13 +3197,16 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
| 3194 | MSG_EXT_WDTR_BUS_8_BIT, | 3197 | MSG_EXT_WDTR_BUS_8_BIT, |
| 3195 | AHD_TRANS_CUR|AHD_TRANS_GOAL, | 3198 | AHD_TRANS_CUR|AHD_TRANS_GOAL, |
| 3196 | /*paused*/TRUE); | 3199 | /*paused*/TRUE); |
| 3197 | /* | 3200 | if (scb != NULL) { |
| 3198 | * Remove any SCBs in the waiting for selection | 3201 | /* |
| 3199 | * queue that may also be for this target so that | 3202 | * Remove any SCBs in the waiting for |
| 3200 | * command ordering is preserved. | 3203 | * selection queue that may also be for |
| 3201 | */ | 3204 | * this target so that command ordering |
| 3202 | ahd_freeze_devq(ahd, scb); | 3205 | * is preserved. |
| 3203 | ahd_qinfifo_requeue_tail(ahd, scb); | 3206 | */ |
| 3207 | ahd_freeze_devq(ahd, scb); | ||
| 3208 | ahd_qinfifo_requeue_tail(ahd, scb); | ||
| 3209 | } | ||
| 3204 | printerror = 0; | 3210 | printerror = 0; |
| 3205 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, FALSE) | 3211 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, FALSE) |
| 3206 | && ppr_busfree == 0) { | 3212 | && ppr_busfree == 0) { |
| @@ -3217,13 +3223,16 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
| 3217 | /*ppr_options*/0, | 3223 | /*ppr_options*/0, |
| 3218 | AHD_TRANS_CUR|AHD_TRANS_GOAL, | 3224 | AHD_TRANS_CUR|AHD_TRANS_GOAL, |
| 3219 | /*paused*/TRUE); | 3225 | /*paused*/TRUE); |
| 3220 | /* | 3226 | if (scb != NULL) { |
| 3221 | * Remove any SCBs in the waiting for selection | 3227 | /* |
| 3222 | * queue that may also be for this target so that | 3228 | * Remove any SCBs in the waiting for |
| 3223 | * command ordering is preserved. | 3229 | * selection queue that may also be for |
| 3224 | */ | 3230 | * this target so that command ordering |
| 3225 | ahd_freeze_devq(ahd, scb); | 3231 | * is preserved. |
| 3226 | ahd_qinfifo_requeue_tail(ahd, scb); | 3232 | */ |
| 3233 | ahd_freeze_devq(ahd, scb); | ||
| 3234 | ahd_qinfifo_requeue_tail(ahd, scb); | ||
| 3235 | } | ||
| 3227 | printerror = 0; | 3236 | printerror = 0; |
| 3228 | } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_IDE_BUSFREE) != 0 | 3237 | } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_IDE_BUSFREE) != 0 |
| 3229 | && ahd_sent_msg(ahd, AHDMSG_1B, | 3238 | && ahd_sent_msg(ahd, AHDMSG_1B, |
| @@ -3251,7 +3260,7 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
| 3251 | * the message phases. We check it last in case we | 3260 | * the message phases. We check it last in case we |
| 3252 | * had to send some other message that caused a busfree. | 3261 | * had to send some other message that caused a busfree. |
| 3253 | */ | 3262 | */ |
| 3254 | if (printerror != 0 | 3263 | if (scb != NULL && printerror != 0 |
| 3255 | && (lastphase == P_MESGIN || lastphase == P_MESGOUT) | 3264 | && (lastphase == P_MESGIN || lastphase == P_MESGOUT) |
| 3256 | && ((ahd->msg_flags & MSG_FLAG_EXPECT_PPR_BUSFREE) != 0)) { | 3265 | && ((ahd->msg_flags & MSG_FLAG_EXPECT_PPR_BUSFREE) != 0)) { |
| 3257 | 3266 | ||
diff --git a/drivers/scsi/lpfc/lpfc_hbadisc.c b/drivers/scsi/lpfc/lpfc_hbadisc.c index 2445e399fd60..2445e399fd60 100755..100644 --- a/drivers/scsi/lpfc/lpfc_hbadisc.c +++ b/drivers/scsi/lpfc/lpfc_hbadisc.c | |||
diff --git a/drivers/scsi/lpfc/lpfc_hw4.h b/drivers/scsi/lpfc/lpfc_hw4.h index 8a2a1c5935c6..8a2a1c5935c6 100755..100644 --- a/drivers/scsi/lpfc/lpfc_hw4.h +++ b/drivers/scsi/lpfc/lpfc_hw4.h | |||
diff --git a/drivers/scsi/megaraid/megaraid_sas.c b/drivers/scsi/megaraid/megaraid_sas.c index 99ff99e45bee..708ea3157b60 100644 --- a/drivers/scsi/megaraid/megaraid_sas.c +++ b/drivers/scsi/megaraid/megaraid_sas.c | |||
| @@ -4046,7 +4046,7 @@ megasas_aen_polling(struct work_struct *work) | |||
| 4046 | } | 4046 | } |
| 4047 | 4047 | ||
| 4048 | 4048 | ||
| 4049 | static DRIVER_ATTR(poll_mode_io, S_IRUGO|S_IWUGO, | 4049 | static DRIVER_ATTR(poll_mode_io, S_IRUGO|S_IWUSR, |
| 4050 | megasas_sysfs_show_poll_mode_io, | 4050 | megasas_sysfs_show_poll_mode_io, |
| 4051 | megasas_sysfs_set_poll_mode_io); | 4051 | megasas_sysfs_set_poll_mode_io); |
| 4052 | 4052 | ||
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index 608e675f68c8..1263d9796e89 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h | |||
| @@ -1586,8 +1586,7 @@ typedef struct fc_port { | |||
| 1586 | */ | 1586 | */ |
| 1587 | #define FCF_FABRIC_DEVICE BIT_0 | 1587 | #define FCF_FABRIC_DEVICE BIT_0 |
| 1588 | #define FCF_LOGIN_NEEDED BIT_1 | 1588 | #define FCF_LOGIN_NEEDED BIT_1 |
| 1589 | #define FCF_TAPE_PRESENT BIT_2 | 1589 | #define FCF_FCP2_DEVICE BIT_2 |
| 1590 | #define FCF_FCP2_DEVICE BIT_3 | ||
| 1591 | 1590 | ||
| 1592 | /* No loop ID flag. */ | 1591 | /* No loop ID flag. */ |
| 1593 | #define FC_NO_LOOP_ID 0x1000 | 1592 | #define FC_NO_LOOP_ID 0x1000 |
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index b4a0eac8f96d..3f8e8495b743 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
| @@ -205,7 +205,7 @@ qla2x00_async_login_done(struct scsi_qla_host *vha, fc_port_t *fcport, | |||
| 205 | 205 | ||
| 206 | switch (data[0]) { | 206 | switch (data[0]) { |
| 207 | case MBS_COMMAND_COMPLETE: | 207 | case MBS_COMMAND_COMPLETE: |
| 208 | if (fcport->flags & FCF_TAPE_PRESENT) | 208 | if (fcport->flags & FCF_FCP2_DEVICE) |
| 209 | opts |= BIT_1; | 209 | opts |= BIT_1; |
| 210 | rval = qla2x00_get_port_database(vha, fcport, opts); | 210 | rval = qla2x00_get_port_database(vha, fcport, opts); |
| 211 | if (rval != QLA_SUCCESS) | 211 | if (rval != QLA_SUCCESS) |
| @@ -2726,7 +2726,7 @@ qla2x00_configure_fabric(scsi_qla_host_t *vha) | |||
| 2726 | 2726 | ||
| 2727 | /* | 2727 | /* |
| 2728 | * Logout all previous fabric devices marked lost, except | 2728 | * Logout all previous fabric devices marked lost, except |
| 2729 | * tape devices. | 2729 | * FCP2 devices. |
| 2730 | */ | 2730 | */ |
| 2731 | list_for_each_entry(fcport, &vha->vp_fcports, list) { | 2731 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 2732 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) | 2732 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| @@ -2739,7 +2739,7 @@ qla2x00_configure_fabric(scsi_qla_host_t *vha) | |||
| 2739 | qla2x00_mark_device_lost(vha, fcport, | 2739 | qla2x00_mark_device_lost(vha, fcport, |
| 2740 | ql2xplogiabsentdevice, 0); | 2740 | ql2xplogiabsentdevice, 0); |
| 2741 | if (fcport->loop_id != FC_NO_LOOP_ID && | 2741 | if (fcport->loop_id != FC_NO_LOOP_ID && |
| 2742 | (fcport->flags & FCF_TAPE_PRESENT) == 0 && | 2742 | (fcport->flags & FCF_FCP2_DEVICE) == 0 && |
| 2743 | fcport->port_type != FCT_INITIATOR && | 2743 | fcport->port_type != FCT_INITIATOR && |
| 2744 | fcport->port_type != FCT_BROADCAST) { | 2744 | fcport->port_type != FCT_BROADCAST) { |
| 2745 | ha->isp_ops->fabric_logout(vha, | 2745 | ha->isp_ops->fabric_logout(vha, |
| @@ -3018,7 +3018,7 @@ qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha, | |||
| 3018 | fcport->d_id.b24 = new_fcport->d_id.b24; | 3018 | fcport->d_id.b24 = new_fcport->d_id.b24; |
| 3019 | fcport->flags |= FCF_LOGIN_NEEDED; | 3019 | fcport->flags |= FCF_LOGIN_NEEDED; |
| 3020 | if (fcport->loop_id != FC_NO_LOOP_ID && | 3020 | if (fcport->loop_id != FC_NO_LOOP_ID && |
| 3021 | (fcport->flags & FCF_TAPE_PRESENT) == 0 && | 3021 | (fcport->flags & FCF_FCP2_DEVICE) == 0 && |
| 3022 | fcport->port_type != FCT_INITIATOR && | 3022 | fcport->port_type != FCT_INITIATOR && |
| 3023 | fcport->port_type != FCT_BROADCAST) { | 3023 | fcport->port_type != FCT_BROADCAST) { |
| 3024 | ha->isp_ops->fabric_logout(vha, fcport->loop_id, | 3024 | ha->isp_ops->fabric_logout(vha, fcport->loop_id, |
| @@ -3272,9 +3272,9 @@ qla2x00_fabric_dev_login(scsi_qla_host_t *vha, fc_port_t *fcport, | |||
| 3272 | 3272 | ||
| 3273 | rval = qla2x00_fabric_login(vha, fcport, next_loopid); | 3273 | rval = qla2x00_fabric_login(vha, fcport, next_loopid); |
| 3274 | if (rval == QLA_SUCCESS) { | 3274 | if (rval == QLA_SUCCESS) { |
| 3275 | /* Send an ADISC to tape devices.*/ | 3275 | /* Send an ADISC to FCP2 devices.*/ |
| 3276 | opts = 0; | 3276 | opts = 0; |
| 3277 | if (fcport->flags & FCF_TAPE_PRESENT) | 3277 | if (fcport->flags & FCF_FCP2_DEVICE) |
| 3278 | opts |= BIT_1; | 3278 | opts |= BIT_1; |
| 3279 | rval = qla2x00_get_port_database(vha, fcport, opts); | 3279 | rval = qla2x00_get_port_database(vha, fcport, opts); |
| 3280 | if (rval != QLA_SUCCESS) { | 3280 | if (rval != QLA_SUCCESS) { |
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 209f50e788a1..8529eb1f3cd4 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
| @@ -1188,7 +1188,6 @@ qla2xxx_slave_configure(struct scsi_device *sdev) | |||
| 1188 | scsi_qla_host_t *vha = shost_priv(sdev->host); | 1188 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
| 1189 | struct qla_hw_data *ha = vha->hw; | 1189 | struct qla_hw_data *ha = vha->hw; |
| 1190 | struct fc_rport *rport = starget_to_rport(sdev->sdev_target); | 1190 | struct fc_rport *rport = starget_to_rport(sdev->sdev_target); |
| 1191 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; | ||
| 1192 | struct req_que *req = vha->req; | 1191 | struct req_que *req = vha->req; |
| 1193 | 1192 | ||
| 1194 | if (sdev->tagged_supported) | 1193 | if (sdev->tagged_supported) |
| @@ -1197,8 +1196,6 @@ qla2xxx_slave_configure(struct scsi_device *sdev) | |||
| 1197 | scsi_deactivate_tcq(sdev, req->max_q_depth); | 1196 | scsi_deactivate_tcq(sdev, req->max_q_depth); |
| 1198 | 1197 | ||
| 1199 | rport->dev_loss_tmo = ha->port_down_retry_count; | 1198 | rport->dev_loss_tmo = ha->port_down_retry_count; |
| 1200 | if (sdev->type == TYPE_TAPE) | ||
| 1201 | fcport->flags |= FCF_TAPE_PRESENT; | ||
| 1202 | 1199 | ||
| 1203 | return 0; | 1200 | return 0; |
| 1204 | } | 1201 | } |
| @@ -2805,7 +2802,7 @@ void qla2x00_relogin(struct scsi_qla_host *vha) | |||
| 2805 | 2802 | ||
| 2806 | fcport->login_retry--; | 2803 | fcport->login_retry--; |
| 2807 | if (fcport->flags & FCF_FABRIC_DEVICE) { | 2804 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
| 2808 | if (fcport->flags & FCF_TAPE_PRESENT) | 2805 | if (fcport->flags & FCF_FCP2_DEVICE) |
| 2809 | ha->isp_ops->fabric_logout(vha, | 2806 | ha->isp_ops->fabric_logout(vha, |
| 2810 | fcport->loop_id, | 2807 | fcport->loop_id, |
| 2811 | fcport->d_id.b.domain, | 2808 | fcport->d_id.b.domain, |
| @@ -3141,7 +3138,10 @@ qla2x00_timer(scsi_qla_host_t *vha) | |||
| 3141 | if (!IS_QLA2100(ha) && vha->link_down_timeout) | 3138 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 3142 | atomic_set(&vha->loop_state, LOOP_DEAD); | 3139 | atomic_set(&vha->loop_state, LOOP_DEAD); |
| 3143 | 3140 | ||
| 3144 | /* Schedule an ISP abort to return any tape commands. */ | 3141 | /* |
| 3142 | * Schedule an ISP abort to return any FCP2-device | ||
| 3143 | * commands. | ||
| 3144 | */ | ||
| 3145 | /* NPIV - scan physical port only */ | 3145 | /* NPIV - scan physical port only */ |
| 3146 | if (!vha->vp_idx) { | 3146 | if (!vha->vp_idx) { |
| 3147 | spin_lock_irqsave(&ha->hardware_lock, | 3147 | spin_lock_irqsave(&ha->hardware_lock, |
| @@ -3158,7 +3158,7 @@ qla2x00_timer(scsi_qla_host_t *vha) | |||
| 3158 | if (sp->ctx) | 3158 | if (sp->ctx) |
| 3159 | continue; | 3159 | continue; |
| 3160 | sfcp = sp->fcport; | 3160 | sfcp = sp->fcport; |
| 3161 | if (!(sfcp->flags & FCF_TAPE_PRESENT)) | 3161 | if (!(sfcp->flags & FCF_FCP2_DEVICE)) |
| 3162 | continue; | 3162 | continue; |
| 3163 | 3163 | ||
| 3164 | set_bit(ISP_ABORT_NEEDED, | 3164 | set_bit(ISP_ABORT_NEEDED, |
diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index 010e69b29afe..371dc895972a 100644 --- a/drivers/scsi/qla2xxx/qla_sup.c +++ b/drivers/scsi/qla2xxx/qla_sup.c | |||
| @@ -2292,11 +2292,14 @@ qla25xx_read_optrom_data(struct scsi_qla_host *vha, uint8_t *buf, | |||
| 2292 | uint32_t faddr, left, burst; | 2292 | uint32_t faddr, left, burst; |
| 2293 | struct qla_hw_data *ha = vha->hw; | 2293 | struct qla_hw_data *ha = vha->hw; |
| 2294 | 2294 | ||
| 2295 | if (IS_QLA25XX(ha) || IS_QLA81XX(ha)) | ||
| 2296 | goto try_fast; | ||
| 2295 | if (offset & 0xfff) | 2297 | if (offset & 0xfff) |
| 2296 | goto slow_read; | 2298 | goto slow_read; |
| 2297 | if (length < OPTROM_BURST_SIZE) | 2299 | if (length < OPTROM_BURST_SIZE) |
| 2298 | goto slow_read; | 2300 | goto slow_read; |
| 2299 | 2301 | ||
| 2302 | try_fast: | ||
| 2300 | optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, | 2303 | optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, |
| 2301 | &optrom_dma, GFP_KERNEL); | 2304 | &optrom_dma, GFP_KERNEL); |
| 2302 | if (!optrom) { | 2305 | if (!optrom) { |
diff --git a/drivers/scsi/qla2xxx/qla_version.h b/drivers/scsi/qla2xxx/qla_version.h index a65dd95507c6..ed36279a33c1 100644 --- a/drivers/scsi/qla2xxx/qla_version.h +++ b/drivers/scsi/qla2xxx/qla_version.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | /* | 7 | /* |
| 8 | * Driver version | 8 | * Driver version |
| 9 | */ | 9 | */ |
| 10 | #define QLA2XXX_VERSION "8.03.01-k9" | 10 | #define QLA2XXX_VERSION "8.03.01-k10" |
| 11 | 11 | ||
| 12 | #define QLA_DRIVER_MAJOR_VER 8 | 12 | #define QLA_DRIVER_MAJOR_VER 8 |
| 13 | #define QLA_DRIVER_MINOR_VER 3 | 13 | #define QLA_DRIVER_MINOR_VER 3 |
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index d8927681ec88..c6642423cc67 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c | |||
| @@ -749,9 +749,9 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes) | |||
| 749 | */ | 749 | */ |
| 750 | req->next_rq->resid_len = scsi_in(cmd)->resid; | 750 | req->next_rq->resid_len = scsi_in(cmd)->resid; |
| 751 | 751 | ||
| 752 | scsi_release_buffers(cmd); | ||
| 752 | blk_end_request_all(req, 0); | 753 | blk_end_request_all(req, 0); |
| 753 | 754 | ||
| 754 | scsi_release_buffers(cmd); | ||
| 755 | scsi_next_command(cmd); | 755 | scsi_next_command(cmd); |
| 756 | return; | 756 | return; |
| 757 | } | 757 | } |
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index ddfcecd5099f..653f22a8deb9 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c | |||
| @@ -3527,7 +3527,10 @@ fc_bsg_job_timeout(struct request *req) | |||
| 3527 | if (!done && i->f->bsg_timeout) { | 3527 | if (!done && i->f->bsg_timeout) { |
| 3528 | /* call LLDD to abort the i/o as it has timed out */ | 3528 | /* call LLDD to abort the i/o as it has timed out */ |
| 3529 | err = i->f->bsg_timeout(job); | 3529 | err = i->f->bsg_timeout(job); |
| 3530 | if (err) | 3530 | if (err == -EAGAIN) { |
| 3531 | job->ref_cnt--; | ||
| 3532 | return BLK_EH_RESET_TIMER; | ||
| 3533 | } else if (err) | ||
| 3531 | printk(KERN_ERR "ERROR: FC BSG request timeout - LLD " | 3534 | printk(KERN_ERR "ERROR: FC BSG request timeout - LLD " |
| 3532 | "abort failed with status %d\n", err); | 3535 | "abort failed with status %d\n", err); |
| 3533 | } | 3536 | } |
diff --git a/drivers/serial/21285.c b/drivers/serial/21285.c index 1e3d19397a59..8681f1345056 100644 --- a/drivers/serial/21285.c +++ b/drivers/serial/21285.c | |||
| @@ -58,7 +58,7 @@ static const char serial21285_name[] = "Footbridge UART"; | |||
| 58 | static void serial21285_stop_tx(struct uart_port *port) | 58 | static void serial21285_stop_tx(struct uart_port *port) |
| 59 | { | 59 | { |
| 60 | if (tx_enabled(port)) { | 60 | if (tx_enabled(port)) { |
| 61 | disable_irq(IRQ_CONTX); | 61 | disable_irq_nosync(IRQ_CONTX); |
| 62 | tx_enabled(port) = 0; | 62 | tx_enabled(port) = 0; |
| 63 | } | 63 | } |
| 64 | } | 64 | } |
| @@ -74,7 +74,7 @@ static void serial21285_start_tx(struct uart_port *port) | |||
| 74 | static void serial21285_stop_rx(struct uart_port *port) | 74 | static void serial21285_stop_rx(struct uart_port *port) |
| 75 | { | 75 | { |
| 76 | if (rx_enabled(port)) { | 76 | if (rx_enabled(port)) { |
| 77 | disable_irq(IRQ_CONRX); | 77 | disable_irq_nosync(IRQ_CONRX); |
| 78 | rx_enabled(port) = 0; | 78 | rx_enabled(port) = 0; |
| 79 | } | 79 | } |
| 80 | } | 80 | } |
diff --git a/drivers/serial/8250_pnp.c b/drivers/serial/8250_pnp.c index 36ede02ceacf..24485cc62ff8 100644 --- a/drivers/serial/8250_pnp.c +++ b/drivers/serial/8250_pnp.c | |||
| @@ -328,15 +328,7 @@ static const struct pnp_device_id pnp_dev_table[] = { | |||
| 328 | /* U.S. Robotics 56K Voice INT PnP*/ | 328 | /* U.S. Robotics 56K Voice INT PnP*/ |
| 329 | { "USR9190", 0 }, | 329 | { "USR9190", 0 }, |
| 330 | /* Wacom tablets */ | 330 | /* Wacom tablets */ |
| 331 | { "WACF004", 0 }, | 331 | { "WACFXXX", 0 }, |
| 332 | { "WACF005", 0 }, | ||
| 333 | { "WACF006", 0 }, | ||
| 334 | { "WACF007", 0 }, | ||
| 335 | { "WACF008", 0 }, | ||
| 336 | { "WACF009", 0 }, | ||
| 337 | { "WACF00A", 0 }, | ||
| 338 | { "WACF00B", 0 }, | ||
| 339 | { "WACF00C", 0 }, | ||
| 340 | /* Compaq touchscreen */ | 332 | /* Compaq touchscreen */ |
| 341 | { "FPI2002", 0 }, | 333 | { "FPI2002", 0 }, |
| 342 | /* Fujitsu Stylistic touchscreens */ | 334 | /* Fujitsu Stylistic touchscreens */ |
| @@ -354,6 +346,8 @@ static const struct pnp_device_id pnp_dev_table[] = { | |||
| 354 | { "FUJ02E5", 0 }, | 346 | { "FUJ02E5", 0 }, |
| 355 | /* Fujitsu P-series tablet PC device */ | 347 | /* Fujitsu P-series tablet PC device */ |
| 356 | { "FUJ02E6", 0 }, | 348 | { "FUJ02E6", 0 }, |
| 349 | /* Fujitsu Wacom 2FGT Tablet PC device */ | ||
| 350 | { "FUJ02E7", 0 }, | ||
| 357 | /* | 351 | /* |
| 358 | * LG C1 EXPRESS DUAL (C1-PB11A3) touch screen (actually a FUJ02E6 in | 352 | * LG C1 EXPRESS DUAL (C1-PB11A3) touch screen (actually a FUJ02E6 in |
| 359 | * disguise) | 353 | * disguise) |
diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c index 18130f11238e..60d665a17a88 100644 --- a/drivers/serial/imx.c +++ b/drivers/serial/imx.c | |||
| @@ -1088,7 +1088,7 @@ imx_console_get_options(struct imx_port *sport, int *baud, | |||
| 1088 | int *parity, int *bits) | 1088 | int *parity, int *bits) |
| 1089 | { | 1089 | { |
| 1090 | 1090 | ||
| 1091 | if ( readl(sport->port.membase + UCR1) | UCR1_UARTEN ) { | 1091 | if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) { |
| 1092 | /* ok, the port was enabled */ | 1092 | /* ok, the port was enabled */ |
| 1093 | unsigned int ucr2, ubir,ubmr, uartclk; | 1093 | unsigned int ucr2, ubir,ubmr, uartclk; |
| 1094 | unsigned int baud_raw; | 1094 | unsigned int baud_raw; |
diff --git a/drivers/serial/pmac_zilog.c b/drivers/serial/pmac_zilog.c index 0700cd10b97c..683e66f18e8c 100644 --- a/drivers/serial/pmac_zilog.c +++ b/drivers/serial/pmac_zilog.c | |||
| @@ -411,6 +411,17 @@ static void pmz_transmit_chars(struct uart_pmac_port *uap) | |||
| 411 | goto ack_tx_int; | 411 | goto ack_tx_int; |
| 412 | } | 412 | } |
| 413 | 413 | ||
| 414 | /* Under some circumstances, we see interrupts reported for | ||
| 415 | * a closed channel. The interrupt mask in R1 is clear, but | ||
| 416 | * R3 still signals the interrupts and we see them when taking | ||
| 417 | * an interrupt for the other channel (this could be a qemu | ||
| 418 | * bug but since the ESCC doc doesn't specify precsiely whether | ||
| 419 | * R3 interrup status bits are masked by R1 interrupt enable | ||
| 420 | * bits, better safe than sorry). --BenH. | ||
| 421 | */ | ||
| 422 | if (!ZS_IS_OPEN(uap)) | ||
| 423 | goto ack_tx_int; | ||
| 424 | |||
| 414 | if (uap->port.x_char) { | 425 | if (uap->port.x_char) { |
| 415 | uap->flags |= PMACZILOG_FLAG_TX_ACTIVE; | 426 | uap->flags |= PMACZILOG_FLAG_TX_ACTIVE; |
| 416 | write_zsdata(uap, uap->port.x_char); | 427 | write_zsdata(uap, uap->port.x_char); |
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c index 047530b285bb..7f2830709512 100644 --- a/drivers/serial/serial_core.c +++ b/drivers/serial/serial_core.c | |||
| @@ -385,13 +385,20 @@ uart_get_baud_rate(struct uart_port *port, struct ktermios *termios, | |||
| 385 | } | 385 | } |
| 386 | 386 | ||
| 387 | /* | 387 | /* |
| 388 | * As a last resort, if the quotient is zero, | 388 | * As a last resort, if the range cannot be met then clip to |
| 389 | * default to 9600 bps | 389 | * the nearest chip supported rate. |
| 390 | */ | 390 | */ |
| 391 | if (!hung_up) | 391 | if (!hung_up) { |
| 392 | tty_termios_encode_baud_rate(termios, 9600, 9600); | 392 | if (baud <= min) |
| 393 | tty_termios_encode_baud_rate(termios, | ||
| 394 | min + 1, min + 1); | ||
| 395 | else | ||
| 396 | tty_termios_encode_baud_rate(termios, | ||
| 397 | max - 1, max - 1); | ||
| 398 | } | ||
| 393 | } | 399 | } |
| 394 | 400 | /* Should never happen */ | |
| 401 | WARN_ON(1); | ||
| 395 | return 0; | 402 | return 0; |
| 396 | } | 403 | } |
| 397 | 404 | ||
| @@ -2006,12 +2013,6 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) | |||
| 2006 | 2013 | ||
| 2007 | mutex_lock(&port->mutex); | 2014 | mutex_lock(&port->mutex); |
| 2008 | 2015 | ||
| 2009 | if (!console_suspend_enabled && uart_console(uport)) { | ||
| 2010 | /* we're going to avoid suspending serial console */ | ||
| 2011 | mutex_unlock(&port->mutex); | ||
| 2012 | return 0; | ||
| 2013 | } | ||
| 2014 | |||
| 2015 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); | 2016 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
| 2016 | if (device_may_wakeup(tty_dev)) { | 2017 | if (device_may_wakeup(tty_dev)) { |
| 2017 | enable_irq_wake(uport->irq); | 2018 | enable_irq_wake(uport->irq); |
| @@ -2019,20 +2020,23 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) | |||
| 2019 | mutex_unlock(&port->mutex); | 2020 | mutex_unlock(&port->mutex); |
| 2020 | return 0; | 2021 | return 0; |
| 2021 | } | 2022 | } |
| 2022 | uport->suspended = 1; | 2023 | if (console_suspend_enabled || !uart_console(uport)) |
| 2024 | uport->suspended = 1; | ||
| 2023 | 2025 | ||
| 2024 | if (port->flags & ASYNC_INITIALIZED) { | 2026 | if (port->flags & ASYNC_INITIALIZED) { |
| 2025 | const struct uart_ops *ops = uport->ops; | 2027 | const struct uart_ops *ops = uport->ops; |
| 2026 | int tries; | 2028 | int tries; |
| 2027 | 2029 | ||
| 2028 | set_bit(ASYNCB_SUSPENDED, &port->flags); | 2030 | if (console_suspend_enabled || !uart_console(uport)) { |
| 2029 | clear_bit(ASYNCB_INITIALIZED, &port->flags); | 2031 | set_bit(ASYNCB_SUSPENDED, &port->flags); |
| 2032 | clear_bit(ASYNCB_INITIALIZED, &port->flags); | ||
| 2030 | 2033 | ||
| 2031 | spin_lock_irq(&uport->lock); | 2034 | spin_lock_irq(&uport->lock); |
| 2032 | ops->stop_tx(uport); | 2035 | ops->stop_tx(uport); |
| 2033 | ops->set_mctrl(uport, 0); | 2036 | ops->set_mctrl(uport, 0); |
| 2034 | ops->stop_rx(uport); | 2037 | ops->stop_rx(uport); |
| 2035 | spin_unlock_irq(&uport->lock); | 2038 | spin_unlock_irq(&uport->lock); |
| 2039 | } | ||
| 2036 | 2040 | ||
| 2037 | /* | 2041 | /* |
| 2038 | * Wait for the transmitter to empty. | 2042 | * Wait for the transmitter to empty. |
| @@ -2047,16 +2051,18 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) | |||
| 2047 | drv->dev_name, | 2051 | drv->dev_name, |
| 2048 | drv->tty_driver->name_base + uport->line); | 2052 | drv->tty_driver->name_base + uport->line); |
| 2049 | 2053 | ||
| 2050 | ops->shutdown(uport); | 2054 | if (console_suspend_enabled || !uart_console(uport)) |
| 2055 | ops->shutdown(uport); | ||
| 2051 | } | 2056 | } |
| 2052 | 2057 | ||
| 2053 | /* | 2058 | /* |
| 2054 | * Disable the console device before suspending. | 2059 | * Disable the console device before suspending. |
| 2055 | */ | 2060 | */ |
| 2056 | if (uart_console(uport)) | 2061 | if (console_suspend_enabled && uart_console(uport)) |
| 2057 | console_stop(uport->cons); | 2062 | console_stop(uport->cons); |
| 2058 | 2063 | ||
| 2059 | uart_change_pm(state, 3); | 2064 | if (console_suspend_enabled || !uart_console(uport)) |
| 2065 | uart_change_pm(state, 3); | ||
| 2060 | 2066 | ||
| 2061 | mutex_unlock(&port->mutex); | 2067 | mutex_unlock(&port->mutex); |
| 2062 | 2068 | ||
| @@ -2073,29 +2079,6 @@ int uart_resume_port(struct uart_driver *drv, struct uart_port *uport) | |||
| 2073 | 2079 | ||
| 2074 | mutex_lock(&port->mutex); | 2080 | mutex_lock(&port->mutex); |
| 2075 | 2081 | ||
| 2076 | if (!console_suspend_enabled && uart_console(uport)) { | ||
| 2077 | /* no need to resume serial console, it wasn't suspended */ | ||
| 2078 | /* | ||
| 2079 | * First try to use the console cflag setting. | ||
| 2080 | */ | ||
| 2081 | memset(&termios, 0, sizeof(struct ktermios)); | ||
| 2082 | termios.c_cflag = uport->cons->cflag; | ||
| 2083 | /* | ||
| 2084 | * If that's unset, use the tty termios setting. | ||
| 2085 | */ | ||
| 2086 | if (termios.c_cflag == 0) | ||
| 2087 | termios = *state->port.tty->termios; | ||
| 2088 | else { | ||
| 2089 | termios.c_ispeed = termios.c_ospeed = | ||
| 2090 | tty_termios_input_baud_rate(&termios); | ||
| 2091 | termios.c_ispeed = termios.c_ospeed = | ||
| 2092 | tty_termios_baud_rate(&termios); | ||
| 2093 | } | ||
| 2094 | uport->ops->set_termios(uport, &termios, NULL); | ||
| 2095 | mutex_unlock(&port->mutex); | ||
| 2096 | return 0; | ||
| 2097 | } | ||
| 2098 | |||
| 2099 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); | 2082 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
| 2100 | if (!uport->suspended && device_may_wakeup(tty_dev)) { | 2083 | if (!uport->suspended && device_may_wakeup(tty_dev)) { |
| 2101 | disable_irq_wake(uport->irq); | 2084 | disable_irq_wake(uport->irq); |
| @@ -2121,21 +2104,23 @@ int uart_resume_port(struct uart_driver *drv, struct uart_port *uport) | |||
| 2121 | spin_lock_irq(&uport->lock); | 2104 | spin_lock_irq(&uport->lock); |
| 2122 | ops->set_mctrl(uport, 0); | 2105 | ops->set_mctrl(uport, 0); |
| 2123 | spin_unlock_irq(&uport->lock); | 2106 | spin_unlock_irq(&uport->lock); |
| 2124 | ret = ops->startup(uport); | 2107 | if (console_suspend_enabled || !uart_console(uport)) { |
| 2125 | if (ret == 0) { | 2108 | ret = ops->startup(uport); |
| 2126 | uart_change_speed(state, NULL); | 2109 | if (ret == 0) { |
| 2127 | spin_lock_irq(&uport->lock); | 2110 | uart_change_speed(state, NULL); |
| 2128 | ops->set_mctrl(uport, uport->mctrl); | 2111 | spin_lock_irq(&uport->lock); |
| 2129 | ops->start_tx(uport); | 2112 | ops->set_mctrl(uport, uport->mctrl); |
| 2130 | spin_unlock_irq(&uport->lock); | 2113 | ops->start_tx(uport); |
| 2131 | set_bit(ASYNCB_INITIALIZED, &port->flags); | 2114 | spin_unlock_irq(&uport->lock); |
| 2132 | } else { | 2115 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
| 2133 | /* | 2116 | } else { |
| 2134 | * Failed to resume - maybe hardware went away? | 2117 | /* |
| 2135 | * Clear the "initialized" flag so we won't try | 2118 | * Failed to resume - maybe hardware went away? |
| 2136 | * to call the low level drivers shutdown method. | 2119 | * Clear the "initialized" flag so we won't try |
| 2137 | */ | 2120 | * to call the low level drivers shutdown method. |
| 2138 | uart_shutdown(state); | 2121 | */ |
| 2122 | uart_shutdown(state); | ||
| 2123 | } | ||
| 2139 | } | 2124 | } |
| 2140 | 2125 | ||
| 2141 | clear_bit(ASYNCB_SUSPENDED, &port->flags); | 2126 | clear_bit(ASYNCB_SUSPENDED, &port->flags); |
diff --git a/drivers/serial/serial_cs.c b/drivers/serial/serial_cs.c index fc413f0f8dd2..95421fa3b304 100644 --- a/drivers/serial/serial_cs.c +++ b/drivers/serial/serial_cs.c | |||
| @@ -146,7 +146,8 @@ static void quirk_wakeup_oxsemi(struct pcmcia_device *link) | |||
| 146 | { | 146 | { |
| 147 | struct serial_info *info = link->priv; | 147 | struct serial_info *info = link->priv; |
| 148 | 148 | ||
| 149 | outb(12, info->c950ctrl + 1); | 149 | if (info->c950ctrl) |
| 150 | outb(12, info->c950ctrl + 1); | ||
| 150 | } | 151 | } |
| 151 | 152 | ||
| 152 | /* request_region? oxsemi branch does no request_region too... */ | 153 | /* request_region? oxsemi branch does no request_region too... */ |
| @@ -757,6 +758,7 @@ static struct pcmcia_device_id serial_ids[] = { | |||
| 757 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "PCMCIAs", "LanModem", 0xdcfe12d3, 0xc67c648f), | 758 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "PCMCIAs", "LanModem", 0xdcfe12d3, 0xc67c648f), |
| 758 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "TDK", "GlobalNetworker 3410/3412", 0x1eae9475, 0xd9a93bed), | 759 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "TDK", "GlobalNetworker 3410/3412", 0x1eae9475, 0xd9a93bed), |
| 759 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf), | 760 | PCMCIA_PFC_DEVICE_PROD_ID12(1, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf), |
| 761 | PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0032, 0x0e01), | ||
| 760 | PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0032, 0x0a05), | 762 | PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0032, 0x0a05), |
| 761 | PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0032, 0x1101), | 763 | PCMCIA_PFC_DEVICE_MANF_CARD(1, 0x0032, 0x1101), |
| 762 | PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0104, 0x0070), | 764 | PCMCIA_MFC_DEVICE_MANF_CARD(0, 0x0104, 0x0070), |
| @@ -819,6 +821,7 @@ static struct pcmcia_device_id serial_ids[] = { | |||
| 819 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0035, "cis/3CXEM556.cis"), | 821 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0035, "cis/3CXEM556.cis"), |
| 820 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x003d, "cis/3CXEM556.cis"), | 822 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x003d, "cis/3CXEM556.cis"), |
| 821 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC850", 0xd85f6206, 0x42a2c018, "cis/SW_8xx_SER.cis"), /* Sierra Wireless AC850 3G Network Adapter R1 */ | 823 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC850", 0xd85f6206, 0x42a2c018, "cis/SW_8xx_SER.cis"), /* Sierra Wireless AC850 3G Network Adapter R1 */ |
| 824 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC860", 0xd85f6206, 0x698f93db, "cis/SW_8xx_SER.cis"), /* Sierra Wireless AC860 3G Network Adapter R1 */ | ||
| 822 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC710/AC750", 0xd85f6206, 0x761b11e0, "cis/SW_7xx_SER.cis"), /* Sierra Wireless AC710/AC750 GPRS Network Adapter R1 */ | 825 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC710/AC750", 0xd85f6206, 0x761b11e0, "cis/SW_7xx_SER.cis"), /* Sierra Wireless AC710/AC750 GPRS Network Adapter R1 */ |
| 823 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ | 826 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ |
| 824 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ | 827 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ |
| @@ -827,7 +830,7 @@ static struct pcmcia_device_id serial_ids[] = { | |||
| 827 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "cis/COMpad4.cis"), | 830 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "cis/COMpad4.cis"), |
| 828 | PCMCIA_DEVICE_CIS_PROD_ID123("ADVANTECH", "COMpad-32/85", "1.0", 0x96913a85, 0x8fbe92ae, 0x0877b627, "cis/COMpad2.cis"), | 831 | PCMCIA_DEVICE_CIS_PROD_ID123("ADVANTECH", "COMpad-32/85", "1.0", 0x96913a85, 0x8fbe92ae, 0x0877b627, "cis/COMpad2.cis"), |
| 829 | PCMCIA_DEVICE_CIS_PROD_ID2("RS-COM 2P", 0xad20b156, "cis/RS-COM-2P.cis"), | 832 | PCMCIA_DEVICE_CIS_PROD_ID2("RS-COM 2P", 0xad20b156, "cis/RS-COM-2P.cis"), |
| 830 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0013, 0x0000, "GLOBETROTTER.cis"), | 833 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0013, 0x0000, "cis/GLOBETROTTER.cis"), |
| 831 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL100 1.00.",0x19ca78af,0xf964f42b), | 834 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL100 1.00.",0x19ca78af,0xf964f42b), |
| 832 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL100",0x19ca78af,0x71d98e83), | 835 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL100",0x19ca78af,0x71d98e83), |
| 833 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL232 1.00.",0x19ca78af,0x69fb7490), | 836 | PCMCIA_DEVICE_PROD_ID12("ELAN DIGITAL SYSTEMS LTD, c1997.","SERIAL CARD: SL232 1.00.",0x19ca78af,0x69fb7490), |
| @@ -861,6 +864,18 @@ static struct pcmcia_device_id serial_ids[] = { | |||
| 861 | }; | 864 | }; |
| 862 | MODULE_DEVICE_TABLE(pcmcia, serial_ids); | 865 | MODULE_DEVICE_TABLE(pcmcia, serial_ids); |
| 863 | 866 | ||
| 867 | MODULE_FIRMWARE("cis/PCMLM28.cis"); | ||
| 868 | MODULE_FIRMWARE("cis/DP83903.cis"); | ||
| 869 | MODULE_FIRMWARE("cis/3CCFEM556.cis"); | ||
| 870 | MODULE_FIRMWARE("cis/3CXEM556.cis"); | ||
| 871 | MODULE_FIRMWARE("cis/SW_8xx_SER.cis"); | ||
| 872 | MODULE_FIRMWARE("cis/SW_7xx_SER.cis"); | ||
| 873 | MODULE_FIRMWARE("cis/SW_555_SER.cis"); | ||
| 874 | MODULE_FIRMWARE("cis/MT5634ZLX.cis"); | ||
| 875 | MODULE_FIRMWARE("cis/COMpad2.cis"); | ||
| 876 | MODULE_FIRMWARE("cis/COMpad4.cis"); | ||
| 877 | MODULE_FIRMWARE("cis/RS-COM-2P.cis"); | ||
| 878 | |||
| 864 | static struct pcmcia_driver serial_cs_driver = { | 879 | static struct pcmcia_driver serial_cs_driver = { |
| 865 | .owner = THIS_MODULE, | 880 | .owner = THIS_MODULE, |
| 866 | .drv = { | 881 | .drv = { |
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index 37f0de9dd9ce..42f3333c4ad0 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
| @@ -1052,7 +1052,18 @@ static void __devinit sci_init_single(struct platform_device *dev, | |||
| 1052 | sci_port->port.ops = &sci_uart_ops; | 1052 | sci_port->port.ops = &sci_uart_ops; |
| 1053 | sci_port->port.iotype = UPIO_MEM; | 1053 | sci_port->port.iotype = UPIO_MEM; |
| 1054 | sci_port->port.line = index; | 1054 | sci_port->port.line = index; |
| 1055 | sci_port->port.fifosize = 1; | 1055 | |
| 1056 | switch (p->type) { | ||
| 1057 | case PORT_SCIFA: | ||
| 1058 | sci_port->port.fifosize = 64; | ||
| 1059 | break; | ||
| 1060 | case PORT_SCIF: | ||
| 1061 | sci_port->port.fifosize = 16; | ||
| 1062 | break; | ||
| 1063 | default: | ||
| 1064 | sci_port->port.fifosize = 1; | ||
| 1065 | break; | ||
| 1066 | } | ||
| 1056 | 1067 | ||
| 1057 | if (dev) { | 1068 | if (dev) { |
| 1058 | sci_port->iclk = p->clk ? clk_get(&dev->dev, p->clk) : NULL; | 1069 | sci_port->iclk = p->clk ? clk_get(&dev->dev, p->clk) : NULL; |
diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c index 377f2712289e..ab2ab3c81834 100644 --- a/drivers/serial/uartlite.c +++ b/drivers/serial/uartlite.c | |||
| @@ -394,7 +394,7 @@ static void ulite_console_write(struct console *co, const char *s, | |||
| 394 | spin_unlock_irqrestore(&port->lock, flags); | 394 | spin_unlock_irqrestore(&port->lock, flags); |
| 395 | } | 395 | } |
| 396 | 396 | ||
| 397 | static int __init ulite_console_setup(struct console *co, char *options) | 397 | static int __devinit ulite_console_setup(struct console *co, char *options) |
| 398 | { | 398 | { |
| 399 | struct uart_port *port; | 399 | struct uart_port *port; |
| 400 | int baud = 9600; | 400 | int baud = 9600; |
diff --git a/drivers/spi/spi_sh_msiof.c b/drivers/spi/spi_sh_msiof.c index 51e5e1dfa6e5..30973ec16a93 100644 --- a/drivers/spi/spi_sh_msiof.c +++ b/drivers/spi/spi_sh_msiof.c | |||
| @@ -173,15 +173,12 @@ static void sh_msiof_spi_set_pin_regs(struct sh_msiof_spi_priv *p, | |||
| 173 | int edge; | 173 | int edge; |
| 174 | 174 | ||
| 175 | /* | 175 | /* |
| 176 | * CPOL CPHA TSCKIZ RSCKIZ TEDG REDG(!) | 176 | * CPOL CPHA TSCKIZ RSCKIZ TEDG REDG |
| 177 | * 0 0 10 10 1 0 | 177 | * 0 0 10 10 1 1 |
| 178 | * 0 1 10 10 0 1 | 178 | * 0 1 10 10 0 0 |
| 179 | * 1 0 11 11 0 1 | 179 | * 1 0 11 11 0 0 |
| 180 | * 1 1 11 11 1 0 | 180 | * 1 1 11 11 1 1 |
| 181 | * | ||
| 182 | * (!) Note: REDG is inverted recommended data sheet setting | ||
| 183 | */ | 181 | */ |
| 184 | |||
| 185 | sh_msiof_write(p, FCTR, 0); | 182 | sh_msiof_write(p, FCTR, 0); |
| 186 | sh_msiof_write(p, TMDR1, 0xe2000005 | (lsb_first << 24)); | 183 | sh_msiof_write(p, TMDR1, 0xe2000005 | (lsb_first << 24)); |
| 187 | sh_msiof_write(p, RMDR1, 0x22000005 | (lsb_first << 24)); | 184 | sh_msiof_write(p, RMDR1, 0x22000005 | (lsb_first << 24)); |
| @@ -193,7 +190,7 @@ static void sh_msiof_spi_set_pin_regs(struct sh_msiof_spi_priv *p, | |||
| 193 | edge = cpol ? cpha : !cpha; | 190 | edge = cpol ? cpha : !cpha; |
| 194 | 191 | ||
| 195 | tmp |= edge << 27; /* TEDG */ | 192 | tmp |= edge << 27; /* TEDG */ |
| 196 | tmp |= !edge << 26; /* REDG */ | 193 | tmp |= edge << 26; /* REDG */ |
| 197 | tmp |= (tx_hi_z ? 2 : 0) << 22; /* TXDIZ */ | 194 | tmp |= (tx_hi_z ? 2 : 0) << 22; /* TXDIZ */ |
| 198 | sh_msiof_write(p, CTR, tmp); | 195 | sh_msiof_write(p, CTR, tmp); |
| 199 | } | 196 | } |
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 94eb86319ff3..fc2e963e65e9 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig | |||
| @@ -99,8 +99,6 @@ source "drivers/staging/line6/Kconfig" | |||
| 99 | 99 | ||
| 100 | source "drivers/gpu/drm/vmwgfx/Kconfig" | 100 | source "drivers/gpu/drm/vmwgfx/Kconfig" |
| 101 | 101 | ||
| 102 | source "drivers/gpu/drm/radeon/Kconfig" | ||
| 103 | |||
| 104 | source "drivers/gpu/drm/nouveau/Kconfig" | 102 | source "drivers/gpu/drm/nouveau/Kconfig" |
| 105 | 103 | ||
| 106 | source "drivers/staging/octeon/Kconfig" | 104 | source "drivers/staging/octeon/Kconfig" |
diff --git a/drivers/staging/asus_oled/asus_oled.c b/drivers/staging/asus_oled/asus_oled.c index f4c26572c7df..43c57b7688ab 100644 --- a/drivers/staging/asus_oled/asus_oled.c +++ b/drivers/staging/asus_oled/asus_oled.c | |||
| @@ -194,9 +194,11 @@ static ssize_t set_enabled(struct device *dev, struct device_attribute *attr, | |||
| 194 | { | 194 | { |
| 195 | struct usb_interface *intf = to_usb_interface(dev); | 195 | struct usb_interface *intf = to_usb_interface(dev); |
| 196 | struct asus_oled_dev *odev = usb_get_intfdata(intf); | 196 | struct asus_oled_dev *odev = usb_get_intfdata(intf); |
| 197 | int temp = strict_strtoul(buf, 10, NULL); | 197 | unsigned long value; |
| 198 | if (strict_strtoul(buf, 10, &value)) | ||
| 199 | return -EINVAL; | ||
| 198 | 200 | ||
| 199 | enable_oled(odev, temp); | 201 | enable_oled(odev, value); |
| 200 | 202 | ||
| 201 | return count; | 203 | return count; |
| 202 | } | 204 | } |
| @@ -207,10 +209,12 @@ static ssize_t class_set_enabled(struct device *device, | |||
| 207 | { | 209 | { |
| 208 | struct asus_oled_dev *odev = | 210 | struct asus_oled_dev *odev = |
| 209 | (struct asus_oled_dev *) dev_get_drvdata(device); | 211 | (struct asus_oled_dev *) dev_get_drvdata(device); |
| 212 | unsigned long value; | ||
| 210 | 213 | ||
| 211 | int temp = strict_strtoul(buf, 10, NULL); | 214 | if (strict_strtoul(buf, 10, &value)) |
| 215 | return -EINVAL; | ||
| 212 | 216 | ||
| 213 | enable_oled(odev, temp); | 217 | enable_oled(odev, value); |
| 214 | 218 | ||
| 215 | return count; | 219 | return count; |
| 216 | } | 220 | } |
diff --git a/drivers/staging/cx25821/cx25821-medusa-video.c b/drivers/staging/cx25821/cx25821-medusa-video.c index e4df8134f059..1eb079b3d429 100644 --- a/drivers/staging/cx25821/cx25821-medusa-video.c +++ b/drivers/staging/cx25821/cx25821-medusa-video.c | |||
| @@ -860,10 +860,8 @@ int medusa_video_init(struct cx25821_dev *dev) | |||
| 860 | 860 | ||
| 861 | ret_val = medusa_set_videostandard(dev); | 861 | ret_val = medusa_set_videostandard(dev); |
| 862 | 862 | ||
| 863 | if (ret_val < 0) { | 863 | if (ret_val < 0) |
| 864 | mutex_unlock(&dev->lock); | ||
| 865 | return -EINVAL; | 864 | return -EINVAL; |
| 866 | } | ||
| 867 | 865 | ||
| 868 | return 1; | 866 | return 1; |
| 869 | } | 867 | } |
diff --git a/drivers/staging/et131x/et1310_address_map.h b/drivers/staging/et131x/et1310_address_map.h index 6da843cc343c..e715e4dcb523 100644 --- a/drivers/staging/et131x/et1310_address_map.h +++ b/drivers/staging/et131x/et1310_address_map.h | |||
| @@ -203,11 +203,14 @@ typedef struct _GLOBAL_t { /* Location: */ | |||
| 203 | * 9-0: pr ndes | 203 | * 9-0: pr ndes |
| 204 | */ | 204 | */ |
| 205 | 205 | ||
| 206 | #define ET_DMA10_MASK 0x3FF /* 10 bit mask for DMA10W types */ | 206 | #define ET_DMA12_MASK 0x0FFF /* 12 bit mask for DMA12W types */ |
| 207 | #define ET_DMA10_WRAP 0x400 | 207 | #define ET_DMA12_WRAP 0x1000 |
| 208 | #define ET_DMA4_MASK 0x00F /* 4 bit mask for DMA4W types */ | 208 | #define ET_DMA10_MASK 0x03FF /* 10 bit mask for DMA10W types */ |
| 209 | #define ET_DMA4_WRAP 0x010 | 209 | #define ET_DMA10_WRAP 0x0400 |
| 210 | 210 | #define ET_DMA4_MASK 0x000F /* 4 bit mask for DMA4W types */ | |
| 211 | #define ET_DMA4_WRAP 0x0010 | ||
| 212 | |||
| 213 | #define INDEX12(x) ((x) & ET_DMA12_MASK) | ||
| 211 | #define INDEX10(x) ((x) & ET_DMA10_MASK) | 214 | #define INDEX10(x) ((x) & ET_DMA10_MASK) |
| 212 | #define INDEX4(x) ((x) & ET_DMA4_MASK) | 215 | #define INDEX4(x) ((x) & ET_DMA4_MASK) |
| 213 | 216 | ||
| @@ -216,6 +219,11 @@ extern inline void add_10bit(u32 *v, int n) | |||
| 216 | *v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP); | 219 | *v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP); |
| 217 | } | 220 | } |
| 218 | 221 | ||
| 222 | extern inline void add_12bit(u32 *v, int n) | ||
| 223 | { | ||
| 224 | *v = INDEX12(*v + n) | (*v & ET_DMA12_WRAP); | ||
| 225 | } | ||
| 226 | |||
| 219 | /* | 227 | /* |
| 220 | * 10bit DMA with wrap | 228 | * 10bit DMA with wrap |
| 221 | * txdma tx queue write address reg in txdma address map at 0x1010 | 229 | * txdma tx queue write address reg in txdma address map at 0x1010 |
diff --git a/drivers/staging/et131x/et1310_rx.c b/drivers/staging/et131x/et1310_rx.c index 3ddc9b12b8db..81c1a7478ad6 100644 --- a/drivers/staging/et131x/et1310_rx.c +++ b/drivers/staging/et131x/et1310_rx.c | |||
| @@ -831,10 +831,10 @@ PMP_RFD nic_rx_pkts(struct et131x_adapter *etdev) | |||
| 831 | 831 | ||
| 832 | /* Indicate that we have used this PSR entry. */ | 832 | /* Indicate that we have used this PSR entry. */ |
| 833 | /* FIXME wrap 12 */ | 833 | /* FIXME wrap 12 */ |
| 834 | rx_local->local_psr_full = (rx_local->local_psr_full + 1) & 0xFFF; | 834 | add_12bit(&rx_local->local_psr_full, 1); |
| 835 | if (rx_local->local_psr_full > rx_local->PsrNumEntries - 1) { | 835 | if ((rx_local->local_psr_full & 0xFFF) > rx_local->PsrNumEntries - 1) { |
| 836 | /* Clear psr full and toggle the wrap bit */ | 836 | /* Clear psr full and toggle the wrap bit */ |
| 837 | rx_local->local_psr_full &= 0xFFF; | 837 | rx_local->local_psr_full &= ~0xFFF; |
| 838 | rx_local->local_psr_full ^= 0x1000; | 838 | rx_local->local_psr_full ^= 0x1000; |
| 839 | } | 839 | } |
| 840 | 840 | ||
diff --git a/drivers/staging/hv/Hv.c b/drivers/staging/hv/Hv.c index c5b6613f2f2f..c2809f2a2ce0 100644 --- a/drivers/staging/hv/Hv.c +++ b/drivers/staging/hv/Hv.c | |||
| @@ -386,7 +386,7 @@ u16 HvSignalEvent(void) | |||
| 386 | * retrieve the initialized message and event pages. Otherwise, we create and | 386 | * retrieve the initialized message and event pages. Otherwise, we create and |
| 387 | * initialize the message and event pages. | 387 | * initialize the message and event pages. |
| 388 | */ | 388 | */ |
| 389 | int HvSynicInit(u32 irqVector) | 389 | void HvSynicInit(void *irqarg) |
| 390 | { | 390 | { |
| 391 | u64 version; | 391 | u64 version; |
| 392 | union hv_synic_simp simp; | 392 | union hv_synic_simp simp; |
| @@ -394,13 +394,14 @@ int HvSynicInit(u32 irqVector) | |||
| 394 | union hv_synic_sint sharedSint; | 394 | union hv_synic_sint sharedSint; |
| 395 | union hv_synic_scontrol sctrl; | 395 | union hv_synic_scontrol sctrl; |
| 396 | u64 guestID; | 396 | u64 guestID; |
| 397 | int ret = 0; | 397 | u32 irqVector = *((u32 *)(irqarg)); |
| 398 | int cpu = smp_processor_id(); | ||
| 398 | 399 | ||
| 399 | DPRINT_ENTER(VMBUS); | 400 | DPRINT_ENTER(VMBUS); |
| 400 | 401 | ||
| 401 | if (!gHvContext.HypercallPage) { | 402 | if (!gHvContext.HypercallPage) { |
| 402 | DPRINT_EXIT(VMBUS); | 403 | DPRINT_EXIT(VMBUS); |
| 403 | return ret; | 404 | return; |
| 404 | } | 405 | } |
| 405 | 406 | ||
| 406 | /* Check the version */ | 407 | /* Check the version */ |
| @@ -425,27 +426,27 @@ int HvSynicInit(u32 irqVector) | |||
| 425 | */ | 426 | */ |
| 426 | rdmsrl(HV_X64_MSR_GUEST_OS_ID, guestID); | 427 | rdmsrl(HV_X64_MSR_GUEST_OS_ID, guestID); |
| 427 | if (guestID == HV_LINUX_GUEST_ID) { | 428 | if (guestID == HV_LINUX_GUEST_ID) { |
| 428 | gHvContext.synICMessagePage[0] = | 429 | gHvContext.synICMessagePage[cpu] = |
| 429 | phys_to_virt(simp.BaseSimpGpa << PAGE_SHIFT); | 430 | phys_to_virt(simp.BaseSimpGpa << PAGE_SHIFT); |
| 430 | gHvContext.synICEventPage[0] = | 431 | gHvContext.synICEventPage[cpu] = |
| 431 | phys_to_virt(siefp.BaseSiefpGpa << PAGE_SHIFT); | 432 | phys_to_virt(siefp.BaseSiefpGpa << PAGE_SHIFT); |
| 432 | } else { | 433 | } else { |
| 433 | DPRINT_ERR(VMBUS, "unknown guest id!!"); | 434 | DPRINT_ERR(VMBUS, "unknown guest id!!"); |
| 434 | goto Cleanup; | 435 | goto Cleanup; |
| 435 | } | 436 | } |
| 436 | DPRINT_DBG(VMBUS, "MAPPED: Simp: %p, Sifep: %p", | 437 | DPRINT_DBG(VMBUS, "MAPPED: Simp: %p, Sifep: %p", |
| 437 | gHvContext.synICMessagePage[0], | 438 | gHvContext.synICMessagePage[cpu], |
| 438 | gHvContext.synICEventPage[0]); | 439 | gHvContext.synICEventPage[cpu]); |
| 439 | } else { | 440 | } else { |
| 440 | gHvContext.synICMessagePage[0] = osd_PageAlloc(1); | 441 | gHvContext.synICMessagePage[cpu] = (void *)get_zeroed_page(GFP_ATOMIC); |
| 441 | if (gHvContext.synICMessagePage[0] == NULL) { | 442 | if (gHvContext.synICMessagePage[cpu] == NULL) { |
| 442 | DPRINT_ERR(VMBUS, | 443 | DPRINT_ERR(VMBUS, |
| 443 | "unable to allocate SYNIC message page!!"); | 444 | "unable to allocate SYNIC message page!!"); |
| 444 | goto Cleanup; | 445 | goto Cleanup; |
| 445 | } | 446 | } |
| 446 | 447 | ||
| 447 | gHvContext.synICEventPage[0] = osd_PageAlloc(1); | 448 | gHvContext.synICEventPage[cpu] = (void *)get_zeroed_page(GFP_ATOMIC); |
| 448 | if (gHvContext.synICEventPage[0] == NULL) { | 449 | if (gHvContext.synICEventPage[cpu] == NULL) { |
| 449 | DPRINT_ERR(VMBUS, | 450 | DPRINT_ERR(VMBUS, |
| 450 | "unable to allocate SYNIC event page!!"); | 451 | "unable to allocate SYNIC event page!!"); |
| 451 | goto Cleanup; | 452 | goto Cleanup; |
| @@ -454,7 +455,7 @@ int HvSynicInit(u32 irqVector) | |||
| 454 | /* Setup the Synic's message page */ | 455 | /* Setup the Synic's message page */ |
| 455 | rdmsrl(HV_X64_MSR_SIMP, simp.AsUINT64); | 456 | rdmsrl(HV_X64_MSR_SIMP, simp.AsUINT64); |
| 456 | simp.SimpEnabled = 1; | 457 | simp.SimpEnabled = 1; |
| 457 | simp.BaseSimpGpa = virt_to_phys(gHvContext.synICMessagePage[0]) | 458 | simp.BaseSimpGpa = virt_to_phys(gHvContext.synICMessagePage[cpu]) |
| 458 | >> PAGE_SHIFT; | 459 | >> PAGE_SHIFT; |
| 459 | 460 | ||
| 460 | DPRINT_DBG(VMBUS, "HV_X64_MSR_SIMP msr set to: %llx", | 461 | DPRINT_DBG(VMBUS, "HV_X64_MSR_SIMP msr set to: %llx", |
| @@ -465,7 +466,7 @@ int HvSynicInit(u32 irqVector) | |||
| 465 | /* Setup the Synic's event page */ | 466 | /* Setup the Synic's event page */ |
| 466 | rdmsrl(HV_X64_MSR_SIEFP, siefp.AsUINT64); | 467 | rdmsrl(HV_X64_MSR_SIEFP, siefp.AsUINT64); |
| 467 | siefp.SiefpEnabled = 1; | 468 | siefp.SiefpEnabled = 1; |
| 468 | siefp.BaseSiefpGpa = virt_to_phys(gHvContext.synICEventPage[0]) | 469 | siefp.BaseSiefpGpa = virt_to_phys(gHvContext.synICEventPage[cpu]) |
| 469 | >> PAGE_SHIFT; | 470 | >> PAGE_SHIFT; |
| 470 | 471 | ||
| 471 | DPRINT_DBG(VMBUS, "HV_X64_MSR_SIEFP msr set to: %llx", | 472 | DPRINT_DBG(VMBUS, "HV_X64_MSR_SIEFP msr set to: %llx", |
| @@ -501,32 +502,30 @@ int HvSynicInit(u32 irqVector) | |||
| 501 | 502 | ||
| 502 | DPRINT_EXIT(VMBUS); | 503 | DPRINT_EXIT(VMBUS); |
| 503 | 504 | ||
| 504 | return ret; | 505 | return; |
| 505 | 506 | ||
| 506 | Cleanup: | 507 | Cleanup: |
| 507 | ret = -1; | ||
| 508 | |||
| 509 | if (gHvContext.GuestId == HV_LINUX_GUEST_ID) { | 508 | if (gHvContext.GuestId == HV_LINUX_GUEST_ID) { |
| 510 | if (gHvContext.synICEventPage[0]) | 509 | if (gHvContext.synICEventPage[cpu]) |
| 511 | osd_PageFree(gHvContext.synICEventPage[0], 1); | 510 | osd_PageFree(gHvContext.synICEventPage[cpu], 1); |
| 512 | 511 | ||
| 513 | if (gHvContext.synICMessagePage[0]) | 512 | if (gHvContext.synICMessagePage[cpu]) |
| 514 | osd_PageFree(gHvContext.synICMessagePage[0], 1); | 513 | osd_PageFree(gHvContext.synICMessagePage[cpu], 1); |
| 515 | } | 514 | } |
| 516 | 515 | ||
| 517 | DPRINT_EXIT(VMBUS); | 516 | DPRINT_EXIT(VMBUS); |
| 518 | 517 | return; | |
| 519 | return ret; | ||
| 520 | } | 518 | } |
| 521 | 519 | ||
| 522 | /** | 520 | /** |
| 523 | * HvSynicCleanup - Cleanup routine for HvSynicInit(). | 521 | * HvSynicCleanup - Cleanup routine for HvSynicInit(). |
| 524 | */ | 522 | */ |
| 525 | void HvSynicCleanup(void) | 523 | void HvSynicCleanup(void *arg) |
| 526 | { | 524 | { |
| 527 | union hv_synic_sint sharedSint; | 525 | union hv_synic_sint sharedSint; |
| 528 | union hv_synic_simp simp; | 526 | union hv_synic_simp simp; |
| 529 | union hv_synic_siefp siefp; | 527 | union hv_synic_siefp siefp; |
| 528 | int cpu = smp_processor_id(); | ||
| 530 | 529 | ||
| 531 | DPRINT_ENTER(VMBUS); | 530 | DPRINT_ENTER(VMBUS); |
| 532 | 531 | ||
| @@ -539,6 +538,7 @@ void HvSynicCleanup(void) | |||
| 539 | 538 | ||
| 540 | sharedSint.Masked = 1; | 539 | sharedSint.Masked = 1; |
| 541 | 540 | ||
| 541 | /* Need to correctly cleanup in the case of SMP!!! */ | ||
| 542 | /* Disable the interrupt */ | 542 | /* Disable the interrupt */ |
| 543 | wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, sharedSint.AsUINT64); | 543 | wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, sharedSint.AsUINT64); |
| 544 | 544 | ||
| @@ -560,8 +560,8 @@ void HvSynicCleanup(void) | |||
| 560 | 560 | ||
| 561 | wrmsrl(HV_X64_MSR_SIEFP, siefp.AsUINT64); | 561 | wrmsrl(HV_X64_MSR_SIEFP, siefp.AsUINT64); |
| 562 | 562 | ||
| 563 | osd_PageFree(gHvContext.synICMessagePage[0], 1); | 563 | osd_PageFree(gHvContext.synICMessagePage[cpu], 1); |
| 564 | osd_PageFree(gHvContext.synICEventPage[0], 1); | 564 | osd_PageFree(gHvContext.synICEventPage[cpu], 1); |
| 565 | } | 565 | } |
| 566 | 566 | ||
| 567 | DPRINT_EXIT(VMBUS); | 567 | DPRINT_EXIT(VMBUS); |
diff --git a/drivers/staging/hv/Hv.h b/drivers/staging/hv/Hv.h index 5379e4bfc56e..fce4b5cdac30 100644 --- a/drivers/staging/hv/Hv.h +++ b/drivers/staging/hv/Hv.h | |||
| @@ -93,7 +93,7 @@ static const struct hv_guid VMBUS_SERVICE_ID = { | |||
| 93 | }, | 93 | }, |
| 94 | }; | 94 | }; |
| 95 | 95 | ||
| 96 | #define MAX_NUM_CPUS 1 | 96 | #define MAX_NUM_CPUS 32 |
| 97 | 97 | ||
| 98 | 98 | ||
| 99 | struct hv_input_signal_event_buffer { | 99 | struct hv_input_signal_event_buffer { |
| @@ -137,8 +137,8 @@ extern u16 HvPostMessage(union hv_connection_id connectionId, | |||
| 137 | 137 | ||
| 138 | extern u16 HvSignalEvent(void); | 138 | extern u16 HvSignalEvent(void); |
| 139 | 139 | ||
| 140 | extern int HvSynicInit(u32 irqVector); | 140 | extern void HvSynicInit(void *irqarg); |
| 141 | 141 | ||
| 142 | extern void HvSynicCleanup(void); | 142 | extern void HvSynicCleanup(void *arg); |
| 143 | 143 | ||
| 144 | #endif /* __HV_H__ */ | 144 | #endif /* __HV_H__ */ |
diff --git a/drivers/staging/hv/Vmbus.c b/drivers/staging/hv/Vmbus.c index a4dd06f6d459..35a023e9f9d1 100644 --- a/drivers/staging/hv/Vmbus.c +++ b/drivers/staging/hv/Vmbus.c | |||
| @@ -129,7 +129,7 @@ static int VmbusOnDeviceAdd(struct hv_device *dev, void *AdditionalInfo) | |||
| 129 | 129 | ||
| 130 | /* strcpy(dev->name, "vmbus"); */ | 130 | /* strcpy(dev->name, "vmbus"); */ |
| 131 | /* SynIC setup... */ | 131 | /* SynIC setup... */ |
| 132 | ret = HvSynicInit(*irqvector); | 132 | on_each_cpu(HvSynicInit, (void *)irqvector, 1); |
| 133 | 133 | ||
| 134 | /* Connect to VMBus in the root partition */ | 134 | /* Connect to VMBus in the root partition */ |
| 135 | ret = VmbusConnect(); | 135 | ret = VmbusConnect(); |
| @@ -150,7 +150,7 @@ static int VmbusOnDeviceRemove(struct hv_device *dev) | |||
| 150 | DPRINT_ENTER(VMBUS); | 150 | DPRINT_ENTER(VMBUS); |
| 151 | VmbusChannelReleaseUnattachedChannels(); | 151 | VmbusChannelReleaseUnattachedChannels(); |
| 152 | VmbusDisconnect(); | 152 | VmbusDisconnect(); |
| 153 | HvSynicCleanup(); | 153 | on_each_cpu(HvSynicCleanup, NULL, 1); |
| 154 | DPRINT_EXIT(VMBUS); | 154 | DPRINT_EXIT(VMBUS); |
| 155 | 155 | ||
| 156 | return ret; | 156 | return ret; |
| @@ -173,7 +173,8 @@ static void VmbusOnCleanup(struct hv_driver *drv) | |||
| 173 | */ | 173 | */ |
| 174 | static void VmbusOnMsgDPC(struct hv_driver *drv) | 174 | static void VmbusOnMsgDPC(struct hv_driver *drv) |
| 175 | { | 175 | { |
| 176 | void *page_addr = gHvContext.synICMessagePage[0]; | 176 | int cpu = smp_processor_id(); |
| 177 | void *page_addr = gHvContext.synICMessagePage[cpu]; | ||
| 177 | struct hv_message *msg = (struct hv_message *)page_addr + | 178 | struct hv_message *msg = (struct hv_message *)page_addr + |
| 178 | VMBUS_MESSAGE_SINT; | 179 | VMBUS_MESSAGE_SINT; |
| 179 | struct hv_message *copied; | 180 | struct hv_message *copied; |
| @@ -230,11 +231,12 @@ static void VmbusOnEventDPC(struct hv_driver *drv) | |||
| 230 | static int VmbusOnISR(struct hv_driver *drv) | 231 | static int VmbusOnISR(struct hv_driver *drv) |
| 231 | { | 232 | { |
| 232 | int ret = 0; | 233 | int ret = 0; |
| 234 | int cpu = smp_processor_id(); | ||
| 233 | void *page_addr; | 235 | void *page_addr; |
| 234 | struct hv_message *msg; | 236 | struct hv_message *msg; |
| 235 | union hv_synic_event_flags *event; | 237 | union hv_synic_event_flags *event; |
| 236 | 238 | ||
| 237 | page_addr = gHvContext.synICMessagePage[0]; | 239 | page_addr = gHvContext.synICMessagePage[cpu]; |
| 238 | msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT; | 240 | msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT; |
| 239 | 241 | ||
| 240 | DPRINT_ENTER(VMBUS); | 242 | DPRINT_ENTER(VMBUS); |
| @@ -248,7 +250,7 @@ static int VmbusOnISR(struct hv_driver *drv) | |||
| 248 | } | 250 | } |
| 249 | 251 | ||
| 250 | /* TODO: Check if there are events to be process */ | 252 | /* TODO: Check if there are events to be process */ |
| 251 | page_addr = gHvContext.synICEventPage[0]; | 253 | page_addr = gHvContext.synICEventPage[cpu]; |
| 252 | event = (union hv_synic_event_flags *)page_addr + VMBUS_MESSAGE_SINT; | 254 | event = (union hv_synic_event_flags *)page_addr + VMBUS_MESSAGE_SINT; |
| 253 | 255 | ||
| 254 | /* Since we are a child, we only need to check bit 0 */ | 256 | /* Since we are a child, we only need to check bit 0 */ |
diff --git a/drivers/usb/core/devices.c b/drivers/usb/core/devices.c index 96f11715cd26..355dffcc23b0 100644 --- a/drivers/usb/core/devices.c +++ b/drivers/usb/core/devices.c | |||
| @@ -494,7 +494,7 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, | |||
| 494 | return 0; | 494 | return 0; |
| 495 | /* allocate 2^1 pages = 8K (on i386); | 495 | /* allocate 2^1 pages = 8K (on i386); |
| 496 | * should be more than enough for one device */ | 496 | * should be more than enough for one device */ |
| 497 | pages_start = (char *)__get_free_pages(GFP_KERNEL, 1); | 497 | pages_start = (char *)__get_free_pages(GFP_NOIO, 1); |
| 498 | if (!pages_start) | 498 | if (!pages_start) |
| 499 | return -ENOMEM; | 499 | return -ENOMEM; |
| 500 | 500 | ||
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 0495fa651225..80995ef0868c 100644 --- a/drivers/usb/core/hcd.c +++ b/drivers/usb/core/hcd.c | |||
| @@ -1684,6 +1684,24 @@ int usb_hcd_alloc_bandwidth(struct usb_device *udev, | |||
| 1684 | } | 1684 | } |
| 1685 | } | 1685 | } |
| 1686 | if (cur_alt && new_alt) { | 1686 | if (cur_alt && new_alt) { |
| 1687 | struct usb_interface *iface = usb_ifnum_to_if(udev, | ||
| 1688 | cur_alt->desc.bInterfaceNumber); | ||
| 1689 | |||
| 1690 | if (iface->resetting_device) { | ||
| 1691 | /* | ||
| 1692 | * The USB core just reset the device, so the xHCI host | ||
| 1693 | * and the device will think alt setting 0 is installed. | ||
| 1694 | * However, the USB core will pass in the alternate | ||
| 1695 | * setting installed before the reset as cur_alt. Dig | ||
| 1696 | * out the alternate setting 0 structure, or the first | ||
| 1697 | * alternate setting if a broken device doesn't have alt | ||
| 1698 | * setting 0. | ||
| 1699 | */ | ||
| 1700 | cur_alt = usb_altnum_to_altsetting(iface, 0); | ||
| 1701 | if (!cur_alt) | ||
| 1702 | cur_alt = &iface->altsetting[0]; | ||
| 1703 | } | ||
| 1704 | |||
| 1687 | /* Drop all the endpoints in the current alt setting */ | 1705 | /* Drop all the endpoints in the current alt setting */ |
| 1688 | for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) { | 1706 | for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) { |
| 1689 | ret = hcd->driver->drop_endpoint(hcd, udev, | 1707 | ret = hcd->driver->drop_endpoint(hcd, udev, |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 0cec6caf6e9b..35cc8b9ba1f5 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
| @@ -3347,6 +3347,9 @@ static void hub_events(void) | |||
| 3347 | USB_PORT_FEAT_C_SUSPEND); | 3347 | USB_PORT_FEAT_C_SUSPEND); |
| 3348 | udev = hdev->children[i-1]; | 3348 | udev = hdev->children[i-1]; |
| 3349 | if (udev) { | 3349 | if (udev) { |
| 3350 | /* TRSMRCY = 10 msec */ | ||
| 3351 | msleep(10); | ||
| 3352 | |||
| 3350 | usb_lock_device(udev); | 3353 | usb_lock_device(udev); |
| 3351 | ret = remote_wakeup(hdev-> | 3354 | ret = remote_wakeup(hdev-> |
| 3352 | children[i-1]); | 3355 | children[i-1]); |
| @@ -3692,19 +3695,14 @@ static int usb_reset_and_verify_device(struct usb_device *udev) | |||
| 3692 | usb_enable_interface(udev, intf, true); | 3695 | usb_enable_interface(udev, intf, true); |
| 3693 | ret = 0; | 3696 | ret = 0; |
| 3694 | } else { | 3697 | } else { |
| 3695 | /* We've just reset the device, so it will think alt | 3698 | /* Let the bandwidth allocation function know that this |
| 3696 | * setting 0 is installed. For usb_set_interface() to | 3699 | * device has been reset, and it will have to use |
| 3697 | * work properly, we need to set the current alternate | 3700 | * alternate setting 0 as the current alternate setting. |
| 3698 | * interface setting to 0 (or the first alt setting, if | ||
| 3699 | * the device doesn't have alt setting 0). | ||
| 3700 | */ | 3701 | */ |
| 3701 | intf->cur_altsetting = | 3702 | intf->resetting_device = 1; |
| 3702 | usb_find_alt_setting(config, i, 0); | ||
| 3703 | if (!intf->cur_altsetting) | ||
| 3704 | intf->cur_altsetting = | ||
| 3705 | &config->intf_cache[i]->altsetting[0]; | ||
| 3706 | ret = usb_set_interface(udev, desc->bInterfaceNumber, | 3703 | ret = usb_set_interface(udev, desc->bInterfaceNumber, |
| 3707 | desc->bAlternateSetting); | 3704 | desc->bAlternateSetting); |
| 3705 | intf->resetting_device = 0; | ||
| 3708 | } | 3706 | } |
| 3709 | if (ret < 0) { | 3707 | if (ret < 0) { |
| 3710 | dev_err(&udev->dev, "failed to restore interface %d " | 3708 | dev_err(&udev->dev, "failed to restore interface %d " |
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c index 1b994846e8e0..9bc95fec793f 100644 --- a/drivers/usb/core/message.c +++ b/drivers/usb/core/message.c | |||
| @@ -906,11 +906,11 @@ char *usb_cache_string(struct usb_device *udev, int index) | |||
| 906 | if (index <= 0) | 906 | if (index <= 0) |
| 907 | return NULL; | 907 | return NULL; |
| 908 | 908 | ||
| 909 | buf = kmalloc(MAX_USB_STRING_SIZE, GFP_KERNEL); | 909 | buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO); |
| 910 | if (buf) { | 910 | if (buf) { |
| 911 | len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE); | 911 | len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE); |
| 912 | if (len > 0) { | 912 | if (len > 0) { |
| 913 | smallbuf = kmalloc(++len, GFP_KERNEL); | 913 | smallbuf = kmalloc(++len, GFP_NOIO); |
| 914 | if (!smallbuf) | 914 | if (!smallbuf) |
| 915 | return buf; | 915 | return buf; |
| 916 | memcpy(smallbuf, buf, len); | 916 | memcpy(smallbuf, buf, len); |
| @@ -1731,7 +1731,7 @@ int usb_set_configuration(struct usb_device *dev, int configuration) | |||
| 1731 | if (cp) { | 1731 | if (cp) { |
| 1732 | nintf = cp->desc.bNumInterfaces; | 1732 | nintf = cp->desc.bNumInterfaces; |
| 1733 | new_interfaces = kmalloc(nintf * sizeof(*new_interfaces), | 1733 | new_interfaces = kmalloc(nintf * sizeof(*new_interfaces), |
| 1734 | GFP_KERNEL); | 1734 | GFP_NOIO); |
| 1735 | if (!new_interfaces) { | 1735 | if (!new_interfaces) { |
| 1736 | dev_err(&dev->dev, "Out of memory\n"); | 1736 | dev_err(&dev->dev, "Out of memory\n"); |
| 1737 | return -ENOMEM; | 1737 | return -ENOMEM; |
| @@ -1740,7 +1740,7 @@ int usb_set_configuration(struct usb_device *dev, int configuration) | |||
| 1740 | for (; n < nintf; ++n) { | 1740 | for (; n < nintf; ++n) { |
| 1741 | new_interfaces[n] = kzalloc( | 1741 | new_interfaces[n] = kzalloc( |
| 1742 | sizeof(struct usb_interface), | 1742 | sizeof(struct usb_interface), |
| 1743 | GFP_KERNEL); | 1743 | GFP_NOIO); |
| 1744 | if (!new_interfaces[n]) { | 1744 | if (!new_interfaces[n]) { |
| 1745 | dev_err(&dev->dev, "Out of memory\n"); | 1745 | dev_err(&dev->dev, "Out of memory\n"); |
| 1746 | ret = -ENOMEM; | 1746 | ret = -ENOMEM; |
diff --git a/drivers/usb/core/sysfs.c b/drivers/usb/core/sysfs.c index 485edf937f25..5f3908f6e2dc 100644 --- a/drivers/usb/core/sysfs.c +++ b/drivers/usb/core/sysfs.c | |||
| @@ -115,6 +115,12 @@ show_speed(struct device *dev, struct device_attribute *attr, char *buf) | |||
| 115 | case USB_SPEED_HIGH: | 115 | case USB_SPEED_HIGH: |
| 116 | speed = "480"; | 116 | speed = "480"; |
| 117 | break; | 117 | break; |
| 118 | case USB_SPEED_VARIABLE: | ||
| 119 | speed = "480"; | ||
| 120 | break; | ||
| 121 | case USB_SPEED_SUPER: | ||
| 122 | speed = "5000"; | ||
| 123 | break; | ||
| 118 | default: | 124 | default: |
| 119 | speed = "unknown"; | 125 | speed = "unknown"; |
| 120 | } | 126 | } |
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 5859522d6edd..1ec3857f22e6 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
| @@ -787,9 +787,10 @@ static irqreturn_t ehci_irq (struct usb_hcd *hcd) | |||
| 787 | 787 | ||
| 788 | /* start 20 msec resume signaling from this port, | 788 | /* start 20 msec resume signaling from this port, |
| 789 | * and make khubd collect PORT_STAT_C_SUSPEND to | 789 | * and make khubd collect PORT_STAT_C_SUSPEND to |
| 790 | * stop that signaling. | 790 | * stop that signaling. Use 5 ms extra for safety, |
| 791 | * like usb_port_resume() does. | ||
| 791 | */ | 792 | */ |
| 792 | ehci->reset_done [i] = jiffies + msecs_to_jiffies (20); | 793 | ehci->reset_done[i] = jiffies + msecs_to_jiffies(25); |
| 793 | ehci_dbg (ehci, "port %d remote wakeup\n", i + 1); | 794 | ehci_dbg (ehci, "port %d remote wakeup\n", i + 1); |
| 794 | mod_timer(&hcd->rh_timer, ehci->reset_done[i]); | 795 | mod_timer(&hcd->rh_timer, ehci->reset_done[i]); |
| 795 | } | 796 | } |
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 2c6571c05f35..c75d9270c752 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
| @@ -120,9 +120,26 @@ static int ehci_bus_suspend (struct usb_hcd *hcd) | |||
| 120 | del_timer_sync(&ehci->watchdog); | 120 | del_timer_sync(&ehci->watchdog); |
| 121 | del_timer_sync(&ehci->iaa_watchdog); | 121 | del_timer_sync(&ehci->iaa_watchdog); |
| 122 | 122 | ||
| 123 | port = HCS_N_PORTS (ehci->hcs_params); | ||
| 124 | spin_lock_irq (&ehci->lock); | 123 | spin_lock_irq (&ehci->lock); |
| 125 | 124 | ||
| 125 | /* Once the controller is stopped, port resumes that are already | ||
| 126 | * in progress won't complete. Hence if remote wakeup is enabled | ||
| 127 | * for the root hub and any ports are in the middle of a resume or | ||
| 128 | * remote wakeup, we must fail the suspend. | ||
| 129 | */ | ||
| 130 | if (hcd->self.root_hub->do_remote_wakeup) { | ||
| 131 | port = HCS_N_PORTS(ehci->hcs_params); | ||
| 132 | while (port--) { | ||
| 133 | if (ehci->reset_done[port] != 0) { | ||
| 134 | spin_unlock_irq(&ehci->lock); | ||
| 135 | ehci_dbg(ehci, "suspend failed because " | ||
| 136 | "port %d is resuming\n", | ||
| 137 | port + 1); | ||
| 138 | return -EBUSY; | ||
| 139 | } | ||
| 140 | } | ||
| 141 | } | ||
| 142 | |||
| 126 | /* stop schedules, clean any completed work */ | 143 | /* stop schedules, clean any completed work */ |
| 127 | if (HC_IS_RUNNING(hcd->state)) { | 144 | if (HC_IS_RUNNING(hcd->state)) { |
| 128 | ehci_quiesce (ehci); | 145 | ehci_quiesce (ehci); |
| @@ -138,6 +155,7 @@ static int ehci_bus_suspend (struct usb_hcd *hcd) | |||
| 138 | */ | 155 | */ |
| 139 | ehci->bus_suspended = 0; | 156 | ehci->bus_suspended = 0; |
| 140 | ehci->owned_ports = 0; | 157 | ehci->owned_ports = 0; |
| 158 | port = HCS_N_PORTS(ehci->hcs_params); | ||
| 141 | while (port--) { | 159 | while (port--) { |
| 142 | u32 __iomem *reg = &ehci->regs->port_status [port]; | 160 | u32 __iomem *reg = &ehci->regs->port_status [port]; |
| 143 | u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; | 161 | u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; |
diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c index a427d3b00634..89521775c567 100644 --- a/drivers/usb/host/ehci-q.c +++ b/drivers/usb/host/ehci-q.c | |||
| @@ -849,9 +849,10 @@ qh_make ( | |||
| 849 | * But interval 1 scheduling is simpler, and | 849 | * But interval 1 scheduling is simpler, and |
| 850 | * includes high bandwidth. | 850 | * includes high bandwidth. |
| 851 | */ | 851 | */ |
| 852 | dbg ("intr period %d uframes, NYET!", | 852 | urb->interval = 1; |
| 853 | urb->interval); | 853 | } else if (qh->period > ehci->periodic_size) { |
| 854 | goto done; | 854 | qh->period = ehci->periodic_size; |
| 855 | urb->interval = qh->period << 3; | ||
| 855 | } | 856 | } |
| 856 | } else { | 857 | } else { |
| 857 | int think_time; | 858 | int think_time; |
| @@ -874,6 +875,10 @@ qh_make ( | |||
| 874 | usb_calc_bus_time (urb->dev->speed, | 875 | usb_calc_bus_time (urb->dev->speed, |
| 875 | is_input, 0, max_packet (maxp))); | 876 | is_input, 0, max_packet (maxp))); |
| 876 | qh->period = urb->interval; | 877 | qh->period = urb->interval; |
| 878 | if (qh->period > ehci->periodic_size) { | ||
| 879 | qh->period = ehci->periodic_size; | ||
| 880 | urb->interval = qh->period; | ||
| 881 | } | ||
| 877 | } | 882 | } |
| 878 | } | 883 | } |
| 879 | 884 | ||
diff --git a/drivers/usb/host/fhci-hcd.c b/drivers/usb/host/fhci-hcd.c index 0951818ef93b..78e7c3cfcb72 100644 --- a/drivers/usb/host/fhci-hcd.c +++ b/drivers/usb/host/fhci-hcd.c | |||
| @@ -242,9 +242,10 @@ err: | |||
| 242 | static void fhci_usb_free(void *lld) | 242 | static void fhci_usb_free(void *lld) |
| 243 | { | 243 | { |
| 244 | struct fhci_usb *usb = lld; | 244 | struct fhci_usb *usb = lld; |
| 245 | struct fhci_hcd *fhci = usb->fhci; | 245 | struct fhci_hcd *fhci; |
| 246 | 246 | ||
| 247 | if (usb) { | 247 | if (usb) { |
| 248 | fhci = usb->fhci; | ||
| 248 | fhci_config_transceiver(fhci, FHCI_PORT_POWER_OFF); | 249 | fhci_config_transceiver(fhci, FHCI_PORT_POWER_OFF); |
| 249 | fhci_ep0_free(usb); | 250 | fhci_ep0_free(usb); |
| 250 | kfree(usb->actual_frame); | 251 | kfree(usb->actual_frame); |
diff --git a/drivers/usb/host/isp1362-hcd.c b/drivers/usb/host/isp1362-hcd.c index 73352f3739b5..42971657fde2 100644 --- a/drivers/usb/host/isp1362-hcd.c +++ b/drivers/usb/host/isp1362-hcd.c | |||
| @@ -2270,10 +2270,10 @@ static int isp1362_mem_config(struct usb_hcd *hcd) | |||
| 2270 | dev_info(hcd->self.controller, "ISP1362 Memory usage:\n"); | 2270 | dev_info(hcd->self.controller, "ISP1362 Memory usage:\n"); |
| 2271 | dev_info(hcd->self.controller, " ISTL: 2 * %4d: %4d @ $%04x:$%04x\n", | 2271 | dev_info(hcd->self.controller, " ISTL: 2 * %4d: %4d @ $%04x:$%04x\n", |
| 2272 | istl_size / 2, istl_size, 0, istl_size / 2); | 2272 | istl_size / 2, istl_size, 0, istl_size / 2); |
| 2273 | dev_info(hcd->self.controller, " INTL: %4d * (%3lu+8): %4d @ $%04x\n", | 2273 | dev_info(hcd->self.controller, " INTL: %4d * (%3zu+8): %4d @ $%04x\n", |
| 2274 | ISP1362_INTL_BUFFERS, intl_blksize - PTD_HEADER_SIZE, | 2274 | ISP1362_INTL_BUFFERS, intl_blksize - PTD_HEADER_SIZE, |
| 2275 | intl_size, istl_size); | 2275 | intl_size, istl_size); |
| 2276 | dev_info(hcd->self.controller, " ATL : %4d * (%3lu+8): %4d @ $%04x\n", | 2276 | dev_info(hcd->self.controller, " ATL : %4d * (%3zu+8): %4d @ $%04x\n", |
| 2277 | atl_buffers, atl_blksize - PTD_HEADER_SIZE, | 2277 | atl_buffers, atl_blksize - PTD_HEADER_SIZE, |
| 2278 | atl_size, istl_size + intl_size); | 2278 | atl_size, istl_size + intl_size); |
| 2279 | dev_info(hcd->self.controller, " USED/FREE: %4d %4d\n", total, | 2279 | dev_info(hcd->self.controller, " USED/FREE: %4d %4d\n", total, |
| @@ -2697,6 +2697,8 @@ static int __init isp1362_probe(struct platform_device *pdev) | |||
| 2697 | void __iomem *data_reg; | 2697 | void __iomem *data_reg; |
| 2698 | int irq; | 2698 | int irq; |
| 2699 | int retval = 0; | 2699 | int retval = 0; |
| 2700 | struct resource *irq_res; | ||
| 2701 | unsigned int irq_flags = 0; | ||
| 2700 | 2702 | ||
| 2701 | /* basic sanity checks first. board-specific init logic should | 2703 | /* basic sanity checks first. board-specific init logic should |
| 2702 | * have initialized this the three resources and probably board | 2704 | * have initialized this the three resources and probably board |
| @@ -2710,11 +2712,12 @@ static int __init isp1362_probe(struct platform_device *pdev) | |||
| 2710 | 2712 | ||
| 2711 | data = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 2713 | data = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 2712 | addr = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 2714 | addr = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 2713 | irq = platform_get_irq(pdev, 0); | 2715 | irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 2714 | if (!addr || !data || irq < 0) { | 2716 | if (!addr || !data || !irq_res) { |
| 2715 | retval = -ENODEV; | 2717 | retval = -ENODEV; |
| 2716 | goto err1; | 2718 | goto err1; |
| 2717 | } | 2719 | } |
| 2720 | irq = irq_res->start; | ||
| 2718 | 2721 | ||
| 2719 | #ifdef CONFIG_USB_HCD_DMA | 2722 | #ifdef CONFIG_USB_HCD_DMA |
| 2720 | if (pdev->dev.dma_mask) { | 2723 | if (pdev->dev.dma_mask) { |
| @@ -2781,12 +2784,16 @@ static int __init isp1362_probe(struct platform_device *pdev) | |||
| 2781 | } | 2784 | } |
| 2782 | #endif | 2785 | #endif |
| 2783 | 2786 | ||
| 2784 | #ifdef CONFIG_ARM | 2787 | if (irq_res->flags & IORESOURCE_IRQ_HIGHEDGE) |
| 2785 | if (isp1362_hcd->board) | 2788 | irq_flags |= IRQF_TRIGGER_RISING; |
| 2786 | set_irq_type(irq, isp1362_hcd->board->int_act_high ? IRQT_RISING : IRQT_FALLING); | 2789 | if (irq_res->flags & IORESOURCE_IRQ_LOWEDGE) |
| 2787 | #endif | 2790 | irq_flags |= IRQF_TRIGGER_FALLING; |
| 2791 | if (irq_res->flags & IORESOURCE_IRQ_HIGHLEVEL) | ||
| 2792 | irq_flags |= IRQF_TRIGGER_HIGH; | ||
| 2793 | if (irq_res->flags & IORESOURCE_IRQ_LOWLEVEL) | ||
| 2794 | irq_flags |= IRQF_TRIGGER_LOW; | ||
| 2788 | 2795 | ||
| 2789 | retval = usb_add_hcd(hcd, irq, IRQF_TRIGGER_LOW | IRQF_DISABLED | IRQF_SHARED); | 2796 | retval = usb_add_hcd(hcd, irq, irq_flags | IRQF_DISABLED | IRQF_SHARED); |
| 2790 | if (retval != 0) | 2797 | if (retval != 0) |
| 2791 | goto err6; | 2798 | goto err6; |
| 2792 | pr_info("%s, irq %d\n", hcd->product_desc, irq); | 2799 | pr_info("%s, irq %d\n", hcd->product_desc, irq); |
diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c index 9600a58299db..27b8f7cb4471 100644 --- a/drivers/usb/host/isp1760-hcd.c +++ b/drivers/usb/host/isp1760-hcd.c | |||
| @@ -1039,12 +1039,12 @@ static void do_atl_int(struct usb_hcd *usb_hcd) | |||
| 1039 | if (!nakcount && (dw3 & DW3_QTD_ACTIVE)) { | 1039 | if (!nakcount && (dw3 & DW3_QTD_ACTIVE)) { |
| 1040 | u32 buffstatus; | 1040 | u32 buffstatus; |
| 1041 | 1041 | ||
| 1042 | /* XXX | 1042 | /* |
| 1043 | * NAKs are handled in HW by the chip. Usually if the | 1043 | * NAKs are handled in HW by the chip. Usually if the |
| 1044 | * device is not able to send data fast enough. | 1044 | * device is not able to send data fast enough. |
| 1045 | * This did not trigger for a long time now. | 1045 | * This happens mostly on slower hardware. |
| 1046 | */ | 1046 | */ |
| 1047 | printk(KERN_ERR "Reloading ptd %p/%p... qh %p readed: " | 1047 | printk(KERN_NOTICE "Reloading ptd %p/%p... qh %p read: " |
| 1048 | "%d of %zu done: %08x cur: %08x\n", qtd, | 1048 | "%d of %zu done: %08x cur: %08x\n", qtd, |
| 1049 | urb, qh, PTD_XFERRED_LENGTH(dw3), | 1049 | urb, qh, PTD_XFERRED_LENGTH(dw3), |
| 1050 | qtd->length, done_map, | 1050 | qtd->length, done_map, |
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index b7a661c02bcd..bee558aed427 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c | |||
| @@ -35,7 +35,9 @@ | |||
| 35 | #include <linux/usb.h> | 35 | #include <linux/usb.h> |
| 36 | #include <linux/platform_device.h> | 36 | #include <linux/platform_device.h> |
| 37 | #include <linux/io.h> | 37 | #include <linux/io.h> |
| 38 | #include <linux/mm.h> | ||
| 38 | #include <linux/irq.h> | 39 | #include <linux/irq.h> |
| 40 | #include <asm/cacheflush.h> | ||
| 39 | 41 | ||
| 40 | #include "../core/hcd.h" | 42 | #include "../core/hcd.h" |
| 41 | #include "r8a66597.h" | 43 | #include "r8a66597.h" |
| @@ -216,8 +218,17 @@ static void disable_controller(struct r8a66597 *r8a66597) | |||
| 216 | { | 218 | { |
| 217 | int port; | 219 | int port; |
| 218 | 220 | ||
| 221 | /* disable interrupts */ | ||
| 219 | r8a66597_write(r8a66597, 0, INTENB0); | 222 | r8a66597_write(r8a66597, 0, INTENB0); |
| 220 | r8a66597_write(r8a66597, 0, INTSTS0); | 223 | r8a66597_write(r8a66597, 0, INTENB1); |
| 224 | r8a66597_write(r8a66597, 0, BRDYENB); | ||
| 225 | r8a66597_write(r8a66597, 0, BEMPENB); | ||
| 226 | r8a66597_write(r8a66597, 0, NRDYENB); | ||
| 227 | |||
| 228 | /* clear status */ | ||
| 229 | r8a66597_write(r8a66597, 0, BRDYSTS); | ||
| 230 | r8a66597_write(r8a66597, 0, NRDYSTS); | ||
| 231 | r8a66597_write(r8a66597, 0, BEMPSTS); | ||
| 221 | 232 | ||
| 222 | for (port = 0; port < r8a66597->max_root_hub; port++) | 233 | for (port = 0; port < r8a66597->max_root_hub; port++) |
| 223 | r8a66597_disable_port(r8a66597, port); | 234 | r8a66597_disable_port(r8a66597, port); |
| @@ -811,6 +822,26 @@ static void enable_r8a66597_pipe(struct r8a66597 *r8a66597, struct urb *urb, | |||
| 811 | enable_r8a66597_pipe_dma(r8a66597, dev, pipe, urb); | 822 | enable_r8a66597_pipe_dma(r8a66597, dev, pipe, urb); |
| 812 | } | 823 | } |
| 813 | 824 | ||
| 825 | static void r8a66597_urb_done(struct r8a66597 *r8a66597, struct urb *urb, | ||
| 826 | int status) | ||
| 827 | __releases(r8a66597->lock) | ||
| 828 | __acquires(r8a66597->lock) | ||
| 829 | { | ||
| 830 | if (usb_pipein(urb->pipe) && usb_pipetype(urb->pipe) != PIPE_CONTROL) { | ||
| 831 | void *ptr; | ||
| 832 | |||
| 833 | for (ptr = urb->transfer_buffer; | ||
| 834 | ptr < urb->transfer_buffer + urb->transfer_buffer_length; | ||
| 835 | ptr += PAGE_SIZE) | ||
| 836 | flush_dcache_page(virt_to_page(ptr)); | ||
| 837 | } | ||
| 838 | |||
| 839 | usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597), urb); | ||
| 840 | spin_unlock(&r8a66597->lock); | ||
| 841 | usb_hcd_giveback_urb(r8a66597_to_hcd(r8a66597), urb, status); | ||
| 842 | spin_lock(&r8a66597->lock); | ||
| 843 | } | ||
| 844 | |||
| 814 | /* this function must be called with interrupt disabled */ | 845 | /* this function must be called with interrupt disabled */ |
| 815 | static void force_dequeue(struct r8a66597 *r8a66597, u16 pipenum, u16 address) | 846 | static void force_dequeue(struct r8a66597 *r8a66597, u16 pipenum, u16 address) |
| 816 | { | 847 | { |
| @@ -829,15 +860,9 @@ static void force_dequeue(struct r8a66597 *r8a66597, u16 pipenum, u16 address) | |||
| 829 | list_del(&td->queue); | 860 | list_del(&td->queue); |
| 830 | kfree(td); | 861 | kfree(td); |
| 831 | 862 | ||
| 832 | if (urb) { | 863 | if (urb) |
| 833 | usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597), | 864 | r8a66597_urb_done(r8a66597, urb, -ENODEV); |
| 834 | urb); | ||
| 835 | 865 | ||
| 836 | spin_unlock(&r8a66597->lock); | ||
| 837 | usb_hcd_giveback_urb(r8a66597_to_hcd(r8a66597), urb, | ||
| 838 | -ENODEV); | ||
| 839 | spin_lock(&r8a66597->lock); | ||
| 840 | } | ||
| 841 | break; | 866 | break; |
| 842 | } | 867 | } |
| 843 | } | 868 | } |
| @@ -997,6 +1022,8 @@ static void start_root_hub_sampling(struct r8a66597 *r8a66597, int port, | |||
| 997 | /* this function must be called with interrupt disabled */ | 1022 | /* this function must be called with interrupt disabled */ |
| 998 | static void r8a66597_check_syssts(struct r8a66597 *r8a66597, int port, | 1023 | static void r8a66597_check_syssts(struct r8a66597 *r8a66597, int port, |
| 999 | u16 syssts) | 1024 | u16 syssts) |
| 1025 | __releases(r8a66597->lock) | ||
| 1026 | __acquires(r8a66597->lock) | ||
| 1000 | { | 1027 | { |
| 1001 | if (syssts == SE0) { | 1028 | if (syssts == SE0) { |
| 1002 | r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port)); | 1029 | r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port)); |
| @@ -1014,7 +1041,9 @@ static void r8a66597_check_syssts(struct r8a66597 *r8a66597, int port, | |||
| 1014 | usb_hcd_resume_root_hub(r8a66597_to_hcd(r8a66597)); | 1041 | usb_hcd_resume_root_hub(r8a66597_to_hcd(r8a66597)); |
| 1015 | } | 1042 | } |
| 1016 | 1043 | ||
| 1044 | spin_unlock(&r8a66597->lock); | ||
| 1017 | usb_hcd_poll_rh_status(r8a66597_to_hcd(r8a66597)); | 1045 | usb_hcd_poll_rh_status(r8a66597_to_hcd(r8a66597)); |
| 1046 | spin_lock(&r8a66597->lock); | ||
| 1018 | } | 1047 | } |
| 1019 | 1048 | ||
| 1020 | /* this function must be called with interrupt disabled */ | 1049 | /* this function must be called with interrupt disabled */ |
| @@ -1274,10 +1303,7 @@ __releases(r8a66597->lock) __acquires(r8a66597->lock) | |||
| 1274 | if (usb_pipeisoc(urb->pipe)) | 1303 | if (usb_pipeisoc(urb->pipe)) |
| 1275 | urb->start_frame = r8a66597_get_frame(hcd); | 1304 | urb->start_frame = r8a66597_get_frame(hcd); |
| 1276 | 1305 | ||
| 1277 | usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597), urb); | 1306 | r8a66597_urb_done(r8a66597, urb, status); |
| 1278 | spin_unlock(&r8a66597->lock); | ||
| 1279 | usb_hcd_giveback_urb(hcd, urb, status); | ||
| 1280 | spin_lock(&r8a66597->lock); | ||
| 1281 | } | 1307 | } |
| 1282 | 1308 | ||
| 1283 | if (restart) { | 1309 | if (restart) { |
| @@ -2466,6 +2492,12 @@ static int __devinit r8a66597_probe(struct platform_device *pdev) | |||
| 2466 | r8a66597->rh_timer.data = (unsigned long)r8a66597; | 2492 | r8a66597->rh_timer.data = (unsigned long)r8a66597; |
| 2467 | r8a66597->reg = (unsigned long)reg; | 2493 | r8a66597->reg = (unsigned long)reg; |
| 2468 | 2494 | ||
| 2495 | /* make sure no interrupts are pending */ | ||
| 2496 | ret = r8a66597_clock_enable(r8a66597); | ||
| 2497 | if (ret < 0) | ||
| 2498 | goto clean_up3; | ||
| 2499 | disable_controller(r8a66597); | ||
| 2500 | |||
| 2469 | for (i = 0; i < R8A66597_MAX_NUM_PIPE; i++) { | 2501 | for (i = 0; i < R8A66597_MAX_NUM_PIPE; i++) { |
| 2470 | INIT_LIST_HEAD(&r8a66597->pipe_queue[i]); | 2502 | INIT_LIST_HEAD(&r8a66597->pipe_queue[i]); |
| 2471 | init_timer(&r8a66597->td_timer[i]); | 2503 | init_timer(&r8a66597->td_timer[i]); |
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 5cd0e48f67fb..99cd00fd3514 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
| @@ -749,7 +749,20 @@ static int uhci_rh_suspend(struct usb_hcd *hcd) | |||
| 749 | spin_lock_irq(&uhci->lock); | 749 | spin_lock_irq(&uhci->lock); |
| 750 | if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) | 750 | if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) |
| 751 | rc = -ESHUTDOWN; | 751 | rc = -ESHUTDOWN; |
| 752 | else if (!uhci->dead) | 752 | else if (uhci->dead) |
| 753 | ; /* Dead controllers tell no tales */ | ||
| 754 | |||
| 755 | /* Once the controller is stopped, port resumes that are already | ||
| 756 | * in progress won't complete. Hence if remote wakeup is enabled | ||
| 757 | * for the root hub and any ports are in the middle of a resume or | ||
| 758 | * remote wakeup, we must fail the suspend. | ||
| 759 | */ | ||
| 760 | else if (hcd->self.root_hub->do_remote_wakeup && | ||
| 761 | uhci->resuming_ports) { | ||
| 762 | dev_dbg(uhci_dev(uhci), "suspend failed because a port " | ||
| 763 | "is resuming\n"); | ||
| 764 | rc = -EBUSY; | ||
| 765 | } else | ||
| 753 | suspend_rh(uhci, UHCI_RH_SUSPENDED); | 766 | suspend_rh(uhci, UHCI_RH_SUSPENDED); |
| 754 | spin_unlock_irq(&uhci->lock); | 767 | spin_unlock_irq(&uhci->lock); |
| 755 | return rc; | 768 | return rc; |
diff --git a/drivers/usb/host/uhci-hub.c b/drivers/usb/host/uhci-hub.c index 885b585360b9..8270055848ca 100644 --- a/drivers/usb/host/uhci-hub.c +++ b/drivers/usb/host/uhci-hub.c | |||
| @@ -167,7 +167,7 @@ static void uhci_check_ports(struct uhci_hcd *uhci) | |||
| 167 | /* Port received a wakeup request */ | 167 | /* Port received a wakeup request */ |
| 168 | set_bit(port, &uhci->resuming_ports); | 168 | set_bit(port, &uhci->resuming_ports); |
| 169 | uhci->ports_timeout = jiffies + | 169 | uhci->ports_timeout = jiffies + |
| 170 | msecs_to_jiffies(20); | 170 | msecs_to_jiffies(25); |
| 171 | 171 | ||
| 172 | /* Make sure we see the port again | 172 | /* Make sure we see the port again |
| 173 | * after the resuming period is over. */ | 173 | * after the resuming period is over. */ |
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index f1ea3a33b6e6..83443d6306d6 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
| @@ -386,12 +386,12 @@ int usb_serial_generic_chars_in_buffer(struct tty_struct *tty) | |||
| 386 | 386 | ||
| 387 | dbg("%s - port %d", __func__, port->number); | 387 | dbg("%s - port %d", __func__, port->number); |
| 388 | 388 | ||
| 389 | if (serial->type->max_in_flight_urbs) { | 389 | spin_lock_irqsave(&port->lock, flags); |
| 390 | spin_lock_irqsave(&port->lock, flags); | 390 | if (serial->type->max_in_flight_urbs) |
| 391 | chars = port->tx_bytes_flight; | 391 | chars = port->tx_bytes_flight; |
| 392 | spin_unlock_irqrestore(&port->lock, flags); | 392 | else if (serial->num_bulk_out) |
| 393 | } else if (serial->num_bulk_out) | ||
| 394 | chars = kfifo_len(&port->write_fifo); | 393 | chars = kfifo_len(&port->write_fifo); |
| 394 | spin_unlock_irqrestore(&port->lock, flags); | ||
| 395 | 395 | ||
| 396 | dbg("%s - returns %d", __func__, chars); | 396 | dbg("%s - returns %d", __func__, chars); |
| 397 | return chars; | 397 | return chars; |
| @@ -489,6 +489,8 @@ void usb_serial_generic_write_bulk_callback(struct urb *urb) | |||
| 489 | dbg("%s - port %d", __func__, port->number); | 489 | dbg("%s - port %d", __func__, port->number); |
| 490 | 490 | ||
| 491 | if (port->serial->type->max_in_flight_urbs) { | 491 | if (port->serial->type->max_in_flight_urbs) { |
| 492 | kfree(urb->transfer_buffer); | ||
| 493 | |||
| 492 | spin_lock_irqsave(&port->lock, flags); | 494 | spin_lock_irqsave(&port->lock, flags); |
| 493 | --port->urbs_in_flight; | 495 | --port->urbs_in_flight; |
| 494 | port->tx_bytes_flight -= urb->transfer_buffer_length; | 496 | port->tx_bytes_flight -= urb->transfer_buffer_length; |
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 64a0a2c27e12..c932f9053188 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
| @@ -1807,13 +1807,6 @@ UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, | |||
| 1807 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1807 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
| 1808 | US_FL_GO_SLOW ), | 1808 | US_FL_GO_SLOW ), |
| 1809 | 1809 | ||
| 1810 | /* Reported by Rohan Hart <rohan.hart17@gmail.com> */ | ||
| 1811 | UNUSUAL_DEV( 0x2770, 0x915d, 0x0010, 0x0010, | ||
| 1812 | "INTOVA", | ||
| 1813 | "Pixtreme", | ||
| 1814 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
| 1815 | US_FL_FIX_CAPACITY ), | ||
| 1816 | |||
| 1817 | /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com> | 1810 | /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com> |
| 1818 | * Mio Moov 330 | 1811 | * Mio Moov 330 |
| 1819 | */ | 1812 | */ |
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c index 5a53d4f0dd11..e9f995486ec1 100644 --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c | |||
| @@ -434,7 +434,8 @@ static void adjust_quirks(struct us_data *us) | |||
| 434 | u16 vid = le16_to_cpu(us->pusb_dev->descriptor.idVendor); | 434 | u16 vid = le16_to_cpu(us->pusb_dev->descriptor.idVendor); |
| 435 | u16 pid = le16_to_cpu(us->pusb_dev->descriptor.idProduct); | 435 | u16 pid = le16_to_cpu(us->pusb_dev->descriptor.idProduct); |
| 436 | unsigned f = 0; | 436 | unsigned f = 0; |
| 437 | unsigned int mask = (US_FL_SANE_SENSE | US_FL_FIX_CAPACITY | | 437 | unsigned int mask = (US_FL_SANE_SENSE | US_FL_BAD_SENSE | |
| 438 | US_FL_FIX_CAPACITY | | ||
| 438 | US_FL_CAPACITY_HEURISTICS | US_FL_IGNORE_DEVICE | | 439 | US_FL_CAPACITY_HEURISTICS | US_FL_IGNORE_DEVICE | |
| 439 | US_FL_NOT_LOCKABLE | US_FL_MAX_SECTORS_64 | | 440 | US_FL_NOT_LOCKABLE | US_FL_MAX_SECTORS_64 | |
| 440 | US_FL_CAPACITY_OK | US_FL_IGNORE_RESIDUE | | 441 | US_FL_CAPACITY_OK | US_FL_IGNORE_RESIDUE | |
diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c index 66358fa825f3..b4b6deceed15 100644 --- a/drivers/video/imxfb.c +++ b/drivers/video/imxfb.c | |||
| @@ -593,7 +593,8 @@ static int imxfb_activate_var(struct fb_var_screeninfo *var, struct fb_info *inf | |||
| 593 | */ | 593 | */ |
| 594 | static int imxfb_suspend(struct platform_device *dev, pm_message_t state) | 594 | static int imxfb_suspend(struct platform_device *dev, pm_message_t state) |
| 595 | { | 595 | { |
| 596 | struct imxfb_info *fbi = platform_get_drvdata(dev); | 596 | struct fb_info *info = platform_get_drvdata(dev); |
| 597 | struct imxfb_info *fbi = info->par; | ||
| 597 | 598 | ||
| 598 | pr_debug("%s\n", __func__); | 599 | pr_debug("%s\n", __func__); |
| 599 | 600 | ||
| @@ -603,7 +604,8 @@ static int imxfb_suspend(struct platform_device *dev, pm_message_t state) | |||
| 603 | 604 | ||
| 604 | static int imxfb_resume(struct platform_device *dev) | 605 | static int imxfb_resume(struct platform_device *dev) |
| 605 | { | 606 | { |
| 606 | struct imxfb_info *fbi = platform_get_drvdata(dev); | 607 | struct fb_info *info = platform_get_drvdata(dev); |
| 608 | struct imxfb_info *fbi = info->par; | ||
| 607 | 609 | ||
| 608 | pr_debug("%s\n", __func__); | 610 | pr_debug("%s\n", __func__); |
| 609 | 611 | ||
diff --git a/drivers/video/mx3fb.c b/drivers/video/mx3fb.c index 054ef29be479..772ba3f45e6f 100644 --- a/drivers/video/mx3fb.c +++ b/drivers/video/mx3fb.c | |||
| @@ -324,8 +324,11 @@ static void sdc_enable_channel(struct mx3fb_info *mx3_fbi) | |||
| 324 | unsigned long flags; | 324 | unsigned long flags; |
| 325 | dma_cookie_t cookie; | 325 | dma_cookie_t cookie; |
| 326 | 326 | ||
| 327 | dev_dbg(mx3fb->dev, "mx3fbi %p, desc %p, sg %p\n", mx3_fbi, | 327 | if (mx3_fbi->txd) |
| 328 | to_tx_desc(mx3_fbi->txd), to_tx_desc(mx3_fbi->txd)->sg); | 328 | dev_dbg(mx3fb->dev, "mx3fbi %p, desc %p, sg %p\n", mx3_fbi, |
| 329 | to_tx_desc(mx3_fbi->txd), to_tx_desc(mx3_fbi->txd)->sg); | ||
| 330 | else | ||
| 331 | dev_dbg(mx3fb->dev, "mx3fbi %p, txd = NULL\n", mx3_fbi); | ||
| 329 | 332 | ||
| 330 | /* This enables the channel */ | 333 | /* This enables the channel */ |
| 331 | if (mx3_fbi->cookie < 0) { | 334 | if (mx3_fbi->cookie < 0) { |
| @@ -646,6 +649,7 @@ static int sdc_set_global_alpha(struct mx3fb_data *mx3fb, bool enable, uint8_t a | |||
| 646 | 649 | ||
| 647 | static void sdc_set_brightness(struct mx3fb_data *mx3fb, uint8_t value) | 650 | static void sdc_set_brightness(struct mx3fb_data *mx3fb, uint8_t value) |
| 648 | { | 651 | { |
| 652 | dev_dbg(mx3fb->dev, "%s: value = %d\n", __func__, value); | ||
| 649 | /* This might be board-specific */ | 653 | /* This might be board-specific */ |
| 650 | mx3fb_write_reg(mx3fb, 0x03000000UL | value << 16, SDC_PWM_CTRL); | 654 | mx3fb_write_reg(mx3fb, 0x03000000UL | value << 16, SDC_PWM_CTRL); |
| 651 | return; | 655 | return; |
| @@ -1486,12 +1490,12 @@ static int mx3fb_probe(struct platform_device *pdev) | |||
| 1486 | goto ersdc0; | 1490 | goto ersdc0; |
| 1487 | } | 1491 | } |
| 1488 | 1492 | ||
| 1493 | mx3fb->backlight_level = 255; | ||
| 1494 | |||
| 1489 | ret = init_fb_chan(mx3fb, to_idmac_chan(chan)); | 1495 | ret = init_fb_chan(mx3fb, to_idmac_chan(chan)); |
| 1490 | if (ret < 0) | 1496 | if (ret < 0) |
| 1491 | goto eisdc0; | 1497 | goto eisdc0; |
| 1492 | 1498 | ||
| 1493 | mx3fb->backlight_level = 255; | ||
| 1494 | |||
| 1495 | return 0; | 1499 | return 0; |
| 1496 | 1500 | ||
| 1497 | eisdc0: | 1501 | eisdc0: |
diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c index c7c6455f1fa8..e192b058a688 100644 --- a/drivers/video/omap/dispc.c +++ b/drivers/video/omap/dispc.c | |||
| @@ -189,11 +189,6 @@ static struct { | |||
| 189 | struct omapfb_color_key color_key; | 189 | struct omapfb_color_key color_key; |
| 190 | } dispc; | 190 | } dispc; |
| 191 | 191 | ||
| 192 | static struct platform_device omapdss_device = { | ||
| 193 | .name = "omapdss", | ||
| 194 | .id = -1, | ||
| 195 | }; | ||
| 196 | |||
| 197 | static void enable_lcd_clocks(int enable); | 192 | static void enable_lcd_clocks(int enable); |
| 198 | 193 | ||
| 199 | static void inline dispc_write_reg(int idx, u32 val) | 194 | static void inline dispc_write_reg(int idx, u32 val) |
| @@ -920,20 +915,20 @@ static irqreturn_t omap_dispc_irq_handler(int irq, void *dev) | |||
| 920 | 915 | ||
| 921 | static int get_dss_clocks(void) | 916 | static int get_dss_clocks(void) |
| 922 | { | 917 | { |
| 923 | dispc.dss_ick = clk_get(&omapdss_device.dev, "ick"); | 918 | dispc.dss_ick = clk_get(&dispc.fbdev->dssdev->dev, "ick"); |
| 924 | if (IS_ERR(dispc.dss_ick)) { | 919 | if (IS_ERR(dispc.dss_ick)) { |
| 925 | dev_err(dispc.fbdev->dev, "can't get ick\n"); | 920 | dev_err(dispc.fbdev->dev, "can't get ick\n"); |
| 926 | return PTR_ERR(dispc.dss_ick); | 921 | return PTR_ERR(dispc.dss_ick); |
| 927 | } | 922 | } |
| 928 | 923 | ||
| 929 | dispc.dss1_fck = clk_get(&omapdss_device.dev, "dss1_fck"); | 924 | dispc.dss1_fck = clk_get(&dispc.fbdev->dssdev->dev, "dss1_fck"); |
| 930 | if (IS_ERR(dispc.dss1_fck)) { | 925 | if (IS_ERR(dispc.dss1_fck)) { |
| 931 | dev_err(dispc.fbdev->dev, "can't get dss1_fck\n"); | 926 | dev_err(dispc.fbdev->dev, "can't get dss1_fck\n"); |
| 932 | clk_put(dispc.dss_ick); | 927 | clk_put(dispc.dss_ick); |
| 933 | return PTR_ERR(dispc.dss1_fck); | 928 | return PTR_ERR(dispc.dss1_fck); |
| 934 | } | 929 | } |
| 935 | 930 | ||
| 936 | dispc.dss_54m_fck = clk_get(&omapdss_device.dev, "tv_fck"); | 931 | dispc.dss_54m_fck = clk_get(&dispc.fbdev->dssdev->dev, "tv_fck"); |
| 937 | if (IS_ERR(dispc.dss_54m_fck)) { | 932 | if (IS_ERR(dispc.dss_54m_fck)) { |
| 938 | dev_err(dispc.fbdev->dev, "can't get tv_fck\n"); | 933 | dev_err(dispc.fbdev->dev, "can't get tv_fck\n"); |
| 939 | clk_put(dispc.dss_ick); | 934 | clk_put(dispc.dss_ick); |
| @@ -1385,12 +1380,6 @@ static int omap_dispc_init(struct omapfb_device *fbdev, int ext_mode, | |||
| 1385 | int skip_init = 0; | 1380 | int skip_init = 0; |
| 1386 | int i; | 1381 | int i; |
| 1387 | 1382 | ||
| 1388 | r = platform_device_register(&omapdss_device); | ||
| 1389 | if (r) { | ||
| 1390 | dev_err(fbdev->dev, "can't register omapdss device\n"); | ||
| 1391 | return r; | ||
| 1392 | } | ||
| 1393 | |||
| 1394 | memset(&dispc, 0, sizeof(dispc)); | 1383 | memset(&dispc, 0, sizeof(dispc)); |
| 1395 | 1384 | ||
| 1396 | dispc.base = ioremap(DISPC_BASE, SZ_1K); | 1385 | dispc.base = ioremap(DISPC_BASE, SZ_1K); |
| @@ -1534,7 +1523,6 @@ static void omap_dispc_cleanup(void) | |||
| 1534 | free_irq(INT_24XX_DSS_IRQ, dispc.fbdev); | 1523 | free_irq(INT_24XX_DSS_IRQ, dispc.fbdev); |
| 1535 | put_dss_clocks(); | 1524 | put_dss_clocks(); |
| 1536 | iounmap(dispc.base); | 1525 | iounmap(dispc.base); |
| 1537 | platform_device_unregister(&omapdss_device); | ||
| 1538 | } | 1526 | } |
| 1539 | 1527 | ||
| 1540 | const struct lcd_ctrl omap2_int_ctrl = { | 1528 | const struct lcd_ctrl omap2_int_ctrl = { |
diff --git a/drivers/video/omap/lcd_htcherald.c b/drivers/video/omap/lcd_htcherald.c index a9007c5d1fad..4802419da83b 100644 --- a/drivers/video/omap/lcd_htcherald.c +++ b/drivers/video/omap/lcd_htcherald.c | |||
| @@ -115,12 +115,12 @@ struct platform_driver htcherald_panel_driver = { | |||
| 115 | }, | 115 | }, |
| 116 | }; | 116 | }; |
| 117 | 117 | ||
| 118 | static int htcherald_panel_drv_init(void) | 118 | static int __init htcherald_panel_drv_init(void) |
| 119 | { | 119 | { |
| 120 | return platform_driver_register(&htcherald_panel_driver); | 120 | return platform_driver_register(&htcherald_panel_driver); |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | static void htcherald_panel_drv_cleanup(void) | 123 | static void __exit htcherald_panel_drv_cleanup(void) |
| 124 | { | 124 | { |
| 125 | platform_driver_unregister(&htcherald_panel_driver); | 125 | platform_driver_unregister(&htcherald_panel_driver); |
| 126 | } | 126 | } |
diff --git a/drivers/video/omap/omapfb.h b/drivers/video/omap/omapfb.h index 46e4714014e8..af3c9e571ec3 100644 --- a/drivers/video/omap/omapfb.h +++ b/drivers/video/omap/omapfb.h | |||
| @@ -203,6 +203,8 @@ struct omapfb_device { | |||
| 203 | 203 | ||
| 204 | struct omapfb_mem_desc mem_desc; | 204 | struct omapfb_mem_desc mem_desc; |
| 205 | struct fb_info *fb_info[OMAPFB_PLANE_NUM]; | 205 | struct fb_info *fb_info[OMAPFB_PLANE_NUM]; |
| 206 | |||
| 207 | struct platform_device *dssdev; /* dummy dev for clocks */ | ||
| 206 | }; | 208 | }; |
| 207 | 209 | ||
| 208 | #ifdef CONFIG_ARCH_OMAP1 | 210 | #ifdef CONFIG_ARCH_OMAP1 |
diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c index c7f59a5ccdbc..2c4f470fa086 100644 --- a/drivers/video/omap/omapfb_main.c +++ b/drivers/video/omap/omapfb_main.c | |||
| @@ -83,6 +83,19 @@ static struct caps_table_struct color_caps[] = { | |||
| 83 | { 1 << OMAPFB_COLOR_YUY422, "YUY422", }, | 83 | { 1 << OMAPFB_COLOR_YUY422, "YUY422", }, |
| 84 | }; | 84 | }; |
| 85 | 85 | ||
| 86 | static void omapdss_release(struct device *dev) | ||
| 87 | { | ||
| 88 | } | ||
| 89 | |||
| 90 | /* dummy device for clocks */ | ||
| 91 | static struct platform_device omapdss_device = { | ||
| 92 | .name = "omapdss", | ||
| 93 | .id = -1, | ||
| 94 | .dev = { | ||
| 95 | .release = omapdss_release, | ||
| 96 | }, | ||
| 97 | }; | ||
| 98 | |||
| 86 | /* | 99 | /* |
| 87 | * --------------------------------------------------------------------------- | 100 | * --------------------------------------------------------------------------- |
| 88 | * LCD panel | 101 | * LCD panel |
| @@ -1700,6 +1713,7 @@ static int omapfb_do_probe(struct platform_device *pdev, | |||
| 1700 | 1713 | ||
| 1701 | fbdev->dev = &pdev->dev; | 1714 | fbdev->dev = &pdev->dev; |
| 1702 | fbdev->panel = panel; | 1715 | fbdev->panel = panel; |
| 1716 | fbdev->dssdev = &omapdss_device; | ||
| 1703 | platform_set_drvdata(pdev, fbdev); | 1717 | platform_set_drvdata(pdev, fbdev); |
| 1704 | 1718 | ||
| 1705 | mutex_init(&fbdev->rqueue_mutex); | 1719 | mutex_init(&fbdev->rqueue_mutex); |
| @@ -1814,8 +1828,16 @@ cleanup: | |||
| 1814 | 1828 | ||
| 1815 | static int omapfb_probe(struct platform_device *pdev) | 1829 | static int omapfb_probe(struct platform_device *pdev) |
| 1816 | { | 1830 | { |
| 1831 | int r; | ||
| 1832 | |||
| 1817 | BUG_ON(fbdev_pdev != NULL); | 1833 | BUG_ON(fbdev_pdev != NULL); |
| 1818 | 1834 | ||
| 1835 | r = platform_device_register(&omapdss_device); | ||
| 1836 | if (r) { | ||
| 1837 | dev_err(&pdev->dev, "can't register omapdss device\n"); | ||
| 1838 | return r; | ||
| 1839 | } | ||
| 1840 | |||
| 1819 | /* Delay actual initialization until the LCD is registered */ | 1841 | /* Delay actual initialization until the LCD is registered */ |
| 1820 | fbdev_pdev = pdev; | 1842 | fbdev_pdev = pdev; |
| 1821 | if (fbdev_panel != NULL) | 1843 | if (fbdev_panel != NULL) |
| @@ -1843,6 +1865,9 @@ static int omapfb_remove(struct platform_device *pdev) | |||
| 1843 | fbdev->state = OMAPFB_DISABLED; | 1865 | fbdev->state = OMAPFB_DISABLED; |
| 1844 | omapfb_free_resources(fbdev, saved_state); | 1866 | omapfb_free_resources(fbdev, saved_state); |
| 1845 | 1867 | ||
| 1868 | platform_device_unregister(&omapdss_device); | ||
| 1869 | fbdev->dssdev = NULL; | ||
| 1870 | |||
| 1846 | return 0; | 1871 | return 0; |
| 1847 | } | 1872 | } |
| 1848 | 1873 | ||
diff --git a/drivers/video/omap/rfbi.c b/drivers/video/omap/rfbi.c index fed7b1bda19c..1162603c72e5 100644 --- a/drivers/video/omap/rfbi.c +++ b/drivers/video/omap/rfbi.c | |||
| @@ -83,13 +83,13 @@ static inline u32 rfbi_read_reg(int idx) | |||
| 83 | 83 | ||
| 84 | static int rfbi_get_clocks(void) | 84 | static int rfbi_get_clocks(void) |
| 85 | { | 85 | { |
| 86 | rfbi.dss_ick = clk_get(rfbi.fbdev->dev, "ick"); | 86 | rfbi.dss_ick = clk_get(&dispc.fbdev->dssdev->dev, "ick"); |
| 87 | if (IS_ERR(rfbi.dss_ick)) { | 87 | if (IS_ERR(rfbi.dss_ick)) { |
| 88 | dev_err(rfbi.fbdev->dev, "can't get ick\n"); | 88 | dev_err(rfbi.fbdev->dev, "can't get ick\n"); |
| 89 | return PTR_ERR(rfbi.dss_ick); | 89 | return PTR_ERR(rfbi.dss_ick); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | rfbi.dss1_fck = clk_get(rfbi.fbdev->dev, "dss1_fck"); | 92 | rfbi.dss1_fck = clk_get(&dispc.fbdev->dssdev->dev, "dss1_fck"); |
| 93 | if (IS_ERR(rfbi.dss1_fck)) { | 93 | if (IS_ERR(rfbi.dss1_fck)) { |
| 94 | dev_err(rfbi.fbdev->dev, "can't get dss1_fck\n"); | 94 | dev_err(rfbi.fbdev->dev, "can't get dss1_fck\n"); |
| 95 | clk_put(rfbi.dss_ick); | 95 | clk_put(rfbi.dss_ick); |
diff --git a/drivers/video/omap2/dss/Kconfig b/drivers/video/omap2/dss/Kconfig index 71d8dec30635..c63ce767b277 100644 --- a/drivers/video/omap2/dss/Kconfig +++ b/drivers/video/omap2/dss/Kconfig | |||
| @@ -25,6 +25,13 @@ config OMAP2_DSS_DEBUG_SUPPORT | |||
| 25 | This enables debug messages. You need to enable printing | 25 | This enables debug messages. You need to enable printing |
| 26 | with 'debug' module parameter. | 26 | with 'debug' module parameter. |
| 27 | 27 | ||
| 28 | config OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 29 | bool "Collect DSS IRQ statistics" | ||
| 30 | depends on OMAP2_DSS_DEBUG_SUPPORT | ||
| 31 | default n | ||
| 32 | help | ||
| 33 | Collect DSS IRQ statistics, printable via debugfs | ||
| 34 | |||
| 28 | config OMAP2_DSS_RFBI | 35 | config OMAP2_DSS_RFBI |
| 29 | bool "RFBI support" | 36 | bool "RFBI support" |
| 30 | default n | 37 | default n |
diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c index 29497a0c9a91..82918eec6d2e 100644 --- a/drivers/video/omap2/dss/core.c +++ b/drivers/video/omap2/dss/core.c | |||
| @@ -124,6 +124,7 @@ static void restore_all_ctx(void) | |||
| 124 | dss_clk_disable_all_no_ctx(); | 124 | dss_clk_disable_all_no_ctx(); |
| 125 | } | 125 | } |
| 126 | 126 | ||
| 127 | #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT) | ||
| 127 | /* CLOCKS */ | 128 | /* CLOCKS */ |
| 128 | static void core_dump_clocks(struct seq_file *s) | 129 | static void core_dump_clocks(struct seq_file *s) |
| 129 | { | 130 | { |
| @@ -149,6 +150,7 @@ static void core_dump_clocks(struct seq_file *s) | |||
| 149 | clocks[i]->usecount); | 150 | clocks[i]->usecount); |
| 150 | } | 151 | } |
| 151 | } | 152 | } |
| 153 | #endif /* defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT) */ | ||
| 152 | 154 | ||
| 153 | static int dss_get_clock(struct clk **clock, const char *clk_name) | 155 | static int dss_get_clock(struct clk **clock, const char *clk_name) |
| 154 | { | 156 | { |
| @@ -395,6 +397,14 @@ static int dss_initialize_debugfs(void) | |||
| 395 | debugfs_create_file("clk", S_IRUGO, dss_debugfs_dir, | 397 | debugfs_create_file("clk", S_IRUGO, dss_debugfs_dir, |
| 396 | &dss_debug_dump_clocks, &dss_debug_fops); | 398 | &dss_debug_dump_clocks, &dss_debug_fops); |
| 397 | 399 | ||
| 400 | debugfs_create_file("dispc_irq", S_IRUGO, dss_debugfs_dir, | ||
| 401 | &dispc_dump_irqs, &dss_debug_fops); | ||
| 402 | |||
| 403 | #ifdef CONFIG_OMAP2_DSS_DSI | ||
| 404 | debugfs_create_file("dsi_irq", S_IRUGO, dss_debugfs_dir, | ||
| 405 | &dsi_dump_irqs, &dss_debug_fops); | ||
| 406 | #endif | ||
| 407 | |||
| 398 | debugfs_create_file("dss", S_IRUGO, dss_debugfs_dir, | 408 | debugfs_create_file("dss", S_IRUGO, dss_debugfs_dir, |
| 399 | &dss_dump_regs, &dss_debug_fops); | 409 | &dss_dump_regs, &dss_debug_fops); |
| 400 | debugfs_create_file("dispc", S_IRUGO, dss_debugfs_dir, | 410 | debugfs_create_file("dispc", S_IRUGO, dss_debugfs_dir, |
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c index 6dabf4b2f005..de8bfbac9e26 100644 --- a/drivers/video/omap2/dss/dispc.c +++ b/drivers/video/omap2/dss/dispc.c | |||
| @@ -148,6 +148,12 @@ static const struct dispc_reg dispc_reg_att[] = { DISPC_GFX_ATTRIBUTES, | |||
| 148 | DISPC_VID_ATTRIBUTES(0), | 148 | DISPC_VID_ATTRIBUTES(0), |
| 149 | DISPC_VID_ATTRIBUTES(1) }; | 149 | DISPC_VID_ATTRIBUTES(1) }; |
| 150 | 150 | ||
| 151 | struct dispc_irq_stats { | ||
| 152 | unsigned long last_reset; | ||
| 153 | unsigned irq_count; | ||
| 154 | unsigned irqs[32]; | ||
| 155 | }; | ||
| 156 | |||
| 151 | static struct { | 157 | static struct { |
| 152 | void __iomem *base; | 158 | void __iomem *base; |
| 153 | 159 | ||
| @@ -160,6 +166,11 @@ static struct { | |||
| 160 | struct work_struct error_work; | 166 | struct work_struct error_work; |
| 161 | 167 | ||
| 162 | u32 ctx[DISPC_SZ_REGS / sizeof(u32)]; | 168 | u32 ctx[DISPC_SZ_REGS / sizeof(u32)]; |
| 169 | |||
| 170 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 171 | spinlock_t irq_stats_lock; | ||
| 172 | struct dispc_irq_stats irq_stats; | ||
| 173 | #endif | ||
| 163 | } dispc; | 174 | } dispc; |
| 164 | 175 | ||
| 165 | static void _omap_dispc_set_irqs(void); | 176 | static void _omap_dispc_set_irqs(void); |
| @@ -1443,7 +1454,10 @@ static unsigned long calc_fclk_five_taps(u16 width, u16 height, | |||
| 1443 | do_div(tmp, 2 * out_height * ppl); | 1454 | do_div(tmp, 2 * out_height * ppl); |
| 1444 | fclk = tmp; | 1455 | fclk = tmp; |
| 1445 | 1456 | ||
| 1446 | if (height > 2 * out_height && ppl != out_width) { | 1457 | if (height > 2 * out_height) { |
| 1458 | if (ppl == out_width) | ||
| 1459 | return 0; | ||
| 1460 | |||
| 1447 | tmp = pclk * (height - 2 * out_height) * out_width; | 1461 | tmp = pclk * (height - 2 * out_height) * out_width; |
| 1448 | do_div(tmp, 2 * out_height * (ppl - out_width)); | 1462 | do_div(tmp, 2 * out_height * (ppl - out_width)); |
| 1449 | fclk = max(fclk, (u32) tmp); | 1463 | fclk = max(fclk, (u32) tmp); |
| @@ -1623,7 +1637,7 @@ static int _dispc_setup_plane(enum omap_plane plane, | |||
| 1623 | DSSDBG("required fclk rate = %lu Hz\n", fclk); | 1637 | DSSDBG("required fclk rate = %lu Hz\n", fclk); |
| 1624 | DSSDBG("current fclk rate = %lu Hz\n", dispc_fclk_rate()); | 1638 | DSSDBG("current fclk rate = %lu Hz\n", dispc_fclk_rate()); |
| 1625 | 1639 | ||
| 1626 | if (fclk > dispc_fclk_rate()) { | 1640 | if (!fclk || fclk > dispc_fclk_rate()) { |
| 1627 | DSSERR("failed to set up scaling, " | 1641 | DSSERR("failed to set up scaling, " |
| 1628 | "required fclk rate = %lu Hz, " | 1642 | "required fclk rate = %lu Hz, " |
| 1629 | "current fclk rate = %lu Hz\n", | 1643 | "current fclk rate = %lu Hz\n", |
| @@ -2247,6 +2261,50 @@ void dispc_dump_clocks(struct seq_file *s) | |||
| 2247 | enable_clocks(0); | 2261 | enable_clocks(0); |
| 2248 | } | 2262 | } |
| 2249 | 2263 | ||
| 2264 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 2265 | void dispc_dump_irqs(struct seq_file *s) | ||
| 2266 | { | ||
| 2267 | unsigned long flags; | ||
| 2268 | struct dispc_irq_stats stats; | ||
| 2269 | |||
| 2270 | spin_lock_irqsave(&dispc.irq_stats_lock, flags); | ||
| 2271 | |||
| 2272 | stats = dispc.irq_stats; | ||
| 2273 | memset(&dispc.irq_stats, 0, sizeof(dispc.irq_stats)); | ||
| 2274 | dispc.irq_stats.last_reset = jiffies; | ||
| 2275 | |||
| 2276 | spin_unlock_irqrestore(&dispc.irq_stats_lock, flags); | ||
| 2277 | |||
| 2278 | seq_printf(s, "period %u ms\n", | ||
| 2279 | jiffies_to_msecs(jiffies - stats.last_reset)); | ||
| 2280 | |||
| 2281 | seq_printf(s, "irqs %d\n", stats.irq_count); | ||
| 2282 | #define PIS(x) \ | ||
| 2283 | seq_printf(s, "%-20s %10d\n", #x, stats.irqs[ffs(DISPC_IRQ_##x)-1]); | ||
| 2284 | |||
| 2285 | PIS(FRAMEDONE); | ||
| 2286 | PIS(VSYNC); | ||
| 2287 | PIS(EVSYNC_EVEN); | ||
| 2288 | PIS(EVSYNC_ODD); | ||
| 2289 | PIS(ACBIAS_COUNT_STAT); | ||
| 2290 | PIS(PROG_LINE_NUM); | ||
| 2291 | PIS(GFX_FIFO_UNDERFLOW); | ||
| 2292 | PIS(GFX_END_WIN); | ||
| 2293 | PIS(PAL_GAMMA_MASK); | ||
| 2294 | PIS(OCP_ERR); | ||
| 2295 | PIS(VID1_FIFO_UNDERFLOW); | ||
| 2296 | PIS(VID1_END_WIN); | ||
| 2297 | PIS(VID2_FIFO_UNDERFLOW); | ||
| 2298 | PIS(VID2_END_WIN); | ||
| 2299 | PIS(SYNC_LOST); | ||
| 2300 | PIS(SYNC_LOST_DIGIT); | ||
| 2301 | PIS(WAKEUP); | ||
| 2302 | #undef PIS | ||
| 2303 | } | ||
| 2304 | #else | ||
| 2305 | void dispc_dump_irqs(struct seq_file *s) { } | ||
| 2306 | #endif | ||
| 2307 | |||
| 2250 | void dispc_dump_regs(struct seq_file *s) | 2308 | void dispc_dump_regs(struct seq_file *s) |
| 2251 | { | 2309 | { |
| 2252 | #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dispc_read_reg(r)) | 2310 | #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dispc_read_reg(r)) |
| @@ -2665,6 +2723,13 @@ void dispc_irq_handler(void) | |||
| 2665 | 2723 | ||
| 2666 | irqstatus = dispc_read_reg(DISPC_IRQSTATUS); | 2724 | irqstatus = dispc_read_reg(DISPC_IRQSTATUS); |
| 2667 | 2725 | ||
| 2726 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 2727 | spin_lock(&dispc.irq_stats_lock); | ||
| 2728 | dispc.irq_stats.irq_count++; | ||
| 2729 | dss_collect_irq_stats(irqstatus, dispc.irq_stats.irqs); | ||
| 2730 | spin_unlock(&dispc.irq_stats_lock); | ||
| 2731 | #endif | ||
| 2732 | |||
| 2668 | #ifdef DEBUG | 2733 | #ifdef DEBUG |
| 2669 | if (dss_debug) | 2734 | if (dss_debug) |
| 2670 | print_irq_status(irqstatus); | 2735 | print_irq_status(irqstatus); |
| @@ -3012,6 +3077,11 @@ int dispc_init(void) | |||
| 3012 | 3077 | ||
| 3013 | spin_lock_init(&dispc.irq_lock); | 3078 | spin_lock_init(&dispc.irq_lock); |
| 3014 | 3079 | ||
| 3080 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 3081 | spin_lock_init(&dispc.irq_stats_lock); | ||
| 3082 | dispc.irq_stats.last_reset = jiffies; | ||
| 3083 | #endif | ||
| 3084 | |||
| 3015 | INIT_WORK(&dispc.error_work, dispc_error_worker); | 3085 | INIT_WORK(&dispc.error_work, dispc_error_worker); |
| 3016 | 3086 | ||
| 3017 | dispc.base = ioremap(DISPC_BASE, DISPC_SZ_REGS); | 3087 | dispc.base = ioremap(DISPC_BASE, DISPC_SZ_REGS); |
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index 5936487b5def..6122178f5f85 100644 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c | |||
| @@ -204,6 +204,14 @@ struct dsi_update_region { | |||
| 204 | struct omap_dss_device *device; | 204 | struct omap_dss_device *device; |
| 205 | }; | 205 | }; |
| 206 | 206 | ||
| 207 | struct dsi_irq_stats { | ||
| 208 | unsigned long last_reset; | ||
| 209 | unsigned irq_count; | ||
| 210 | unsigned dsi_irqs[32]; | ||
| 211 | unsigned vc_irqs[4][32]; | ||
| 212 | unsigned cio_irqs[32]; | ||
| 213 | }; | ||
| 214 | |||
| 207 | static struct | 215 | static struct |
| 208 | { | 216 | { |
| 209 | void __iomem *base; | 217 | void __iomem *base; |
| @@ -258,6 +266,11 @@ static struct | |||
| 258 | #endif | 266 | #endif |
| 259 | int debug_read; | 267 | int debug_read; |
| 260 | int debug_write; | 268 | int debug_write; |
| 269 | |||
| 270 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 271 | spinlock_t irq_stats_lock; | ||
| 272 | struct dsi_irq_stats irq_stats; | ||
| 273 | #endif | ||
| 261 | } dsi; | 274 | } dsi; |
| 262 | 275 | ||
| 263 | #ifdef DEBUG | 276 | #ifdef DEBUG |
| @@ -528,6 +541,12 @@ void dsi_irq_handler(void) | |||
| 528 | 541 | ||
| 529 | irqstatus = dsi_read_reg(DSI_IRQSTATUS); | 542 | irqstatus = dsi_read_reg(DSI_IRQSTATUS); |
| 530 | 543 | ||
| 544 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 545 | spin_lock(&dsi.irq_stats_lock); | ||
| 546 | dsi.irq_stats.irq_count++; | ||
| 547 | dss_collect_irq_stats(irqstatus, dsi.irq_stats.dsi_irqs); | ||
| 548 | #endif | ||
| 549 | |||
| 531 | if (irqstatus & DSI_IRQ_ERROR_MASK) { | 550 | if (irqstatus & DSI_IRQ_ERROR_MASK) { |
| 532 | DSSERR("DSI error, irqstatus %x\n", irqstatus); | 551 | DSSERR("DSI error, irqstatus %x\n", irqstatus); |
| 533 | print_irq_status(irqstatus); | 552 | print_irq_status(irqstatus); |
| @@ -549,6 +568,10 @@ void dsi_irq_handler(void) | |||
| 549 | 568 | ||
| 550 | vcstatus = dsi_read_reg(DSI_VC_IRQSTATUS(i)); | 569 | vcstatus = dsi_read_reg(DSI_VC_IRQSTATUS(i)); |
| 551 | 570 | ||
| 571 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 572 | dss_collect_irq_stats(vcstatus, dsi.irq_stats.vc_irqs[i]); | ||
| 573 | #endif | ||
| 574 | |||
| 552 | if (vcstatus & DSI_VC_IRQ_BTA) | 575 | if (vcstatus & DSI_VC_IRQ_BTA) |
| 553 | complete(&dsi.bta_completion); | 576 | complete(&dsi.bta_completion); |
| 554 | 577 | ||
| @@ -568,6 +591,10 @@ void dsi_irq_handler(void) | |||
| 568 | if (irqstatus & DSI_IRQ_COMPLEXIO_ERR) { | 591 | if (irqstatus & DSI_IRQ_COMPLEXIO_ERR) { |
| 569 | ciostatus = dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS); | 592 | ciostatus = dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS); |
| 570 | 593 | ||
| 594 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 595 | dss_collect_irq_stats(ciostatus, dsi.irq_stats.cio_irqs); | ||
| 596 | #endif | ||
| 597 | |||
| 571 | dsi_write_reg(DSI_COMPLEXIO_IRQ_STATUS, ciostatus); | 598 | dsi_write_reg(DSI_COMPLEXIO_IRQ_STATUS, ciostatus); |
| 572 | /* flush posted write */ | 599 | /* flush posted write */ |
| 573 | dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS); | 600 | dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS); |
| @@ -579,6 +606,10 @@ void dsi_irq_handler(void) | |||
| 579 | dsi_write_reg(DSI_IRQSTATUS, irqstatus & ~DSI_IRQ_CHANNEL_MASK); | 606 | dsi_write_reg(DSI_IRQSTATUS, irqstatus & ~DSI_IRQ_CHANNEL_MASK); |
| 580 | /* flush posted write */ | 607 | /* flush posted write */ |
| 581 | dsi_read_reg(DSI_IRQSTATUS); | 608 | dsi_read_reg(DSI_IRQSTATUS); |
| 609 | |||
| 610 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 611 | spin_unlock(&dsi.irq_stats_lock); | ||
| 612 | #endif | ||
| 582 | } | 613 | } |
| 583 | 614 | ||
| 584 | 615 | ||
| @@ -797,12 +828,12 @@ static int dsi_pll_power(enum dsi_pll_power_state state) | |||
| 797 | 828 | ||
| 798 | /* PLL_PWR_STATUS */ | 829 | /* PLL_PWR_STATUS */ |
| 799 | while (FLD_GET(dsi_read_reg(DSI_CLK_CTRL), 29, 28) != state) { | 830 | while (FLD_GET(dsi_read_reg(DSI_CLK_CTRL), 29, 28) != state) { |
| 800 | udelay(1); | 831 | if (++t > 1000) { |
| 801 | if (t++ > 1000) { | ||
| 802 | DSSERR("Failed to set DSI PLL power mode to %d\n", | 832 | DSSERR("Failed to set DSI PLL power mode to %d\n", |
| 803 | state); | 833 | state); |
| 804 | return -ENODEV; | 834 | return -ENODEV; |
| 805 | } | 835 | } |
| 836 | udelay(1); | ||
| 806 | } | 837 | } |
| 807 | 838 | ||
| 808 | return 0; | 839 | return 0; |
| @@ -1226,6 +1257,95 @@ void dsi_dump_clocks(struct seq_file *s) | |||
| 1226 | enable_clocks(0); | 1257 | enable_clocks(0); |
| 1227 | } | 1258 | } |
| 1228 | 1259 | ||
| 1260 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 1261 | void dsi_dump_irqs(struct seq_file *s) | ||
| 1262 | { | ||
| 1263 | unsigned long flags; | ||
| 1264 | struct dsi_irq_stats stats; | ||
| 1265 | |||
| 1266 | spin_lock_irqsave(&dsi.irq_stats_lock, flags); | ||
| 1267 | |||
| 1268 | stats = dsi.irq_stats; | ||
| 1269 | memset(&dsi.irq_stats, 0, sizeof(dsi.irq_stats)); | ||
| 1270 | dsi.irq_stats.last_reset = jiffies; | ||
| 1271 | |||
| 1272 | spin_unlock_irqrestore(&dsi.irq_stats_lock, flags); | ||
| 1273 | |||
| 1274 | seq_printf(s, "period %u ms\n", | ||
| 1275 | jiffies_to_msecs(jiffies - stats.last_reset)); | ||
| 1276 | |||
| 1277 | seq_printf(s, "irqs %d\n", stats.irq_count); | ||
| 1278 | #define PIS(x) \ | ||
| 1279 | seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]); | ||
| 1280 | |||
| 1281 | seq_printf(s, "-- DSI interrupts --\n"); | ||
| 1282 | PIS(VC0); | ||
| 1283 | PIS(VC1); | ||
| 1284 | PIS(VC2); | ||
| 1285 | PIS(VC3); | ||
| 1286 | PIS(WAKEUP); | ||
| 1287 | PIS(RESYNC); | ||
| 1288 | PIS(PLL_LOCK); | ||
| 1289 | PIS(PLL_UNLOCK); | ||
| 1290 | PIS(PLL_RECALL); | ||
| 1291 | PIS(COMPLEXIO_ERR); | ||
| 1292 | PIS(HS_TX_TIMEOUT); | ||
| 1293 | PIS(LP_RX_TIMEOUT); | ||
| 1294 | PIS(TE_TRIGGER); | ||
| 1295 | PIS(ACK_TRIGGER); | ||
| 1296 | PIS(SYNC_LOST); | ||
| 1297 | PIS(LDO_POWER_GOOD); | ||
| 1298 | PIS(TA_TIMEOUT); | ||
| 1299 | #undef PIS | ||
| 1300 | |||
| 1301 | #define PIS(x) \ | ||
| 1302 | seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \ | ||
| 1303 | stats.vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \ | ||
| 1304 | stats.vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \ | ||
| 1305 | stats.vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \ | ||
| 1306 | stats.vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]); | ||
| 1307 | |||
| 1308 | seq_printf(s, "-- VC interrupts --\n"); | ||
| 1309 | PIS(CS); | ||
| 1310 | PIS(ECC_CORR); | ||
| 1311 | PIS(PACKET_SENT); | ||
| 1312 | PIS(FIFO_TX_OVF); | ||
| 1313 | PIS(FIFO_RX_OVF); | ||
| 1314 | PIS(BTA); | ||
| 1315 | PIS(ECC_NO_CORR); | ||
| 1316 | PIS(FIFO_TX_UDF); | ||
| 1317 | PIS(PP_BUSY_CHANGE); | ||
| 1318 | #undef PIS | ||
| 1319 | |||
| 1320 | #define PIS(x) \ | ||
| 1321 | seq_printf(s, "%-20s %10d\n", #x, \ | ||
| 1322 | stats.cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]); | ||
| 1323 | |||
| 1324 | seq_printf(s, "-- CIO interrupts --\n"); | ||
| 1325 | PIS(ERRSYNCESC1); | ||
| 1326 | PIS(ERRSYNCESC2); | ||
| 1327 | PIS(ERRSYNCESC3); | ||
| 1328 | PIS(ERRESC1); | ||
| 1329 | PIS(ERRESC2); | ||
| 1330 | PIS(ERRESC3); | ||
| 1331 | PIS(ERRCONTROL1); | ||
| 1332 | PIS(ERRCONTROL2); | ||
| 1333 | PIS(ERRCONTROL3); | ||
| 1334 | PIS(STATEULPS1); | ||
| 1335 | PIS(STATEULPS2); | ||
| 1336 | PIS(STATEULPS3); | ||
| 1337 | PIS(ERRCONTENTIONLP0_1); | ||
| 1338 | PIS(ERRCONTENTIONLP1_1); | ||
| 1339 | PIS(ERRCONTENTIONLP0_2); | ||
| 1340 | PIS(ERRCONTENTIONLP1_2); | ||
| 1341 | PIS(ERRCONTENTIONLP0_3); | ||
| 1342 | PIS(ERRCONTENTIONLP1_3); | ||
| 1343 | PIS(ULPSACTIVENOT_ALL0); | ||
| 1344 | PIS(ULPSACTIVENOT_ALL1); | ||
| 1345 | #undef PIS | ||
| 1346 | } | ||
| 1347 | #endif | ||
| 1348 | |||
| 1229 | void dsi_dump_regs(struct seq_file *s) | 1349 | void dsi_dump_regs(struct seq_file *s) |
| 1230 | { | 1350 | { |
| 1231 | #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(r)) | 1351 | #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(r)) |
| @@ -1321,12 +1441,12 @@ static int dsi_complexio_power(enum dsi_complexio_power_state state) | |||
| 1321 | 1441 | ||
| 1322 | /* PWR_STATUS */ | 1442 | /* PWR_STATUS */ |
| 1323 | while (FLD_GET(dsi_read_reg(DSI_COMPLEXIO_CFG1), 26, 25) != state) { | 1443 | while (FLD_GET(dsi_read_reg(DSI_COMPLEXIO_CFG1), 26, 25) != state) { |
| 1324 | udelay(1); | 1444 | if (++t > 1000) { |
| 1325 | if (t++ > 1000) { | ||
| 1326 | DSSERR("failed to set complexio power state to " | 1445 | DSSERR("failed to set complexio power state to " |
| 1327 | "%d\n", state); | 1446 | "%d\n", state); |
| 1328 | return -ENODEV; | 1447 | return -ENODEV; |
| 1329 | } | 1448 | } |
| 1449 | udelay(1); | ||
| 1330 | } | 1450 | } |
| 1331 | 1451 | ||
| 1332 | return 0; | 1452 | return 0; |
| @@ -1526,10 +1646,10 @@ static void dsi_complexio_uninit(void) | |||
| 1526 | 1646 | ||
| 1527 | static int _dsi_wait_reset(void) | 1647 | static int _dsi_wait_reset(void) |
| 1528 | { | 1648 | { |
| 1529 | int i = 0; | 1649 | int t = 0; |
| 1530 | 1650 | ||
| 1531 | while (REG_GET(DSI_SYSSTATUS, 0, 0) == 0) { | 1651 | while (REG_GET(DSI_SYSSTATUS, 0, 0) == 0) { |
| 1532 | if (i++ > 5) { | 1652 | if (++t > 5) { |
| 1533 | DSSERR("soft reset failed\n"); | 1653 | DSSERR("soft reset failed\n"); |
| 1534 | return -ENODEV; | 1654 | return -ENODEV; |
| 1535 | } | 1655 | } |
| @@ -1999,7 +2119,7 @@ static int dsi_vc_send_short(int channel, u8 data_type, u16 data, u8 ecc) | |||
| 1999 | return -EINVAL; | 2119 | return -EINVAL; |
| 2000 | } | 2120 | } |
| 2001 | 2121 | ||
| 2002 | data_id = data_type | channel << 6; | 2122 | data_id = data_type | dsi.vc[channel].dest_per << 6; |
| 2003 | 2123 | ||
| 2004 | r = (data_id << 0) | (data << 8) | (ecc << 24); | 2124 | r = (data_id << 0) | (data << 8) | (ecc << 24); |
| 2005 | 2125 | ||
| @@ -2011,7 +2131,7 @@ static int dsi_vc_send_short(int channel, u8 data_type, u16 data, u8 ecc) | |||
| 2011 | int dsi_vc_send_null(int channel) | 2131 | int dsi_vc_send_null(int channel) |
| 2012 | { | 2132 | { |
| 2013 | u8 nullpkg[] = {0, 0, 0, 0}; | 2133 | u8 nullpkg[] = {0, 0, 0, 0}; |
| 2014 | return dsi_vc_send_long(0, DSI_DT_NULL_PACKET, nullpkg, 4, 0); | 2134 | return dsi_vc_send_long(channel, DSI_DT_NULL_PACKET, nullpkg, 4, 0); |
| 2015 | } | 2135 | } |
| 2016 | EXPORT_SYMBOL(dsi_vc_send_null); | 2136 | EXPORT_SYMBOL(dsi_vc_send_null); |
| 2017 | 2137 | ||
| @@ -2058,7 +2178,7 @@ int dsi_vc_dcs_read(int channel, u8 dcs_cmd, u8 *buf, int buflen) | |||
| 2058 | int r; | 2178 | int r; |
| 2059 | 2179 | ||
| 2060 | if (dsi.debug_read) | 2180 | if (dsi.debug_read) |
| 2061 | DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %u)\n", channel, dcs_cmd); | 2181 | DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %x)\n", channel, dcs_cmd); |
| 2062 | 2182 | ||
| 2063 | r = dsi_vc_send_short(channel, DSI_DT_DCS_READ, dcs_cmd, 0); | 2183 | r = dsi_vc_send_short(channel, DSI_DT_DCS_READ, dcs_cmd, 0); |
| 2064 | if (r) | 2184 | if (r) |
| @@ -2586,7 +2706,6 @@ static int dsi_update_screen_l4(struct omap_dss_device *dssdev, | |||
| 2586 | /* using fifo not empty */ | 2706 | /* using fifo not empty */ |
| 2587 | /* TX_FIFO_NOT_EMPTY */ | 2707 | /* TX_FIFO_NOT_EMPTY */ |
| 2588 | while (FLD_GET(dsi_read_reg(DSI_VC_CTRL(0)), 5, 5)) { | 2708 | while (FLD_GET(dsi_read_reg(DSI_VC_CTRL(0)), 5, 5)) { |
| 2589 | udelay(1); | ||
| 2590 | fifo_stalls++; | 2709 | fifo_stalls++; |
| 2591 | if (fifo_stalls > 0xfffff) { | 2710 | if (fifo_stalls > 0xfffff) { |
| 2592 | DSSERR("fifo stalls overflow, pixels left %d\n", | 2711 | DSSERR("fifo stalls overflow, pixels left %d\n", |
| @@ -2594,6 +2713,7 @@ static int dsi_update_screen_l4(struct omap_dss_device *dssdev, | |||
| 2594 | dsi_if_enable(0); | 2713 | dsi_if_enable(0); |
| 2595 | return -EIO; | 2714 | return -EIO; |
| 2596 | } | 2715 | } |
| 2716 | udelay(1); | ||
| 2597 | } | 2717 | } |
| 2598 | #elif 1 | 2718 | #elif 1 |
| 2599 | /* using fifo emptiness */ | 2719 | /* using fifo emptiness */ |
| @@ -2812,11 +2932,15 @@ static int dsi_set_update_mode(struct omap_dss_device *dssdev, | |||
| 2812 | 2932 | ||
| 2813 | static int dsi_set_te(struct omap_dss_device *dssdev, bool enable) | 2933 | static int dsi_set_te(struct omap_dss_device *dssdev, bool enable) |
| 2814 | { | 2934 | { |
| 2815 | int r; | 2935 | int r = 0; |
| 2816 | r = dssdev->driver->enable_te(dssdev, enable); | 2936 | |
| 2817 | /* XXX for some reason, DSI TE breaks if we don't wait here. | 2937 | if (dssdev->driver->enable_te) { |
| 2818 | * Panel bug? Needs more studying */ | 2938 | r = dssdev->driver->enable_te(dssdev, enable); |
| 2819 | msleep(100); | 2939 | /* XXX for some reason, DSI TE breaks if we don't wait here. |
| 2940 | * Panel bug? Needs more studying */ | ||
| 2941 | msleep(100); | ||
| 2942 | } | ||
| 2943 | |||
| 2820 | return r; | 2944 | return r; |
| 2821 | } | 2945 | } |
| 2822 | 2946 | ||
| @@ -3637,6 +3761,11 @@ int dsi_init(struct platform_device *pdev) | |||
| 3637 | spin_lock_init(&dsi.errors_lock); | 3761 | spin_lock_init(&dsi.errors_lock); |
| 3638 | dsi.errors = 0; | 3762 | dsi.errors = 0; |
| 3639 | 3763 | ||
| 3764 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 3765 | spin_lock_init(&dsi.irq_stats_lock); | ||
| 3766 | dsi.irq_stats.last_reset = jiffies; | ||
| 3767 | #endif | ||
| 3768 | |||
| 3640 | init_completion(&dsi.bta_completion); | 3769 | init_completion(&dsi.bta_completion); |
| 3641 | init_completion(&dsi.update_completion); | 3770 | init_completion(&dsi.update_completion); |
| 3642 | 3771 | ||
diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c index 9b05ee65a15d..0a26b7d84d41 100644 --- a/drivers/video/omap2/dss/dss.c +++ b/drivers/video/omap2/dss/dss.c | |||
| @@ -467,14 +467,14 @@ static irqreturn_t dss_irq_handler_omap3(int irq, void *arg) | |||
| 467 | 467 | ||
| 468 | static int _omap_dss_wait_reset(void) | 468 | static int _omap_dss_wait_reset(void) |
| 469 | { | 469 | { |
| 470 | unsigned timeout = 1000; | 470 | int t = 0; |
| 471 | 471 | ||
| 472 | while (REG_GET(DSS_SYSSTATUS, 0, 0) == 0) { | 472 | while (REG_GET(DSS_SYSSTATUS, 0, 0) == 0) { |
| 473 | udelay(1); | 473 | if (++t > 1000) { |
| 474 | if (!--timeout) { | ||
| 475 | DSSERR("soft reset failed\n"); | 474 | DSSERR("soft reset failed\n"); |
| 476 | return -ENODEV; | 475 | return -ENODEV; |
| 477 | } | 476 | } |
| 477 | udelay(1); | ||
| 478 | } | 478 | } |
| 479 | 479 | ||
| 480 | return 0; | 480 | return 0; |
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h index 8da5ac42151b..2bcb1245d6c2 100644 --- a/drivers/video/omap2/dss/dss.h +++ b/drivers/video/omap2/dss/dss.h | |||
| @@ -240,6 +240,7 @@ int dsi_init(struct platform_device *pdev); | |||
| 240 | void dsi_exit(void); | 240 | void dsi_exit(void); |
| 241 | 241 | ||
| 242 | void dsi_dump_clocks(struct seq_file *s); | 242 | void dsi_dump_clocks(struct seq_file *s); |
| 243 | void dsi_dump_irqs(struct seq_file *s); | ||
| 243 | void dsi_dump_regs(struct seq_file *s); | 244 | void dsi_dump_regs(struct seq_file *s); |
| 244 | 245 | ||
| 245 | void dsi_save_context(void); | 246 | void dsi_save_context(void); |
| @@ -268,6 +269,7 @@ int dpi_init_display(struct omap_dss_device *dssdev); | |||
| 268 | int dispc_init(void); | 269 | int dispc_init(void); |
| 269 | void dispc_exit(void); | 270 | void dispc_exit(void); |
| 270 | void dispc_dump_clocks(struct seq_file *s); | 271 | void dispc_dump_clocks(struct seq_file *s); |
| 272 | void dispc_dump_irqs(struct seq_file *s); | ||
| 271 | void dispc_dump_regs(struct seq_file *s); | 273 | void dispc_dump_regs(struct seq_file *s); |
| 272 | void dispc_irq_handler(void); | 274 | void dispc_irq_handler(void); |
| 273 | void dispc_fake_vsync_irq(void); | 275 | void dispc_fake_vsync_irq(void); |
| @@ -367,4 +369,16 @@ void rfbi_set_timings(int rfbi_module, struct rfbi_timings *t); | |||
| 367 | unsigned long rfbi_get_max_tx_rate(void); | 369 | unsigned long rfbi_get_max_tx_rate(void); |
| 368 | int rfbi_init_display(struct omap_dss_device *display); | 370 | int rfbi_init_display(struct omap_dss_device *display); |
| 369 | 371 | ||
| 372 | |||
| 373 | #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS | ||
| 374 | static inline void dss_collect_irq_stats(u32 irqstatus, unsigned *irq_arr) | ||
| 375 | { | ||
| 376 | int b; | ||
| 377 | for (b = 0; b < 32; ++b) { | ||
| 378 | if (irqstatus & (1 << b)) | ||
| 379 | irq_arr[b]++; | ||
| 380 | } | ||
| 381 | } | ||
| 382 | #endif | ||
| 383 | |||
| 370 | #endif | 384 | #endif |
diff --git a/drivers/video/omap2/dss/rfbi.c b/drivers/video/omap2/dss/rfbi.c index d0b3006ad8a5..b936495c065d 100644 --- a/drivers/video/omap2/dss/rfbi.c +++ b/drivers/video/omap2/dss/rfbi.c | |||
| @@ -120,7 +120,7 @@ static struct { | |||
| 120 | 120 | ||
| 121 | struct omap_dss_device *dssdev[2]; | 121 | struct omap_dss_device *dssdev[2]; |
| 122 | 122 | ||
| 123 | struct kfifo *cmd_fifo; | 123 | struct kfifo cmd_fifo; |
| 124 | spinlock_t cmd_lock; | 124 | spinlock_t cmd_lock; |
| 125 | struct completion cmd_done; | 125 | struct completion cmd_done; |
| 126 | atomic_t cmd_fifo_full; | 126 | atomic_t cmd_fifo_full; |
| @@ -1011,20 +1011,20 @@ static void process_cmd_fifo(void) | |||
| 1011 | return; | 1011 | return; |
| 1012 | 1012 | ||
| 1013 | while (true) { | 1013 | while (true) { |
| 1014 | spin_lock_irqsave(rfbi.cmd_fifo->lock, flags); | 1014 | spin_lock_irqsave(&rfbi.cmd_lock, flags); |
| 1015 | 1015 | ||
| 1016 | len = __kfifo_get(rfbi.cmd_fifo, (unsigned char *)&p, | 1016 | len = kfifo_out(&rfbi.cmd_fifo, (unsigned char *)&p, |
| 1017 | sizeof(struct update_param)); | 1017 | sizeof(struct update_param)); |
| 1018 | if (len == 0) { | 1018 | if (len == 0) { |
| 1019 | DSSDBG("nothing more in fifo\n"); | 1019 | DSSDBG("nothing more in fifo\n"); |
| 1020 | atomic_set(&rfbi.cmd_pending, 0); | 1020 | atomic_set(&rfbi.cmd_pending, 0); |
| 1021 | spin_unlock_irqrestore(rfbi.cmd_fifo->lock, flags); | 1021 | spin_unlock_irqrestore(&rfbi.cmd_lock, flags); |
| 1022 | break; | 1022 | break; |
| 1023 | } | 1023 | } |
| 1024 | 1024 | ||
| 1025 | /* DSSDBG("fifo full %d\n", rfbi.cmd_fifo_full.counter);*/ | 1025 | /* DSSDBG("fifo full %d\n", rfbi.cmd_fifo_full.counter);*/ |
| 1026 | 1026 | ||
| 1027 | spin_unlock_irqrestore(rfbi.cmd_fifo->lock, flags); | 1027 | spin_unlock_irqrestore(&rfbi.cmd_lock, flags); |
| 1028 | 1028 | ||
| 1029 | BUG_ON(len != sizeof(struct update_param)); | 1029 | BUG_ON(len != sizeof(struct update_param)); |
| 1030 | BUG_ON(p.rfbi_module > 1); | 1030 | BUG_ON(p.rfbi_module > 1); |
| @@ -1052,25 +1052,25 @@ static void rfbi_push_cmd(struct update_param *p) | |||
| 1052 | unsigned long flags; | 1052 | unsigned long flags; |
| 1053 | int available; | 1053 | int available; |
| 1054 | 1054 | ||
| 1055 | spin_lock_irqsave(rfbi.cmd_fifo->lock, flags); | 1055 | spin_lock_irqsave(&rfbi.cmd_lock, flags); |
| 1056 | available = RFBI_CMD_FIFO_LEN_BYTES - | 1056 | available = RFBI_CMD_FIFO_LEN_BYTES - |
| 1057 | __kfifo_len(rfbi.cmd_fifo); | 1057 | kfifo_len(&rfbi.cmd_fifo); |
| 1058 | 1058 | ||
| 1059 | /* DSSDBG("%d bytes left in fifo\n", available); */ | 1059 | /* DSSDBG("%d bytes left in fifo\n", available); */ |
| 1060 | if (available < sizeof(struct update_param)) { | 1060 | if (available < sizeof(struct update_param)) { |
| 1061 | DSSDBG("Going to wait because FIFO FULL..\n"); | 1061 | DSSDBG("Going to wait because FIFO FULL..\n"); |
| 1062 | spin_unlock_irqrestore(rfbi.cmd_fifo->lock, flags); | 1062 | spin_unlock_irqrestore(&rfbi.cmd_lock, flags); |
| 1063 | atomic_inc(&rfbi.cmd_fifo_full); | 1063 | atomic_inc(&rfbi.cmd_fifo_full); |
| 1064 | wait_for_completion(&rfbi.cmd_done); | 1064 | wait_for_completion(&rfbi.cmd_done); |
| 1065 | /*DSSDBG("Woke up because fifo not full anymore\n");*/ | 1065 | /*DSSDBG("Woke up because fifo not full anymore\n");*/ |
| 1066 | continue; | 1066 | continue; |
| 1067 | } | 1067 | } |
| 1068 | 1068 | ||
| 1069 | ret = __kfifo_put(rfbi.cmd_fifo, (unsigned char *)p, | 1069 | ret = kfifo_in(&rfbi.cmd_fifo, (unsigned char *)p, |
| 1070 | sizeof(struct update_param)); | 1070 | sizeof(struct update_param)); |
| 1071 | /* DSSDBG("pushed %d bytes\n", ret);*/ | 1071 | /* DSSDBG("pushed %d bytes\n", ret);*/ |
| 1072 | 1072 | ||
| 1073 | spin_unlock_irqrestore(rfbi.cmd_fifo->lock, flags); | 1073 | spin_unlock_irqrestore(&rfbi.cmd_lock, flags); |
| 1074 | 1074 | ||
| 1075 | BUG_ON(ret != sizeof(struct update_param)); | 1075 | BUG_ON(ret != sizeof(struct update_param)); |
| 1076 | 1076 | ||
| @@ -1155,12 +1155,12 @@ int rfbi_init(void) | |||
| 1155 | { | 1155 | { |
| 1156 | u32 rev; | 1156 | u32 rev; |
| 1157 | u32 l; | 1157 | u32 l; |
| 1158 | int r; | ||
| 1158 | 1159 | ||
| 1159 | spin_lock_init(&rfbi.cmd_lock); | 1160 | spin_lock_init(&rfbi.cmd_lock); |
| 1160 | rfbi.cmd_fifo = kfifo_alloc(RFBI_CMD_FIFO_LEN_BYTES, GFP_KERNEL, | 1161 | r = kfifo_alloc(&rfbi.cmd_fifo, RFBI_CMD_FIFO_LEN_BYTES, GFP_KERNEL); |
| 1161 | &rfbi.cmd_lock); | 1162 | if (r) |
| 1162 | if (IS_ERR(rfbi.cmd_fifo)) | 1163 | return r; |
| 1163 | return -ENOMEM; | ||
| 1164 | 1164 | ||
| 1165 | init_completion(&rfbi.cmd_done); | 1165 | init_completion(&rfbi.cmd_done); |
| 1166 | atomic_set(&rfbi.cmd_fifo_full, 0); | 1166 | atomic_set(&rfbi.cmd_fifo_full, 0); |
| @@ -1196,7 +1196,7 @@ void rfbi_exit(void) | |||
| 1196 | { | 1196 | { |
| 1197 | DSSDBG("rfbi_exit\n"); | 1197 | DSSDBG("rfbi_exit\n"); |
| 1198 | 1198 | ||
| 1199 | kfifo_free(rfbi.cmd_fifo); | 1199 | kfifo_free(&rfbi.cmd_fifo); |
| 1200 | 1200 | ||
| 1201 | iounmap(rfbi.base); | 1201 | iounmap(rfbi.base); |
| 1202 | } | 1202 | } |
diff --git a/drivers/video/omap2/omapfb/omapfb-main.c b/drivers/video/omap2/omapfb/omapfb-main.c index ef299839858a..d17caef6915a 100644 --- a/drivers/video/omap2/omapfb/omapfb-main.c +++ b/drivers/video/omap2/omapfb/omapfb-main.c | |||
| @@ -1311,6 +1311,7 @@ static void omapfb_free_fbmem(struct fb_info *fbi) | |||
| 1311 | if (rg->vrfb.vaddr[0]) { | 1311 | if (rg->vrfb.vaddr[0]) { |
| 1312 | iounmap(rg->vrfb.vaddr[0]); | 1312 | iounmap(rg->vrfb.vaddr[0]); |
| 1313 | omap_vrfb_release_ctx(&rg->vrfb); | 1313 | omap_vrfb_release_ctx(&rg->vrfb); |
| 1314 | rg->vrfb.vaddr[0] = NULL; | ||
| 1314 | } | 1315 | } |
| 1315 | } | 1316 | } |
| 1316 | 1317 | ||
| @@ -2114,6 +2115,11 @@ static int omapfb_probe(struct platform_device *pdev) | |||
| 2114 | dssdev = NULL; | 2115 | dssdev = NULL; |
| 2115 | for_each_dss_dev(dssdev) { | 2116 | for_each_dss_dev(dssdev) { |
| 2116 | omap_dss_get_device(dssdev); | 2117 | omap_dss_get_device(dssdev); |
| 2118 | if (!dssdev->driver) { | ||
| 2119 | dev_err(&pdev->dev, "no driver for display\n"); | ||
| 2120 | r = -EINVAL; | ||
| 2121 | goto cleanup; | ||
| 2122 | } | ||
| 2117 | fbdev->displays[fbdev->num_displays++] = dssdev; | 2123 | fbdev->displays[fbdev->num_displays++] = dssdev; |
| 2118 | } | 2124 | } |
| 2119 | 2125 | ||
diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c index adf9632c6b1f..53cb722c45a0 100644 --- a/drivers/video/s3c-fb.c +++ b/drivers/video/s3c-fb.c | |||
| @@ -211,21 +211,23 @@ static int s3c_fb_check_var(struct fb_var_screeninfo *var, | |||
| 211 | 211 | ||
| 212 | /** | 212 | /** |
| 213 | * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock. | 213 | * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock. |
| 214 | * @id: window id. | ||
| 215 | * @sfb: The hardware state. | 214 | * @sfb: The hardware state. |
| 216 | * @pixclock: The pixel clock wanted, in picoseconds. | 215 | * @pixclock: The pixel clock wanted, in picoseconds. |
| 217 | * | 216 | * |
| 218 | * Given the specified pixel clock, work out the necessary divider to get | 217 | * Given the specified pixel clock, work out the necessary divider to get |
| 219 | * close to the output frequency. | 218 | * close to the output frequency. |
| 220 | */ | 219 | */ |
| 221 | static int s3c_fb_calc_pixclk(unsigned char id, struct s3c_fb *sfb, unsigned int pixclk) | 220 | static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk) |
| 222 | { | 221 | { |
| 223 | struct s3c_fb_pd_win *win = sfb->pdata->win[id]; | ||
| 224 | unsigned long clk = clk_get_rate(sfb->bus_clk); | 222 | unsigned long clk = clk_get_rate(sfb->bus_clk); |
| 223 | unsigned long long tmp; | ||
| 225 | unsigned int result; | 224 | unsigned int result; |
| 226 | 225 | ||
| 227 | pixclk *= win->win_mode.refresh; | 226 | tmp = (unsigned long long)clk; |
| 228 | result = clk / pixclk; | 227 | tmp *= pixclk; |
| 228 | |||
| 229 | do_div(tmp, 1000000000UL); | ||
| 230 | result = (unsigned int)tmp / 1000; | ||
| 229 | 231 | ||
| 230 | dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n", | 232 | dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n", |
| 231 | pixclk, clk, result, clk / result); | 233 | pixclk, clk, result, clk / result); |
| @@ -301,7 +303,7 @@ static int s3c_fb_set_par(struct fb_info *info) | |||
| 301 | /* use window 0 as the basis for the lcd output timings */ | 303 | /* use window 0 as the basis for the lcd output timings */ |
| 302 | 304 | ||
| 303 | if (win_no == 0) { | 305 | if (win_no == 0) { |
| 304 | clkdiv = s3c_fb_calc_pixclk(win_no, sfb, var->pixclock); | 306 | clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock); |
| 305 | 307 | ||
| 306 | data = sfb->pdata->vidcon0; | 308 | data = sfb->pdata->vidcon0; |
| 307 | data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR); | 309 | data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR); |
diff --git a/drivers/video/via/accel.c b/drivers/video/via/accel.c index 9d4f3a49ba4a..d5077dfa9e00 100644 --- a/drivers/video/via/accel.c +++ b/drivers/video/via/accel.c | |||
| @@ -137,7 +137,7 @@ static int hw_bitblt_1(void __iomem *engine, u8 op, u32 width, u32 height, | |||
| 137 | tmp, dst_pitch); | 137 | tmp, dst_pitch); |
| 138 | return -EINVAL; | 138 | return -EINVAL; |
| 139 | } | 139 | } |
| 140 | tmp = (tmp >> 3) | (dst_pitch << (16 - 3)); | 140 | tmp = VIA_PITCH_ENABLE | (tmp >> 3) | (dst_pitch << (16 - 3)); |
| 141 | writel(tmp, engine + 0x38); | 141 | writel(tmp, engine + 0x38); |
| 142 | 142 | ||
| 143 | if (op == VIA_BITBLT_FILL) | 143 | if (op == VIA_BITBLT_FILL) |
| @@ -352,6 +352,9 @@ int viafb_init_engine(struct fb_info *info) | |||
| 352 | viapar->shared->vq_vram_addr = viapar->fbmem_free; | 352 | viapar->shared->vq_vram_addr = viapar->fbmem_free; |
| 353 | viapar->fbmem_used += VQ_SIZE; | 353 | viapar->fbmem_used += VQ_SIZE; |
| 354 | 354 | ||
| 355 | /* Init 2D engine reg to reset 2D engine */ | ||
| 356 | writel(0x0, engine + VIA_REG_KEYCONTROL); | ||
| 357 | |||
| 355 | /* Init AGP and VQ regs */ | 358 | /* Init AGP and VQ regs */ |
| 356 | switch (chip_name) { | 359 | switch (chip_name) { |
| 357 | case UNICHROME_K8M890: | 360 | case UNICHROME_K8M890: |
diff --git a/drivers/video/via/viafbdev.c b/drivers/video/via/viafbdev.c index d8df17a7d5fc..3028e7ddc3b5 100644 --- a/drivers/video/via/viafbdev.c +++ b/drivers/video/via/viafbdev.c | |||
| @@ -177,16 +177,15 @@ static int viafb_set_par(struct fb_info *info) | |||
| 177 | } | 177 | } |
| 178 | 178 | ||
| 179 | if (vmode_index != VIA_RES_INVALID) { | 179 | if (vmode_index != VIA_RES_INVALID) { |
| 180 | viafb_setmode(vmode_index, info->var.xres, info->var.yres, | ||
| 181 | info->var.bits_per_pixel, vmode_index1, | ||
| 182 | viafb_second_xres, viafb_second_yres, viafb_bpp1); | ||
| 183 | |||
| 184 | viafb_update_fix(info); | 180 | viafb_update_fix(info); |
| 185 | viafb_bpp = info->var.bits_per_pixel; | 181 | viafb_bpp = info->var.bits_per_pixel; |
| 186 | if (info->var.accel_flags & FB_ACCELF_TEXT) | 182 | if (info->var.accel_flags & FB_ACCELF_TEXT) |
| 187 | info->flags &= ~FBINFO_HWACCEL_DISABLED; | 183 | info->flags &= ~FBINFO_HWACCEL_DISABLED; |
| 188 | else | 184 | else |
| 189 | info->flags |= FBINFO_HWACCEL_DISABLED; | 185 | info->flags |= FBINFO_HWACCEL_DISABLED; |
| 186 | viafb_setmode(vmode_index, info->var.xres, info->var.yres, | ||
| 187 | info->var.bits_per_pixel, vmode_index1, | ||
| 188 | viafb_second_xres, viafb_second_yres, viafb_bpp1); | ||
| 190 | } | 189 | } |
| 191 | 190 | ||
| 192 | return 0; | 191 | return 0; |
| @@ -872,7 +871,9 @@ static int viafb_cursor(struct fb_info *info, struct fb_cursor *cursor) | |||
| 872 | if (info->flags & FBINFO_HWACCEL_DISABLED || info != viafbinfo) | 871 | if (info->flags & FBINFO_HWACCEL_DISABLED || info != viafbinfo) |
| 873 | return -ENODEV; | 872 | return -ENODEV; |
| 874 | 873 | ||
| 875 | if (chip_name == UNICHROME_CLE266 && viapar->iga_path == IGA2) | 874 | /* LCD ouput does not support hw cursors (at least on VN896) */ |
| 875 | if ((chip_name == UNICHROME_CLE266 && viapar->iga_path == IGA2) || | ||
| 876 | viafb_LCD_ON) | ||
| 876 | return -ENODEV; | 877 | return -ENODEV; |
| 877 | 878 | ||
| 878 | viafb_show_hw_cursor(info, HW_Cursor_OFF); | 879 | viafb_show_hw_cursor(info, HW_Cursor_OFF); |
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 9dd588042880..505be88c82ae 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c | |||
| @@ -266,7 +266,7 @@ static void __devexit virtballoon_remove(struct virtio_device *vdev) | |||
| 266 | 266 | ||
| 267 | static unsigned int features[] = { VIRTIO_BALLOON_F_MUST_TELL_HOST }; | 267 | static unsigned int features[] = { VIRTIO_BALLOON_F_MUST_TELL_HOST }; |
| 268 | 268 | ||
| 269 | static struct virtio_driver virtio_balloon = { | 269 | static struct virtio_driver virtio_balloon_driver = { |
| 270 | .feature_table = features, | 270 | .feature_table = features, |
| 271 | .feature_table_size = ARRAY_SIZE(features), | 271 | .feature_table_size = ARRAY_SIZE(features), |
| 272 | .driver.name = KBUILD_MODNAME, | 272 | .driver.name = KBUILD_MODNAME, |
| @@ -279,12 +279,12 @@ static struct virtio_driver virtio_balloon = { | |||
| 279 | 279 | ||
| 280 | static int __init init(void) | 280 | static int __init init(void) |
| 281 | { | 281 | { |
| 282 | return register_virtio_driver(&virtio_balloon); | 282 | return register_virtio_driver(&virtio_balloon_driver); |
| 283 | } | 283 | } |
| 284 | 284 | ||
| 285 | static void __exit fini(void) | 285 | static void __exit fini(void) |
| 286 | { | 286 | { |
| 287 | unregister_virtio_driver(&virtio_balloon); | 287 | unregister_virtio_driver(&virtio_balloon_driver); |
| 288 | } | 288 | } |
| 289 | module_init(init); | 289 | module_init(init); |
| 290 | module_exit(fini); | 290 | module_exit(fini); |
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index 088f32f29a6e..050ee147592f 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig | |||
| @@ -396,8 +396,8 @@ config SBC_FITPC2_WATCHDOG | |||
| 396 | tristate "Compulab SBC-FITPC2 watchdog" | 396 | tristate "Compulab SBC-FITPC2 watchdog" |
| 397 | depends on X86 | 397 | depends on X86 |
| 398 | ---help--- | 398 | ---help--- |
| 399 | This is the driver for the built-in watchdog timer on the fit-PC2 | 399 | This is the driver for the built-in watchdog timer on the fit-PC2, |
| 400 | Single-board computer made by Compulab. | 400 | fit-PC2i, CM-iAM single-board computers made by Compulab. |
| 401 | 401 | ||
| 402 | It`s possible to enable watchdog timer either from BIOS (F2) or from booted Linux. | 402 | It`s possible to enable watchdog timer either from BIOS (F2) or from booted Linux. |
| 403 | When "Watchdog Timer Value" enabled one can set 31-255 s operational range. | 403 | When "Watchdog Timer Value" enabled one can set 31-255 s operational range. |
diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c index c8a3bec26830..4bdb7f1a9077 100644 --- a/drivers/watchdog/iTCO_wdt.c +++ b/drivers/watchdog/iTCO_wdt.c | |||
| @@ -29,8 +29,9 @@ | |||
| 29 | * document number 313056-003, 313057-017: 82801H (ICH8) | 29 | * document number 313056-003, 313057-017: 82801H (ICH8) |
| 30 | * document number 316972-004, 316973-012: 82801I (ICH9) | 30 | * document number 316972-004, 316973-012: 82801I (ICH9) |
| 31 | * document number 319973-002, 319974-002: 82801J (ICH10) | 31 | * document number 319973-002, 319974-002: 82801J (ICH10) |
| 32 | * document number 322169-001, 322170-001: 5 Series, 3400 Series (PCH) | 32 | * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH) |
| 33 | * document number 320066-003, 320257-008: EP80597 (IICH) | 33 | * document number 320066-003, 320257-008: EP80597 (IICH) |
| 34 | * document number TBD : Cougar Point (CPT) | ||
| 34 | */ | 35 | */ |
| 35 | 36 | ||
| 36 | /* | 37 | /* |
| @@ -100,8 +101,22 @@ enum iTCO_chipsets { | |||
| 100 | TCO_ICH10DO, /* ICH10DO */ | 101 | TCO_ICH10DO, /* ICH10DO */ |
| 101 | TCO_PCH, /* PCH Desktop Full Featured */ | 102 | TCO_PCH, /* PCH Desktop Full Featured */ |
| 102 | TCO_PCHM, /* PCH Mobile Full Featured */ | 103 | TCO_PCHM, /* PCH Mobile Full Featured */ |
| 104 | TCO_P55, /* P55 */ | ||
| 105 | TCO_PM55, /* PM55 */ | ||
| 106 | TCO_H55, /* H55 */ | ||
| 107 | TCO_QM57, /* QM57 */ | ||
| 108 | TCO_H57, /* H57 */ | ||
| 109 | TCO_HM55, /* HM55 */ | ||
| 110 | TCO_Q57, /* Q57 */ | ||
| 111 | TCO_HM57, /* HM57 */ | ||
| 103 | TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */ | 112 | TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */ |
| 113 | TCO_QS57, /* QS57 */ | ||
| 114 | TCO_3400, /* 3400 */ | ||
| 115 | TCO_3420, /* 3420 */ | ||
| 116 | TCO_3450, /* 3450 */ | ||
| 104 | TCO_EP80579, /* EP80579 */ | 117 | TCO_EP80579, /* EP80579 */ |
| 118 | TCO_CPTD, /* CPT Desktop */ | ||
| 119 | TCO_CPTM, /* CPT Mobile */ | ||
| 105 | }; | 120 | }; |
| 106 | 121 | ||
| 107 | static struct { | 122 | static struct { |
| @@ -144,8 +159,22 @@ static struct { | |||
| 144 | {"ICH10DO", 2}, | 159 | {"ICH10DO", 2}, |
| 145 | {"PCH Desktop Full Featured", 2}, | 160 | {"PCH Desktop Full Featured", 2}, |
| 146 | {"PCH Mobile Full Featured", 2}, | 161 | {"PCH Mobile Full Featured", 2}, |
| 162 | {"P55", 2}, | ||
| 163 | {"PM55", 2}, | ||
| 164 | {"H55", 2}, | ||
| 165 | {"QM57", 2}, | ||
| 166 | {"H57", 2}, | ||
| 167 | {"HM55", 2}, | ||
| 168 | {"Q57", 2}, | ||
| 169 | {"HM57", 2}, | ||
| 147 | {"PCH Mobile SFF Full Featured", 2}, | 170 | {"PCH Mobile SFF Full Featured", 2}, |
| 171 | {"QS57", 2}, | ||
| 172 | {"3400", 2}, | ||
| 173 | {"3420", 2}, | ||
| 174 | {"3450", 2}, | ||
| 148 | {"EP80579", 2}, | 175 | {"EP80579", 2}, |
| 176 | {"CPT Desktop", 2}, | ||
| 177 | {"CPT Mobile", 2}, | ||
| 149 | {NULL, 0} | 178 | {NULL, 0} |
| 150 | }; | 179 | }; |
| 151 | 180 | ||
| @@ -216,8 +245,22 @@ static struct pci_device_id iTCO_wdt_pci_tbl[] = { | |||
| 216 | { ITCO_PCI_DEVICE(0x3a14, TCO_ICH10DO)}, | 245 | { ITCO_PCI_DEVICE(0x3a14, TCO_ICH10DO)}, |
| 217 | { ITCO_PCI_DEVICE(0x3b00, TCO_PCH)}, | 246 | { ITCO_PCI_DEVICE(0x3b00, TCO_PCH)}, |
| 218 | { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM)}, | 247 | { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM)}, |
| 248 | { ITCO_PCI_DEVICE(0x3b02, TCO_P55)}, | ||
| 249 | { ITCO_PCI_DEVICE(0x3b03, TCO_PM55)}, | ||
| 250 | { ITCO_PCI_DEVICE(0x3b06, TCO_H55)}, | ||
| 251 | { ITCO_PCI_DEVICE(0x3b07, TCO_QM57)}, | ||
| 252 | { ITCO_PCI_DEVICE(0x3b08, TCO_H57)}, | ||
| 253 | { ITCO_PCI_DEVICE(0x3b09, TCO_HM55)}, | ||
| 254 | { ITCO_PCI_DEVICE(0x3b0a, TCO_Q57)}, | ||
| 255 | { ITCO_PCI_DEVICE(0x3b0b, TCO_HM57)}, | ||
| 219 | { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF)}, | 256 | { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF)}, |
| 257 | { ITCO_PCI_DEVICE(0x3b0f, TCO_QS57)}, | ||
| 258 | { ITCO_PCI_DEVICE(0x3b12, TCO_3400)}, | ||
| 259 | { ITCO_PCI_DEVICE(0x3b14, TCO_3420)}, | ||
| 260 | { ITCO_PCI_DEVICE(0x3b16, TCO_3450)}, | ||
| 220 | { ITCO_PCI_DEVICE(0x5031, TCO_EP80579)}, | 261 | { ITCO_PCI_DEVICE(0x5031, TCO_EP80579)}, |
| 262 | { ITCO_PCI_DEVICE(0x1c42, TCO_CPTD)}, | ||
| 263 | { ITCO_PCI_DEVICE(0x1c43, TCO_CPTM)}, | ||
| 221 | { 0, }, /* End of list */ | 264 | { 0, }, /* End of list */ |
| 222 | }; | 265 | }; |
| 223 | MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); | 266 | MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); |
diff --git a/drivers/watchdog/ixp2000_wdt.c b/drivers/watchdog/ixp2000_wdt.c index 4f4b35a20d84..3c79dc587958 100644 --- a/drivers/watchdog/ixp2000_wdt.c +++ b/drivers/watchdog/ixp2000_wdt.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
| 20 | #include <linux/moduleparam.h> | 20 | #include <linux/moduleparam.h> |
| 21 | #include <linux/types.h> | 21 | #include <linux/types.h> |
| 22 | #include <linux/timer.h> | ||
| 22 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
| 23 | #include <linux/fs.h> | 24 | #include <linux/fs.h> |
| 24 | #include <linux/miscdevice.h> | 25 | #include <linux/miscdevice.h> |
diff --git a/drivers/watchdog/sbc_fitpc2_wdt.c b/drivers/watchdog/sbc_fitpc2_wdt.c index 91430a89107c..e6763d2a567b 100644 --- a/drivers/watchdog/sbc_fitpc2_wdt.c +++ b/drivers/watchdog/sbc_fitpc2_wdt.c | |||
| @@ -46,9 +46,9 @@ static DEFINE_SPINLOCK(wdt_lock); | |||
| 46 | static void wdt_send_data(unsigned char command, unsigned char data) | 46 | static void wdt_send_data(unsigned char command, unsigned char data) |
| 47 | { | 47 | { |
| 48 | outb(command, COMMAND_PORT); | 48 | outb(command, COMMAND_PORT); |
| 49 | mdelay(100); | 49 | msleep(100); |
| 50 | outb(data, DATA_PORT); | 50 | outb(data, DATA_PORT); |
| 51 | mdelay(200); | 51 | msleep(200); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | static void wdt_enable(void) | 54 | static void wdt_enable(void) |
| @@ -202,11 +202,10 @@ static int __init fitpc2_wdt_init(void) | |||
| 202 | { | 202 | { |
| 203 | int err; | 203 | int err; |
| 204 | 204 | ||
| 205 | if (strcmp("SBC-FITPC2", dmi_get_system_info(DMI_BOARD_NAME))) { | 205 | if (!strstr(dmi_get_system_info(DMI_BOARD_NAME), "SBC-FITPC2")) |
| 206 | pr_info("board name is: %s. Should be SBC-FITPC2\n", | ||
| 207 | dmi_get_system_info(DMI_BOARD_NAME)); | ||
| 208 | return -ENODEV; | 206 | return -ENODEV; |
| 209 | } | 207 | |
| 208 | pr_info("%s found\n", dmi_get_system_info(DMI_BOARD_NAME)); | ||
| 210 | 209 | ||
| 211 | if (!request_region(COMMAND_PORT, 1, WATCHDOG_NAME)) { | 210 | if (!request_region(COMMAND_PORT, 1, WATCHDOG_NAME)) { |
| 212 | pr_err("I/O address 0x%04x already in use\n", COMMAND_PORT); | 211 | pr_err("I/O address 0x%04x already in use\n", COMMAND_PORT); |
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c index c4997930afc7..5d42d55e299b 100644 --- a/drivers/xen/manage.c +++ b/drivers/xen/manage.c | |||
| @@ -102,15 +102,15 @@ static void do_suspend(void) | |||
| 102 | goto out_thaw; | 102 | goto out_thaw; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | printk(KERN_DEBUG "suspending xenstore...\n"); | ||
| 106 | xs_suspend(); | ||
| 107 | |||
| 105 | err = dpm_suspend_noirq(PMSG_SUSPEND); | 108 | err = dpm_suspend_noirq(PMSG_SUSPEND); |
| 106 | if (err) { | 109 | if (err) { |
| 107 | printk(KERN_ERR "dpm_suspend_noirq failed: %d\n", err); | 110 | printk(KERN_ERR "dpm_suspend_noirq failed: %d\n", err); |
| 108 | goto out_resume; | 111 | goto out_resume; |
| 109 | } | 112 | } |
| 110 | 113 | ||
| 111 | printk(KERN_DEBUG "suspending xenstore...\n"); | ||
| 112 | xs_suspend(); | ||
| 113 | |||
| 114 | err = stop_machine(xen_suspend, &cancelled, cpumask_of(0)); | 114 | err = stop_machine(xen_suspend, &cancelled, cpumask_of(0)); |
| 115 | 115 | ||
| 116 | dpm_resume_noirq(PMSG_RESUME); | 116 | dpm_resume_noirq(PMSG_RESUME); |
| @@ -120,13 +120,13 @@ static void do_suspend(void) | |||
| 120 | cancelled = 1; | 120 | cancelled = 1; |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | out_resume: | ||
| 123 | if (!cancelled) { | 124 | if (!cancelled) { |
| 124 | xen_arch_resume(); | 125 | xen_arch_resume(); |
| 125 | xs_resume(); | 126 | xs_resume(); |
| 126 | } else | 127 | } else |
| 127 | xs_suspend_cancel(); | 128 | xs_suspend_cancel(); |
| 128 | 129 | ||
| 129 | out_resume: | ||
| 130 | dpm_resume_end(PMSG_RESUME); | 130 | dpm_resume_end(PMSG_RESUME); |
| 131 | 131 | ||
| 132 | /* Make sure timer events get retriggered on all CPUs */ | 132 | /* Make sure timer events get retriggered on all CPUs */ |
