Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/isa/isa.c

    r443695e r3d0fd0d  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
     2 * Copyright (c) 2018 Jiri Svoboda
    33 * Copyright (c) 2010 Lenka Trochtova
    44 * Copyright (c) 2011 Jan Vesely
     
    7272#define EBUS_CHILD_FUN_CONF_PATH "/drv/isa/ebus.dev"
    7373
    74 #define ISA_MAX_HW_RES 6
     74#define ISA_MAX_HW_RES 5
    7575
    7676typedef struct {
    7777        fibril_mutex_t mutex;
    78         bool pci_isa_bridge;
    7978        uint16_t pci_vendor_id;
    8079        uint16_t pci_device_id;
     
    9392        hw_resource_list_t hw_resources;
    9493        link_t bus_link;
    95         isa_bus_t *bus;
    9694} isa_fun_t;
    9795
     
    206204}
    207205
    208 static errno_t isa_fun_get_flags(ddf_fun_t *fnode, hw_res_flags_t *rflags)
    209 {
    210         isa_fun_t *fun = isa_fun(fnode);
    211         hw_res_flags_t flags;
    212 
    213         flags = 0;
    214         if (fun->bus->pci_isa_bridge)
    215                 flags |= hwf_isa_bridge;
    216 
    217         ddf_msg(LVL_NOTE, "isa_fun_get_flags: returning 0x%x", flags);
    218         *rflags = flags;
    219         return EOK;
    220 }
    221 
    222206static hw_res_ops_t isa_fun_hw_res_ops = {
    223207        .get_resource_list = isa_fun_get_resources,
     
    227211        .dma_channel_setup = isa_fun_setup_dma,
    228212        .dma_channel_remain = isa_fun_remain_dma,
    229         .get_flags = isa_fun_get_flags
    230213};
    231214
     
    281264        fibril_mutex_initialize(&fun->mutex);
    282265        fun->hw_resources.resources = fun->resources;
    283         fun->bus = isa;
    284266
    285267        fun->fnode = fnode;
     
    761743        if (rc != EOK) {
    762744                ddf_msg(LVL_NOTE, "Cannot read PCI config. Assuming ISA classic.");
    763                 isa->pci_isa_bridge = false;
    764745                isa->pci_vendor_id = 0;
    765746                isa->pci_device_id = 0;
    766747                isa->pci_class = BASE_CLASS_BRIDGE;
    767748                isa->pci_subclass = SUB_CLASS_BRIDGE_ISA;
    768         } else {
    769                 ddf_msg(LVL_NOTE, "ISA Bridge");
    770                 isa->pci_isa_bridge = true;
    771749        }
    772750
Note: See TracChangeset for help on using the changeset viewer.