Changes in / [f834dd81:eca820c] in mainline
- Files:
-
- 2 added
- 5 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rf834dd81 reca820c 1 x#1 # 2 2 # Copyright (c) 2006 Martin Decky 3 3 # All rights reserved. -
boot/arch/sparc64/Makefile.inc
rf834dd81 reca820c 43 43 bus/pci/pciintel \ 44 44 bus/isa \ 45 intctl/obio \46 45 char/ns8250 47 46 48 47 RD_DRV_CFG += \ 49 48 bus/isa 49 50 RD_SRVS_NON_ESSENTIAL += 51 52 RD_SRVS_ESSENTIAL += \ 53 $(USPACE_PATH)/srv/hw/irc/obio/obio 50 54 51 55 SOURCES = \ -
uspace/Makefile
rf834dd81 reca820c 135 135 srv/hid/remcons \ 136 136 srv/hw/char/s3c24xx_uart \ 137 srv/hw/irc/obio \ 137 138 srv/hid/rfb \ 138 139 drv/audio/hdaudio \ … … 169 170 drv/intctl/i8259 \ 170 171 drv/intctl/icp-ic \ 171 drv/intctl/obio \172 172 drv/nic/ne2k \ 173 173 drv/nic/e1k \ -
uspace/drv/platform/sun4u/sun4u.c
rf834dd81 reca820c 68 68 #define PBM_PCI_MEM_SIZE UINT64_C(0x00100000000) 69 69 70 #define PBM_OBIO_BASE UINT64_C(0)71 #define PBM_OBIO_SIZE UINT64_C(0x1898)72 73 74 70 typedef struct sun4u_fun { 75 71 hw_resource_list_t hw_resources; … … 89 85 .name = NAME, 90 86 .driver_ops = &sun4u_ops 91 };92 93 static hw_resource_t obio_res[] = {94 {95 .type = MEM_RANGE,96 .res.mem_range = {97 .address = PBM_BASE + PBM_OBIO_BASE,98 .size = PBM_OBIO_SIZE,99 .relative = false,100 .endianness = LITTLE_ENDIAN101 }102 }103 };104 105 static sun4u_fun_t obio_data = {106 .hw_resources = {107 .count = sizeof(obio_res) / sizeof(obio_res[0]),108 .resources = obio_res109 },110 .pio_window = {111 .mem = {112 .base = PBM_BASE + PBM_OBIO_BASE,113 .size = PBM_OBIO_SIZE114 }115 }116 87 }; 117 88 … … 230 201 static bool sun4u_add_functions(ddf_dev_t *dev) 231 202 { 232 if (!sun4u_add_fun(dev, "obio", "ebus/obio", &obio_data))233 return false;234 235 203 return sun4u_add_fun(dev, "pci0", "intel_pci", &pci_data); 236 204 }
Note:
See TracChangeset
for help on using the changeset viewer.