Changeset ca56afa in mainline for uspace/drv/pciintel/pci.c


Ignore:
Timestamp:
2011-02-25T09:46:23Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d493ac17
Parents:
15b0432 (diff), a80849c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge with /usb/development

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/pciintel/pci.c

    r15b0432 rca56afa  
    11/*
    22 * Copyright (c) 2010 Lenka Trochtova
     3 * Copyright (c) 2011 Jiri Svoboda
    34 * All rights reserved.
    45 *
     
    4445#include <ctype.h>
    4546#include <macros.h>
    46 
    47 #include <driver.h>
     47#include <str_error.h>
     48
     49#include <ddf/driver.h>
    4850#include <devman.h>
    4951#include <ipc/devman.h>
     
    6567        ((1 << 31) | (bus << 16) | (dev << 11) | (fn << 8) | (reg & ~3))
    6668
    67 static hw_resource_list_t *pciintel_get_child_resources(device_t *dev)
    68 {
    69         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    70        
    71         if (dev_data == NULL)
     69/** Obtain PCI function soft-state from DDF function node */
     70#define PCI_FUN(fnode) ((pci_fun_t *) (fnode)->driver_data)
     71
     72/** Obtain PCI bus soft-state from DDF device node */
     73#define PCI_BUS(dnode) ((pci_bus_t *) (dnode)->driver_data)
     74
     75/** Obtain PCI bus soft-state from function soft-state */
     76#define PCI_BUS_FROM_FUN(fun) ((fun)->busptr)
     77
     78static hw_resource_list_t *pciintel_get_resources(ddf_fun_t *fnode)
     79{
     80        pci_fun_t *fun = PCI_FUN(fnode);
     81       
     82        if (fun == NULL)
    7283                return NULL;
    73         return &dev_data->hw_resources;
    74 }
    75 
    76 static bool pciintel_enable_child_interrupt(device_t *dev)
     84        return &fun->hw_resources;
     85}
     86
     87static bool pciintel_enable_interrupt(ddf_fun_t *fnode)
    7788{
    7889        /* This is an old ugly way, copied from ne2000 driver */
    79         assert(dev);
    80         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
     90        assert(fnode);
     91        pci_fun_t *dev_data = (pci_fun_t *) fnode->driver_data;
    8192
    8293  sysarg_t apic;
     
    110121}
    111122
    112 static hw_res_ops_t pciintel_child_hw_res_ops = {
    113         &pciintel_get_child_resources,
    114         &pciintel_enable_child_interrupt
     123static hw_res_ops_t pciintel_hw_res_ops = {
     124        &pciintel_get_resources,
     125        &pciintel_enable_interrupt
    115126};
    116127
    117 static device_ops_t pci_child_ops;
    118 
    119 static int pci_add_device(device_t *);
    120 
    121 /** The pci bus driver's standard operations. */
     128static ddf_dev_ops_t pci_fun_ops;
     129
     130static int pci_add_device(ddf_dev_t *);
     131
     132/** PCI bus driver standard operations */
    122133static driver_ops_t pci_ops = {
    123134        .add_device = &pci_add_device
    124135};
    125136
    126 /** The pci bus driver structure. */
     137/** PCI bus driver structure */
    127138static driver_t pci_driver = {
    128139        .name = NAME,
     
    130141};
    131142
    132 typedef struct pciintel_bus_data {
    133         uint32_t conf_io_addr;
    134         void *conf_data_port;
    135         void *conf_addr_port;
    136         fibril_mutex_t conf_mutex;
    137 } pci_bus_data_t;
    138 
    139 static pci_bus_data_t *create_pci_bus_data(void)
    140 {
    141         pci_bus_data_t *bus_data;
    142        
    143         bus_data = (pci_bus_data_t *) malloc(sizeof(pci_bus_data_t));
    144         if (bus_data != NULL) {
    145                 memset(bus_data, 0, sizeof(pci_bus_data_t));
    146                 fibril_mutex_initialize(&bus_data->conf_mutex);
    147         }
    148 
    149         return bus_data;
    150 }
    151 
    152 static void delete_pci_bus_data(pci_bus_data_t *bus_data)
    153 {
    154         free(bus_data);
    155 }
    156 
    157 static void pci_conf_read(device_t *dev, int reg, uint8_t *buf, size_t len)
    158 {
    159         assert(dev->parent != NULL);
    160        
    161         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    162         pci_bus_data_t *bus_data = (pci_bus_data_t *) dev->parent->driver_data;
    163        
    164         fibril_mutex_lock(&bus_data->conf_mutex);
     143static pci_bus_t *pci_bus_new(void)
     144{
     145        pci_bus_t *bus;
     146       
     147        bus = (pci_bus_t *) calloc(1, sizeof(pci_bus_t));
     148        if (bus == NULL)
     149                return NULL;
     150       
     151        fibril_mutex_initialize(&bus->conf_mutex);
     152        return bus;
     153}
     154
     155static void pci_bus_delete(pci_bus_t *bus)
     156{
     157        assert(bus != NULL);
     158        free(bus);
     159}
     160
     161static void pci_conf_read(pci_fun_t *fun, int reg, uint8_t *buf, size_t len)
     162{
     163        pci_bus_t *bus = PCI_BUS_FROM_FUN(fun);
     164       
     165        fibril_mutex_lock(&bus->conf_mutex);
    165166       
    166167        uint32_t conf_addr;
    167         conf_addr = CONF_ADDR(dev_data->bus, dev_data->dev, dev_data->fn, reg);
    168         void *addr = bus_data->conf_data_port + (reg & 3);
    169        
    170         pio_write_32(bus_data->conf_addr_port, conf_addr);
     168        conf_addr = CONF_ADDR(fun->bus, fun->dev, fun->fn, reg);
     169        void *addr = bus->conf_data_port + (reg & 3);
     170       
     171        pio_write_32(bus->conf_addr_port, conf_addr);
    171172       
    172173        switch (len) {
     
    182183        }
    183184       
    184         fibril_mutex_unlock(&bus_data->conf_mutex);
    185 }
    186 
    187 static void pci_conf_write(device_t *dev, int reg, uint8_t *buf, size_t len)
    188 {
    189         assert(dev->parent != NULL);
    190        
    191         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    192         pci_bus_data_t *bus_data = (pci_bus_data_t *) dev->parent->driver_data;
    193        
    194         fibril_mutex_lock(&bus_data->conf_mutex);
     185        fibril_mutex_unlock(&bus->conf_mutex);
     186}
     187
     188static void pci_conf_write(pci_fun_t *fun, int reg, uint8_t *buf, size_t len)
     189{
     190        pci_bus_t *bus = PCI_BUS_FROM_FUN(fun);
     191       
     192        fibril_mutex_lock(&bus->conf_mutex);
    195193       
    196194        uint32_t conf_addr;
    197         conf_addr = CONF_ADDR(dev_data->bus, dev_data->dev, dev_data->fn, reg);
    198         void *addr = bus_data->conf_data_port + (reg & 3);
    199        
    200         pio_write_32(bus_data->conf_addr_port, conf_addr);
     195        conf_addr = CONF_ADDR(fun->bus, fun->dev, fun->fn, reg);
     196        void *addr = bus->conf_data_port + (reg & 3);
     197       
     198        pio_write_32(bus->conf_addr_port, conf_addr);
    201199       
    202200        switch (len) {
     
    212210        }
    213211       
    214         fibril_mutex_unlock(&bus_data->conf_mutex);
    215 }
    216 
    217 uint8_t pci_conf_read_8(device_t *dev, int reg)
     212        fibril_mutex_unlock(&bus->conf_mutex);
     213}
     214
     215uint8_t pci_conf_read_8(pci_fun_t *fun, int reg)
    218216{
    219217        uint8_t res;
    220         pci_conf_read(dev, reg, &res, 1);
     218        pci_conf_read(fun, reg, &res, 1);
    221219        return res;
    222220}
    223221
    224 uint16_t pci_conf_read_16(device_t *dev, int reg)
     222uint16_t pci_conf_read_16(pci_fun_t *fun, int reg)
    225223{
    226224        uint16_t res;
    227         pci_conf_read(dev, reg, (uint8_t *) &res, 2);
     225        pci_conf_read(fun, reg, (uint8_t *) &res, 2);
    228226        return res;
    229227}
    230228
    231 uint32_t pci_conf_read_32(device_t *dev, int reg)
     229uint32_t pci_conf_read_32(pci_fun_t *fun, int reg)
    232230{
    233231        uint32_t res;
    234         pci_conf_read(dev, reg, (uint8_t *) &res, 4);
     232        pci_conf_read(fun, reg, (uint8_t *) &res, 4);
    235233        return res;
    236234}
    237235
    238 void pci_conf_write_8(device_t *dev, int reg, uint8_t val)
    239 {
    240         pci_conf_write(dev, reg, (uint8_t *) &val, 1);
    241 }
    242 
    243 void pci_conf_write_16(device_t *dev, int reg, uint16_t val)
    244 {
    245         pci_conf_write(dev, reg, (uint8_t *) &val, 2);
    246 }
    247 
    248 void pci_conf_write_32(device_t *dev, int reg, uint32_t val)
    249 {
    250         pci_conf_write(dev, reg, (uint8_t *) &val, 4);
    251 }
    252 
    253 void create_pci_match_ids(device_t *dev)
    254 {
    255         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    256         match_id_t *match_id = NULL;
     236void pci_conf_write_8(pci_fun_t *fun, int reg, uint8_t val)
     237{
     238        pci_conf_write(fun, reg, (uint8_t *) &val, 1);
     239}
     240
     241void pci_conf_write_16(pci_fun_t *fun, int reg, uint16_t val)
     242{
     243        pci_conf_write(fun, reg, (uint8_t *) &val, 2);
     244}
     245
     246void pci_conf_write_32(pci_fun_t *fun, int reg, uint32_t val)
     247{
     248        pci_conf_write(fun, reg, (uint8_t *) &val, 4);
     249}
     250
     251void pci_fun_create_match_ids(pci_fun_t *fun)
     252{
    257253        char *match_id_str;
    258        
    259         match_id = create_match_id();
    260         if (match_id != NULL) {
    261                 asprintf(&match_id_str, "pci/ven=%04x&dev=%04x",
    262                     dev_data->vendor_id, dev_data->device_id);
    263                 match_id->id = match_id_str;
    264                 match_id->score = 90;
    265                 add_match_id(&dev->match_ids, match_id);
    266         }
    267 
     254        int rc;
     255       
     256        asprintf(&match_id_str, "pci/ven=%04x&dev=%04x",
     257            fun->vendor_id, fun->device_id);
     258
     259        if (match_id_str == NULL) {
     260                printf(NAME ": out of memory creating match ID.\n");
     261                return;
     262        }
     263
     264        rc = ddf_fun_add_match_id(fun->fnode, match_id_str, 90);
     265        if (rc != EOK) {
     266                printf(NAME ": error adding match ID: %s\n",
     267                    str_error(rc));
     268        }
     269       
    268270        /* TODO add more ids (with subsys ids, using class id etc.) */
    269271}
    270272
    271 void
    272 pci_add_range(device_t *dev, uint64_t range_addr, size_t range_size, bool io)
    273 {
    274         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    275         hw_resource_list_t *hw_res_list = &dev_data->hw_resources;
     273void pci_add_range(pci_fun_t *fun, uint64_t range_addr, size_t range_size,
     274    bool io)
     275{
     276        hw_resource_list_t *hw_res_list = &fun->hw_resources;
    276277        hw_resource_t *hw_resources =  hw_res_list->resources;
    277278        size_t count = hw_res_list->count;
     
    298299 * address add it to the devices hw resource list.
    299300 *
    300  * @param dev   The pci device.
     301 * @param fun   PCI function
    301302 * @param addr  The address of the BAR in the PCI configuration address space of
    302  *              the device.
    303  * @return      The addr the address of the BAR which should be read next.
     303 *              the device
     304 * @return      The addr the address of the BAR which should be read next
    304305 */
    305 int pci_read_bar(device_t *dev, int addr)
    306 {       
     306int pci_read_bar(pci_fun_t *fun, int addr)
     307{
    307308        /* Value of the BAR */
    308309        uint32_t val, mask;
     
    318319       
    319320        /* Get the value of the BAR. */
    320         val = pci_conf_read_32(dev, addr);
     321        val = pci_conf_read_32(fun, addr);
    321322       
    322323        io = (bool) (val & 1);
     
    338339       
    339340        /* Get the address mask. */
    340         pci_conf_write_32(dev, addr, 0xffffffff);
    341         mask = pci_conf_read_32(dev, addr);
     341        pci_conf_write_32(fun, addr, 0xffffffff);
     342        mask = pci_conf_read_32(fun, addr);
    342343       
    343344        /* Restore the original value. */
    344         pci_conf_write_32(dev, addr, val);
    345         val = pci_conf_read_32(dev, addr);
     345        pci_conf_write_32(fun, addr, val);
     346        val = pci_conf_read_32(fun, addr);
    346347       
    347348        range_size = pci_bar_mask_to_size(mask);
    348349       
    349350        if (addrw64) {
    350                 range_addr = ((uint64_t)pci_conf_read_32(dev, addr + 4) << 32) |
     351                range_addr = ((uint64_t)pci_conf_read_32(fun, addr + 4) << 32) |
    351352                    (val & 0xfffffff0);
    352353        } else {
     
    355356       
    356357        if (range_addr != 0) {
    357                 printf(NAME ": device %s : ", dev->name);
     358                printf(NAME ": function %s : ", fun->fnode->name);
    358359                printf("address = %" PRIx64, range_addr);
    359360                printf(", size = %x\n", (unsigned int) range_size);
    360361        }
    361362       
    362         pci_add_range(dev, range_addr, range_size, io);
     363        pci_add_range(fun, range_addr, range_size, io);
    363364       
    364365        if (addrw64)
     
    368369}
    369370
    370 void pci_add_interrupt(device_t *dev, int irq)
    371 {
    372         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    373         hw_resource_list_t *hw_res_list = &dev_data->hw_resources;
     371void pci_add_interrupt(pci_fun_t *fun, int irq)
     372{
     373        hw_resource_list_t *hw_res_list = &fun->hw_resources;
    374374        hw_resource_t *hw_resources = hw_res_list->resources;
    375375        size_t count = hw_res_list->count;
     
    383383        hw_res_list->count++;
    384384       
    385         printf(NAME ": device %s uses irq %x.\n", dev->name, irq);
    386 }
    387 
    388 void pci_read_interrupt(device_t *dev)
    389 {
    390         uint8_t irq = pci_conf_read_8(dev, PCI_BRIDGE_INT_LINE);
     385        printf(NAME ": function %s uses irq %x.\n", fun->fnode->name, irq);
     386}
     387
     388void pci_read_interrupt(pci_fun_t *fun)
     389{
     390        uint8_t irq = pci_conf_read_8(fun, PCI_BRIDGE_INT_LINE);
    391391        if (irq != 0xff)
    392                 pci_add_interrupt(dev, irq);
     392                pci_add_interrupt(fun, irq);
    393393}
    394394
    395395/** Enumerate (recursively) and register the devices connected to a pci bus.
    396396 *
    397  * @param parent        The host-to-pci bridge device.
    398  * @param bus_num       The bus number.
     397 * @param bus           Host-to-PCI bridge
     398 * @param bus_num       Bus number
    399399 */
    400 void pci_bus_scan(device_t *parent, int bus_num)
    401 {
    402         device_t *dev = create_device();
    403         pci_dev_data_t *dev_data = create_pci_dev_data();
    404         dev->driver_data = dev_data;
    405         dev->parent = parent;
     400void pci_bus_scan(pci_bus_t *bus, int bus_num)
     401{
     402        ddf_fun_t *fnode;
     403        pci_fun_t *fun;
    406404       
    407405        int child_bus = 0;
    408406        int dnum, fnum;
    409407        bool multi;
    410         uint8_t header_type;
     408        uint8_t header_type;
     409       
     410        fun = pci_fun_new(bus);
    411411       
    412412        for (dnum = 0; dnum < 32; dnum++) {
    413413                multi = true;
    414414                for (fnum = 0; multi && fnum < 8; fnum++) {
    415                         init_pci_dev_data(dev_data, bus_num, dnum, fnum);
    416                         dev_data->vendor_id = pci_conf_read_16(dev,
     415                        pci_fun_init(fun, bus_num, dnum, fnum);
     416                        fun->vendor_id = pci_conf_read_16(fun,
    417417                            PCI_VENDOR_ID);
    418                         dev_data->device_id = pci_conf_read_16(dev,
     418                        fun->device_id = pci_conf_read_16(fun,
    419419                            PCI_DEVICE_ID);
    420                         if (dev_data->vendor_id == 0xffff) {
     420                        if (fun->vendor_id == 0xffff) {
    421421                                /*
    422422                                 * The device is not present, go on scanning the
     
    429429                        }
    430430                       
    431                         header_type = pci_conf_read_8(dev, PCI_HEADER_TYPE);
     431                        header_type = pci_conf_read_8(fun, PCI_HEADER_TYPE);
    432432                        if (fnum == 0) {
    433433                                /* Is the device multifunction? */
     
    437437                        header_type = header_type & 0x7F;
    438438                       
    439                         create_pci_dev_name(dev);
    440                        
    441                         pci_alloc_resource_list(dev);
    442                         pci_read_bars(dev);
    443                         pci_read_interrupt(dev);
    444                        
    445                         dev->ops = &pci_child_ops;
    446                        
    447                         printf(NAME ": adding new child device %s.\n",
    448                             dev->name);
    449                        
    450                         create_pci_match_ids(dev);
    451                        
    452                         if (child_device_register(dev, parent) != EOK) {
    453                                 pci_clean_resource_list(dev);
    454                                 clean_match_ids(&dev->match_ids);
    455                                 free((char *) dev->name);
    456                                 dev->name = NULL;
     439                        char *fun_name = pci_fun_create_name(fun);
     440                        if (fun_name == NULL) {
     441                                printf(NAME ": out of memory.\n");
     442                                return;
     443                        }
     444                       
     445                        fnode = ddf_fun_create(bus->dnode, fun_inner, fun_name);
     446                        if (fnode == NULL) {
     447                                printf(NAME ": error creating function.\n");
     448                                return;
     449                        }
     450                       
     451                        free(fun_name);
     452                        fun->fnode = fnode;
     453                       
     454                        pci_alloc_resource_list(fun);
     455                        pci_read_bars(fun);
     456                        pci_read_interrupt(fun);
     457                       
     458                        fnode->ops = &pci_fun_ops;
     459                        fnode->driver_data = fun;
     460                       
     461                        printf(NAME ": adding new function %s.\n",
     462                            fnode->name);
     463                       
     464                        pci_fun_create_match_ids(fun);
     465                       
     466                        if (ddf_fun_bind(fnode) != EOK) {
     467                                pci_clean_resource_list(fun);
     468                                clean_match_ids(&fnode->match_ids);
     469                                free((char *) fnode->name);
     470                                fnode->name = NULL;
    457471                                continue;
    458472                        }
     
    460474                        if (header_type == PCI_HEADER_TYPE_BRIDGE ||
    461475                            header_type == PCI_HEADER_TYPE_CARDBUS) {
    462                                 child_bus = pci_conf_read_8(dev,
     476                                child_bus = pci_conf_read_8(fun,
    463477                                    PCI_BRIDGE_SEC_BUS_NUM);
    464478                                printf(NAME ": device is pci-to-pci bridge, "
    465479                                    "secondary bus number = %d.\n", bus_num);
    466480                                if (child_bus > bus_num)
    467                                         pci_bus_scan(parent, child_bus);
     481                                        pci_bus_scan(bus, child_bus);
    468482                        }
    469483                       
    470                         /* Alloc new aux. dev. structure. */
    471                         dev = create_device();
    472                         dev_data = create_pci_dev_data();
    473                         dev->driver_data = dev_data;
    474                         dev->parent = parent;
     484                        fun = pci_fun_new(bus);
    475485                }
    476486        }
    477487       
    478         if (dev_data->vendor_id == 0xffff) {
    479                 delete_device(dev);
    480                 /* Free the auxiliary device structure. */
    481                 delete_pci_dev_data(dev_data);
    482         }
    483 }
    484 
    485 static int pci_add_device(device_t *dev)
    486 {
     488        if (fun->vendor_id == 0xffff) {
     489                /* Free the auxiliary function structure. */
     490                pci_fun_delete(fun);
     491        }
     492}
     493
     494static int pci_add_device(ddf_dev_t *dnode)
     495{
     496        pci_bus_t *bus = NULL;
     497        ddf_fun_t *ctl = NULL;
     498        bool got_res = false;
    487499        int rc;
    488 
     500       
    489501        printf(NAME ": pci_add_device\n");
    490        
    491         pci_bus_data_t *bus_data = create_pci_bus_data();
    492         if (bus_data == NULL) {
     502        dnode->parent_phone = -1;
     503       
     504        bus = pci_bus_new();
     505        if (bus == NULL) {
    493506                printf(NAME ": pci_add_device allocation failed.\n");
    494                 return ENOMEM;
    495         }
    496        
    497         dev->parent_phone = devman_parent_device_connect(dev->handle,
     507                rc = ENOMEM;
     508                goto fail;
     509        }
     510        bus->dnode = dnode;
     511        dnode->driver_data = bus;
     512       
     513        dnode->parent_phone = devman_parent_device_connect(dnode->handle,
    498514            IPC_FLAG_BLOCKING);
    499         if (dev->parent_phone < 0) {
     515        if (dnode->parent_phone < 0) {
    500516                printf(NAME ": pci_add_device failed to connect to the "
    501517                    "parent's driver.\n");
    502                 delete_pci_bus_data(bus_data);
    503                 return dev->parent_phone;
     518                rc = dnode->parent_phone;
     519                goto fail;
    504520        }
    505521       
    506522        hw_resource_list_t hw_resources;
    507523       
    508         rc = hw_res_get_resource_list(dev->parent_phone, &hw_resources);
     524        rc = hw_res_get_resource_list(dnode->parent_phone, &hw_resources);
    509525        if (rc != EOK) {
    510526                printf(NAME ": pci_add_device failed to get hw resources for "
    511527                    "the device.\n");
    512                 delete_pci_bus_data(bus_data);
    513                 async_hangup(dev->parent_phone);
    514                 return rc;
    515         }       
     528                goto fail;
     529        }
     530        got_res = true;
    516531       
    517532        printf(NAME ": conf_addr = %" PRIx64 ".\n",
     
    522537        assert(hw_resources.resources[0].res.io_range.size == 8);
    523538       
    524         bus_data->conf_io_addr =
     539        bus->conf_io_addr =
    525540            (uint32_t) hw_resources.resources[0].res.io_range.address;
    526541       
    527         if (pio_enable((void *)(uintptr_t)bus_data->conf_io_addr, 8,
    528             &bus_data->conf_addr_port)) {
     542        if (pio_enable((void *)(uintptr_t)bus->conf_io_addr, 8,
     543            &bus->conf_addr_port)) {
    529544                printf(NAME ": failed to enable configuration ports.\n");
    530                 delete_pci_bus_data(bus_data);
    531                 async_hangup(dev->parent_phone);
     545                rc = EADDRNOTAVAIL;
     546                goto fail;
     547        }
     548        bus->conf_data_port = (char *) bus->conf_addr_port + 4;
     549       
     550        /* Make the bus device more visible. It has no use yet. */
     551        printf(NAME ": adding a 'ctl' function\n");
     552       
     553        ctl = ddf_fun_create(bus->dnode, fun_exposed, "ctl");
     554        if (ctl == NULL) {
     555                printf(NAME ": error creating control function.\n");
     556                rc = ENOMEM;
     557                goto fail;
     558        }
     559       
     560        rc = ddf_fun_bind(ctl);
     561        if (rc != EOK) {
     562                printf(NAME ": error binding control function.\n");
     563                goto fail;
     564        }
     565       
     566        /* Enumerate functions. */
     567        printf(NAME ": scanning the bus\n");
     568        pci_bus_scan(bus, 0);
     569       
     570        hw_res_clean_resource_list(&hw_resources);
     571       
     572        return EOK;
     573       
     574fail:
     575        if (bus != NULL)
     576                pci_bus_delete(bus);
     577        if (dnode->parent_phone >= 0)
     578                async_hangup(dnode->parent_phone);
     579        if (got_res)
    532580                hw_res_clean_resource_list(&hw_resources);
    533                 return EADDRNOTAVAIL;
    534         }
    535         bus_data->conf_data_port = (char *) bus_data->conf_addr_port + 4;
    536        
    537         dev->driver_data = bus_data;
    538        
    539         /* Enumerate child devices. */
    540         printf(NAME ": scanning the bus\n");
    541         pci_bus_scan(dev, 0);
    542        
    543         hw_res_clean_resource_list(&hw_resources);
    544        
    545         return EOK;
     581        if (ctl != NULL)
     582                ddf_fun_destroy(ctl);
     583
     584        return rc;
    546585}
    547586
    548587static void pciintel_init(void)
    549588{
    550         pci_child_ops.interfaces[HW_RES_DEV_IFACE] = &pciintel_child_hw_res_ops;
    551 }
    552 
    553 pci_dev_data_t *create_pci_dev_data(void)
    554 {
    555         pci_dev_data_t *res = (pci_dev_data_t *) malloc(sizeof(pci_dev_data_t));
    556        
    557         if (res != NULL)
    558                 memset(res, 0, sizeof(pci_dev_data_t));
    559         return res;
    560 }
    561 
    562 void init_pci_dev_data(pci_dev_data_t *dev_data, int bus, int dev, int fn)
    563 {
    564         dev_data->bus = bus;
    565         dev_data->dev = dev;
    566         dev_data->fn = fn;
    567 }
    568 
    569 void delete_pci_dev_data(pci_dev_data_t *dev_data)
    570 {
    571         if (dev_data != NULL) {
    572                 hw_res_clean_resource_list(&dev_data->hw_resources);
    573                 free(dev_data);
    574         }
    575 }
    576 
    577 void create_pci_dev_name(device_t *dev)
    578 {
    579         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
     589        pci_fun_ops.interfaces[HW_RES_DEV_IFACE] = &pciintel_hw_res_ops;
     590}
     591
     592pci_fun_t *pci_fun_new(pci_bus_t *bus)
     593{
     594        pci_fun_t *fun;
     595       
     596        fun = (pci_fun_t *) calloc(1, sizeof(pci_fun_t));
     597        if (fun == NULL)
     598                return NULL;
     599
     600        fun->busptr = bus;
     601        return fun;
     602}
     603
     604void pci_fun_init(pci_fun_t *fun, int bus, int dev, int fn)
     605{
     606        fun->bus = bus;
     607        fun->dev = dev;
     608        fun->fn = fn;
     609}
     610
     611void pci_fun_delete(pci_fun_t *fun)
     612{
     613        assert(fun != NULL);
     614        hw_res_clean_resource_list(&fun->hw_resources);
     615        free(fun);
     616}
     617
     618char *pci_fun_create_name(pci_fun_t *fun)
     619{
    580620        char *name = NULL;
    581621       
    582         asprintf(&name, "%02x:%02x.%01x", dev_data->bus, dev_data->dev,
    583             dev_data->fn);
    584         dev->name = name;
    585 }
    586 
    587 bool pci_alloc_resource_list(device_t *dev)
    588 {
    589         pci_dev_data_t *dev_data = (pci_dev_data_t *)dev->driver_data;
    590        
    591         dev_data->hw_resources.resources =
     622        asprintf(&name, "%02x:%02x.%01x", fun->bus, fun->dev,
     623            fun->fn);
     624        return name;
     625}
     626
     627bool pci_alloc_resource_list(pci_fun_t *fun)
     628{
     629        fun->hw_resources.resources =
    592630            (hw_resource_t *) malloc(PCI_MAX_HW_RES * sizeof(hw_resource_t));
    593         return dev_data->hw_resources.resources != NULL;
    594 }
    595 
    596 void pci_clean_resource_list(device_t *dev)
    597 {
    598         pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;
    599        
    600         if (dev_data->hw_resources.resources != NULL) {
    601                 free(dev_data->hw_resources.resources);
    602                 dev_data->hw_resources.resources = NULL;
    603         }
    604 }
    605 
    606 /** Read the base address registers (BARs) of the device and adds the addresses
    607  * to its hw resource list.
     631        return fun->hw_resources.resources != NULL;
     632}
     633
     634void pci_clean_resource_list(pci_fun_t *fun)
     635{
     636        if (fun->hw_resources.resources != NULL) {
     637                free(fun->hw_resources.resources);
     638                fun->hw_resources.resources = NULL;
     639        }
     640}
     641
     642/** Read the base address registers (BARs) of the function and add the addresses
     643 * to its HW resource list.
    608644 *
    609  * @param dev the pci device.
     645 * @param fun   PCI function
    610646 */
    611 void pci_read_bars(device_t *dev)
     647void pci_read_bars(pci_fun_t *fun)
    612648{
    613649        /*
     
    618654       
    619655        while (addr <= PCI_BASE_ADDR_5)
    620                 addr = pci_read_bar(dev, addr);
     656                addr = pci_read_bar(fun, addr);
    621657}
    622658
     
    630666        printf(NAME ": HelenOS pci bus driver (intel method 1).\n");
    631667        pciintel_init();
    632         return driver_main(&pci_driver);
     668        return ddf_driver_main(&pci_driver);
    633669}
    634670
Note: See TracChangeset for help on using the changeset viewer.