Changeset 3635 for trunk

Show
Ignore:
Timestamp:
10/03/08 20:16:23 (7 weeks ago)
Author:
uwe
Message:

Fix/amend the incorrect pnp_dev_info[] items for the ITE IT8712F Super I/O.

Signed-off-by: Uwe Hermann <uwe@…>
Acked-by: Marc Jones <marc.jones@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/coreboot-v2/src/superio/ite/it8712f/superio.c

    r3624 r3635  
    122122}; 
    123123 
    124 /* TODO: FDC, MIDI, GAME, IR. */ 
    125124static struct pnp_info pnp_dev_info[] = { 
    126         {&ops, IT8712F_SP1, PNP_IO0 | PNP_IRQ0, {0x7f8, 0}, }, 
    127         {&ops, IT8712F_SP2, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x7f8, 0}, }, 
    128         {&ops, IT8712F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0},}, 
    129         {&ops, IT8712F_EC, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x7f8, 0}, {0x7f8, 0x4},}, 
    130         {&ops, IT8712F_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x7f8, 0}, {0x7f8, 0x4}, }, 
    131         {&ops, IT8712F_KBCM, PNP_IRQ0, }, 
    132         {&ops, IT8712F_GPIO, }, 
     125        {&ops, IT8712F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0xff8, 0},}, 
     126        {&ops, IT8712F_SP1, PNP_IO0 | PNP_IRQ0, {0xff8, 0},}, 
     127        {&ops, IT8712F_SP2, PNP_IO0 | PNP_IRQ0, {0xff8, 0},}, 
     128        {&ops, IT8712F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0xffc, 0},}, 
     129        {&ops, IT8712F_EC, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0xff8, 0}, {0xff8, 4},}, 
     130        {&ops, IT8712F_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0xfff, 0}, {0xfff, 4},}, 
     131        {&ops, IT8712F_KBCM, PNP_IRQ0,}, 
     132        {&ops, IT8712F_GPIO,}, 
     133        {&ops, IT8712F_MIDI, PNP_IO0 | PNP_IRQ0, {0xff8, 0},}, 
     134        {&ops, IT8712F_GAME, PNP_IO0, {0xfff, 0},}, 
     135        {&ops, IT8712F_IR, PNP_IO0 | PNP_IRQ0, {0xff8, 0},}, 
    133136}; 
    134137