aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorGregory Haskins <ghaskins@novell.com>2009-06-01 12:54:50 -0400
committerAvi Kivity <avi@redhat.com>2009-09-10 01:32:45 -0400
commitd76685c4a074041ed168e0b04dd604c3df5dcaa5 (patch)
tree828fb3a57b7829530904318a0ad9d006e21408ad /arch/x86/kvm
parent787a660a4f03325a0e00493ac39017e53fd345fa (diff)
KVM: cleanup io_device code
We modernize the io_device code so that we use container_of() instead of dev->private, and move the vtable to a separate ops structure (theoretically allows better caching for multiple instances of the same ops structure) Signed-off-by: Gregory Haskins <ghaskins@novell.com> Acked-by: Chris Wright <chrisw@sous-sol.org> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/i8254.c40
-rw-r--r--arch/x86/kvm/i8259.c20
-rw-r--r--arch/x86/kvm/lapic.c22
-rw-r--r--arch/x86/kvm/x86.c2
4 files changed, 58 insertions, 26 deletions
diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c
index 0990bc9aac1f..e800d2d66266 100644
--- a/arch/x86/kvm/i8254.c
+++ b/arch/x86/kvm/i8254.c
@@ -350,10 +350,20 @@ void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val)
350 mutex_unlock(&kvm->arch.vpit->pit_state.lock); 350 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
351} 351}
352 352
353static inline struct kvm_pit *dev_to_pit(struct kvm_io_device *dev)
354{
355 return container_of(dev, struct kvm_pit, dev);
356}
357
358static inline struct kvm_pit *speaker_to_pit(struct kvm_io_device *dev)
359{
360 return container_of(dev, struct kvm_pit, speaker_dev);
361}
362
353static void pit_ioport_write(struct kvm_io_device *this, 363static void pit_ioport_write(struct kvm_io_device *this,
354 gpa_t addr, int len, const void *data) 364 gpa_t addr, int len, const void *data)
355{ 365{
356 struct kvm_pit *pit = (struct kvm_pit *)this->private; 366 struct kvm_pit *pit = dev_to_pit(this);
357 struct kvm_kpit_state *pit_state = &pit->pit_state; 367 struct kvm_kpit_state *pit_state = &pit->pit_state;
358 struct kvm *kvm = pit->kvm; 368 struct kvm *kvm = pit->kvm;
359 int channel, access; 369 int channel, access;
@@ -426,7 +436,7 @@ static void pit_ioport_write(struct kvm_io_device *this,
426static void pit_ioport_read(struct kvm_io_device *this, 436static void pit_ioport_read(struct kvm_io_device *this,
427 gpa_t addr, int len, void *data) 437 gpa_t addr, int len, void *data)
428{ 438{
429 struct kvm_pit *pit = (struct kvm_pit *)this->private; 439 struct kvm_pit *pit = dev_to_pit(this);
430 struct kvm_kpit_state *pit_state = &pit->pit_state; 440 struct kvm_kpit_state *pit_state = &pit->pit_state;
431 struct kvm *kvm = pit->kvm; 441 struct kvm *kvm = pit->kvm;
432 int ret, count; 442 int ret, count;
@@ -497,7 +507,7 @@ static int pit_in_range(struct kvm_io_device *this, gpa_t addr,
497static void speaker_ioport_write(struct kvm_io_device *this, 507static void speaker_ioport_write(struct kvm_io_device *this,
498 gpa_t addr, int len, const void *data) 508 gpa_t addr, int len, const void *data)
499{ 509{
500 struct kvm_pit *pit = (struct kvm_pit *)this->private; 510 struct kvm_pit *pit = speaker_to_pit(this);
501 struct kvm_kpit_state *pit_state = &pit->pit_state; 511 struct kvm_kpit_state *pit_state = &pit->pit_state;
502 struct kvm *kvm = pit->kvm; 512 struct kvm *kvm = pit->kvm;
503 u32 val = *(u32 *) data; 513 u32 val = *(u32 *) data;
@@ -511,7 +521,7 @@ static void speaker_ioport_write(struct kvm_io_device *this,
511static void speaker_ioport_read(struct kvm_io_device *this, 521static void speaker_ioport_read(struct kvm_io_device *this,
512 gpa_t addr, int len, void *data) 522 gpa_t addr, int len, void *data)
513{ 523{
514 struct kvm_pit *pit = (struct kvm_pit *)this->private; 524 struct kvm_pit *pit = speaker_to_pit(this);
515 struct kvm_kpit_state *pit_state = &pit->pit_state; 525 struct kvm_kpit_state *pit_state = &pit->pit_state;
516 struct kvm *kvm = pit->kvm; 526 struct kvm *kvm = pit->kvm;
517 unsigned int refresh_clock; 527 unsigned int refresh_clock;
@@ -563,6 +573,18 @@ static void pit_mask_notifer(struct kvm_irq_mask_notifier *kimn, bool mask)
563 } 573 }
564} 574}
565 575
576static const struct kvm_io_device_ops pit_dev_ops = {
577 .read = pit_ioport_read,
578 .write = pit_ioport_write,
579 .in_range = pit_in_range,
580};
581
582static const struct kvm_io_device_ops speaker_dev_ops = {
583 .read = speaker_ioport_read,
584 .write = speaker_ioport_write,
585 .in_range = speaker_in_range,
586};
587
566struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags) 588struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags)
567{ 589{
568 struct kvm_pit *pit; 590 struct kvm_pit *pit;
@@ -583,17 +605,11 @@ struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags)
583 spin_lock_init(&pit->pit_state.inject_lock); 605 spin_lock_init(&pit->pit_state.inject_lock);
584 606
585 /* Initialize PIO device */ 607 /* Initialize PIO device */
586 pit->dev.read = pit_ioport_read; 608 kvm_iodevice_init(&pit->dev, &pit_dev_ops);
587 pit->dev.write = pit_ioport_write;
588 pit->dev.in_range = pit_in_range;
589 pit->dev.private = pit;
590 kvm_io_bus_register_dev(&kvm->pio_bus, &pit->dev); 609 kvm_io_bus_register_dev(&kvm->pio_bus, &pit->dev);
591 610
592 if (flags & KVM_PIT_SPEAKER_DUMMY) { 611 if (flags & KVM_PIT_SPEAKER_DUMMY) {
593 pit->speaker_dev.read = speaker_ioport_read; 612 kvm_iodevice_init(&pit->speaker_dev, &speaker_dev_ops);
594 pit->speaker_dev.write = speaker_ioport_write;
595 pit->speaker_dev.in_range = speaker_in_range;
596 pit->speaker_dev.private = pit;
597 kvm_io_bus_register_dev(&kvm->pio_bus, &pit->speaker_dev); 613 kvm_io_bus_register_dev(&kvm->pio_bus, &pit->speaker_dev);
598 } 614 }
599 615
diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c
index 1ccb50c74f18..2520922282d5 100644
--- a/arch/x86/kvm/i8259.c
+++ b/arch/x86/kvm/i8259.c
@@ -444,10 +444,15 @@ static int picdev_in_range(struct kvm_io_device *this, gpa_t addr,
444 } 444 }
445} 445}
446 446
447static inline struct kvm_pic *to_pic(struct kvm_io_device *dev)
448{
449 return container_of(dev, struct kvm_pic, dev);
450}
451
447static void picdev_write(struct kvm_io_device *this, 452static void picdev_write(struct kvm_io_device *this,
448 gpa_t addr, int len, const void *val) 453 gpa_t addr, int len, const void *val)
449{ 454{
450 struct kvm_pic *s = this->private; 455 struct kvm_pic *s = to_pic(this);
451 unsigned char data = *(unsigned char *)val; 456 unsigned char data = *(unsigned char *)val;
452 457
453 if (len != 1) { 458 if (len != 1) {
@@ -474,7 +479,7 @@ static void picdev_write(struct kvm_io_device *this,
474static void picdev_read(struct kvm_io_device *this, 479static void picdev_read(struct kvm_io_device *this,
475 gpa_t addr, int len, void *val) 480 gpa_t addr, int len, void *val)
476{ 481{
477 struct kvm_pic *s = this->private; 482 struct kvm_pic *s = to_pic(this);
478 unsigned char data = 0; 483 unsigned char data = 0;
479 484
480 if (len != 1) { 485 if (len != 1) {
@@ -516,6 +521,12 @@ static void pic_irq_request(void *opaque, int level)
516 } 521 }
517} 522}
518 523
524static const struct kvm_io_device_ops picdev_ops = {
525 .read = picdev_read,
526 .write = picdev_write,
527 .in_range = picdev_in_range,
528};
529
519struct kvm_pic *kvm_create_pic(struct kvm *kvm) 530struct kvm_pic *kvm_create_pic(struct kvm *kvm)
520{ 531{
521 struct kvm_pic *s; 532 struct kvm_pic *s;
@@ -534,10 +545,7 @@ struct kvm_pic *kvm_create_pic(struct kvm *kvm)
534 /* 545 /*
535 * Initialize PIO device 546 * Initialize PIO device
536 */ 547 */
537 s->dev.read = picdev_read; 548 kvm_iodevice_init(&s->dev, &picdev_ops);
538 s->dev.write = picdev_write;
539 s->dev.in_range = picdev_in_range;
540 s->dev.private = s;
541 kvm_io_bus_register_dev(&kvm->pio_bus, &s->dev); 549 kvm_io_bus_register_dev(&kvm->pio_bus, &s->dev);
542 return s; 550 return s;
543} 551}
diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
index ae99d83f81a3..4bfd458a4f3e 100644
--- a/arch/x86/kvm/lapic.c
+++ b/arch/x86/kvm/lapic.c
@@ -522,10 +522,15 @@ static u32 __apic_read(struct kvm_lapic *apic, unsigned int offset)
522 return val; 522 return val;
523} 523}
524 524
525static inline struct kvm_lapic *to_lapic(struct kvm_io_device *dev)
526{
527 return container_of(dev, struct kvm_lapic, dev);
528}
529
525static void apic_mmio_read(struct kvm_io_device *this, 530static void apic_mmio_read(struct kvm_io_device *this,
526 gpa_t address, int len, void *data) 531 gpa_t address, int len, void *data)
527{ 532{
528 struct kvm_lapic *apic = (struct kvm_lapic *)this->private; 533 struct kvm_lapic *apic = to_lapic(this);
529 unsigned int offset = address - apic->base_address; 534 unsigned int offset = address - apic->base_address;
530 unsigned char alignment = offset & 0xf; 535 unsigned char alignment = offset & 0xf;
531 u32 result; 536 u32 result;
@@ -606,7 +611,7 @@ static void apic_manage_nmi_watchdog(struct kvm_lapic *apic, u32 lvt0_val)
606static void apic_mmio_write(struct kvm_io_device *this, 611static void apic_mmio_write(struct kvm_io_device *this,
607 gpa_t address, int len, const void *data) 612 gpa_t address, int len, const void *data)
608{ 613{
609 struct kvm_lapic *apic = (struct kvm_lapic *)this->private; 614 struct kvm_lapic *apic = to_lapic(this);
610 unsigned int offset = address - apic->base_address; 615 unsigned int offset = address - apic->base_address;
611 unsigned char alignment = offset & 0xf; 616 unsigned char alignment = offset & 0xf;
612 u32 val; 617 u32 val;
@@ -723,7 +728,7 @@ static void apic_mmio_write(struct kvm_io_device *this,
723static int apic_mmio_range(struct kvm_io_device *this, gpa_t addr, 728static int apic_mmio_range(struct kvm_io_device *this, gpa_t addr,
724 int len, int size) 729 int len, int size)
725{ 730{
726 struct kvm_lapic *apic = (struct kvm_lapic *)this->private; 731 struct kvm_lapic *apic = to_lapic(this);
727 int ret = 0; 732 int ret = 0;
728 733
729 734
@@ -917,6 +922,12 @@ static struct kvm_timer_ops lapic_timer_ops = {
917 .is_periodic = lapic_is_periodic, 922 .is_periodic = lapic_is_periodic,
918}; 923};
919 924
925static const struct kvm_io_device_ops apic_mmio_ops = {
926 .read = apic_mmio_read,
927 .write = apic_mmio_write,
928 .in_range = apic_mmio_range,
929};
930
920int kvm_create_lapic(struct kvm_vcpu *vcpu) 931int kvm_create_lapic(struct kvm_vcpu *vcpu)
921{ 932{
922 struct kvm_lapic *apic; 933 struct kvm_lapic *apic;
@@ -951,10 +962,7 @@ int kvm_create_lapic(struct kvm_vcpu *vcpu)
951 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE; 962 vcpu->arch.apic_base = APIC_DEFAULT_PHYS_BASE;
952 963
953 kvm_lapic_reset(vcpu); 964 kvm_lapic_reset(vcpu);
954 apic->dev.read = apic_mmio_read; 965 kvm_iodevice_init(&apic->dev, &apic_mmio_ops);
955 apic->dev.write = apic_mmio_write;
956 apic->dev.in_range = apic_mmio_range;
957 apic->dev.private = apic;
958 966
959 return 0; 967 return 0;
960nomem_free_apic: 968nomem_free_apic:
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 5eb3b8dd74b8..75e9df097845 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -2264,7 +2264,7 @@ static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
2264 2264
2265 if (vcpu->arch.apic) { 2265 if (vcpu->arch.apic) {
2266 dev = &vcpu->arch.apic->dev; 2266 dev = &vcpu->arch.apic->dev;
2267 if (dev->in_range(dev, addr, len, is_write)) 2267 if (kvm_iodevice_in_range(dev, addr, len, is_write))
2268 return dev; 2268 return dev;
2269 } 2269 }
2270 return NULL; 2270 return NULL;