/[gxemul]/trunk/src/devices/dev_lca.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/devices/dev_lca.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 32 by dpavlin, Mon Oct 8 16:20:58 2007 UTC revision 34 by dpavlin, Mon Oct 8 16:21:17 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2006  Anders Gavare.  All rights reserved.   *  Copyright (C) 2006-2007  Anders Gavare.  All rights reserved.
3   *   *
4   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
5   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: dev_lca.c,v 1.4 2006/08/29 15:55:10 debug Exp $   *  $Id: dev_lca.c,v 1.8 2006/12/30 13:30:58 debug Exp $
29   *   *
30   *  LCA PCI bus (for Alpha machines).   *  LCA PCI bus (for Alpha machines).
31   */   */
# Line 39  Line 39 
39  #include "cpu.h"  #include "cpu.h"
40  #include "device.h"  #include "device.h"
41  #include "emul.h"  #include "emul.h"
42    #include "interrupt.h"
43  #include "machine.h"  #include "machine.h"
44  #include "memory.h"  #include "memory.h"
45  #include "misc.h"  #include "misc.h"
# Line 64  struct lca_data { Line 65  struct lca_data {
65  };  };
66    
67    
68    /*
69     *  lca_interrupt_assert():
70     *
71     *  Line 0 = ISA interrupt.
72     */
73    void lca_interrupt_assert(struct interrupt *interrupt)
74    {
75            fatal("lca_interrupt_assert: TODO\n");
76            exit(1);
77    }
78    
79    
80    /*
81     *  lca_interrupt_deassert():
82     *
83     *  Line 0 = ISA interrupt.
84     */
85    void lca_interrupt_deassert(struct interrupt *interrupt)
86    {
87            fatal("lca_interrupt_deassert: TODO\n");
88            exit(1);
89    }
90    
91    
92  DEVICE_ACCESS(lca_pci_conf)  DEVICE_ACCESS(lca_pci_conf)
93  {  {
94          uint64_t idata = 0, odata = 0;          uint64_t idata = 0, odata = 0;
# Line 302  DEVICE_ACCESS(lca_ioc) Line 327  DEVICE_ACCESS(lca_ioc)
327    
328  DEVINIT(lca)  DEVINIT(lca)
329  {  {
330            char *interrupt_path;
331            struct interrupt interrupt_template;
332          struct lca_data *d = malloc(sizeof(struct lca_data));          struct lca_data *d = malloc(sizeof(struct lca_data));
333          if (d == NULL) {          if (d == NULL) {
334                  fprintf(stderr, "out of memory\n");                  fprintf(stderr, "out of memory\n");
# Line 312  DEVINIT(lca) Line 339  DEVINIT(lca)
339          /*  Register a PCI bus:  */          /*  Register a PCI bus:  */
340          d->pci_data = bus_pci_init(          d->pci_data = bus_pci_init(
341              devinit->machine,              devinit->machine,
342              0                   /*  pciirq: TODO  */,              "TODO: irq"         /*  pciirq: TODO  */,
343              LCA_PCI_SIO,        /*  pci device io offset  */              LCA_PCI_SIO,        /*  pci device io offset  */
344              0x00000000,         /*  pci device mem offset: TODO  */              0x00000000,         /*  pci device mem offset: TODO  */
345              0x00000000,         /*  PCI portbase: TODO  */              0x00000000,         /*  PCI portbase: TODO  */
346              0x00000000,         /*  PCI membase: TODO  */              0x00000000,         /*  PCI membase: TODO  */
347              0x00000000,         /*  PCI irqbase: TODO  */              "TODO: pci irq base",       /*  PCI irqbase: TODO  */
348              LCA_ISA_BASE,       /*  ISA portbase  */              LCA_ISA_BASE,       /*  ISA portbase  */
349              LCA_ISA_MEMBASE,    /*  ISA membase  */              LCA_ISA_MEMBASE,    /*  ISA membase  */
350              8);                 /*  ISA irqbase: TODO  */              "TODO: irqbase isa");                /*  ISA irqbase: TODO  */
351    
352          /*  Add the "sio0" controller (as seen by NetBSD):  */          /*  Add the "sio0" controller (as seen by NetBSD):  */
353          bus_pci_add(devinit->machine, d->pci_data, devinit->machine->memory,          bus_pci_add(devinit->machine, d->pci_data, devinit->machine->memory,
# Line 338  DEVINIT(lca) Line 365  DEVINIT(lca)
365              LCA_IOC_BASE, 0x20000000, dev_lca_ioc_access, (void *)d,              LCA_IOC_BASE, 0x20000000, dev_lca_ioc_access, (void *)d,
366              DM_DEFAULT, NULL);              DM_DEFAULT, NULL);
367    
368          /*  TODO: IRQs etc.  */          interrupt_path = malloc(strlen(devinit->machine->path) + 10);
369          bus_isa_init(devinit->machine, BUS_ISA_IDE0 | BUS_ISA_IDE1,          snprintf(interrupt_path, strlen(devinit->machine->path) + 10,
370              LCA_ISA_BASE, LCA_ISA_MEMBASE, 32, 48);              "%s.lca", devinit->machine->path);
371    
372            memset(&interrupt_template, 0, sizeof(interrupt_template));
373            interrupt_template.line = 0;
374            interrupt_template.name = interrupt_path;
375            interrupt_template.extra = d;
376            interrupt_template.interrupt_assert = lca_interrupt_assert;
377            interrupt_template.interrupt_deassert = lca_interrupt_deassert;
378            interrupt_handler_register(&interrupt_template);
379    
380            bus_isa_init(devinit->machine, interrupt_path,
381                BUS_ISA_IDE0 | BUS_ISA_IDE1, LCA_ISA_BASE, LCA_ISA_MEMBASE);
382    
383          return 1;          return 1;
384  }  }

Legend:
Removed from v.32  
changed lines
  Added in v.34

  ViewVC Help
Powered by ViewVC 1.1.26