|
| uint32_t | AuRequestDriverId () |
| | request an unique id for driver class
|
| |
| uint32_t | AuRequestBootDriverId () |
| |
| void | AuDecreaseDriverCount () |
| | AuDecreaseDriverCount – decrease the number of device count.
|
| |
| void | AuIncreaseDriverCount () |
| | AuIncreaseDriverCount – increase the number of device count.
|
| |
| char * | AuGetConfEntry (uint32_t vendor_id, uint32_t device_id, uint8_t *buffer, int entryoff) |
| | AuGetConfEntry – Get an entry offset in the file for required device.
|
| |
| AuDriver * | AuCreateDriverInstance (char *drivername) |
| | AuCreateDriverInstance – creates a new driver slot.
|
| |
| AuDriver * | AuCreateBootDriverInstance (char *drivername) |
| | AuCreateDriverInstance – creates a new driver slot.
|
| |
| void | AuGetDriverName (uint32_t vendor_id, uint32_t device_id, uint8_t *buffer, int entryoff) |
| | AuGetDriverName – Extract the driver path from its entry offset.
|
| |
| void | AuDriverLoad (char *filename, AuDriver *driver) |
| | AuDriverLoad – Manage and loads dll drivers.
|
| |
| bool | AuIsPCIeInitialized () |
| |
| void | AuDrvMngrInitialize (KERNEL_BOOT_INFO *info) |
| | AuDrvMngrInitialize – Initialize the driver manager.
|
| |
| AU_EXTERN AU_EXPORT void | AuRegisterDevice (AuDevice *dev) |
| | AuRegisterDevice – register a new device to aurora system.
|
| |
| AU_EXTERN AU_EXPORT bool | AuCheckDevice (uint16_t classC, uint16_t subclassC, uint8_t progIF) |
| | AuCheckDevice – checks an aurora device if it's already present.
|
| |
| void | AuBootDriverLoad (void *driverBuffer, AuDriver *driver) |
| | AuBootDriverLoad – loads all boot drivers.
|
| |
| AU_EXTERN AU_EXPORT void | AuBootDriverInitialise (KERNEL_BOOT_INFO *info) |
| | AuBootDriverInitialise – Initialise and load all boot time drivers.
|
| |
| uint64_t | AuDrvMgrGetBaseAddress () |
| | AuDrvMgrGetBaseAddress – returns the current driver load base address.
|
| |
| void | AuDrvMgrSetBaseAddress (uint64_t base_address) |
| | AuDrvMgrSetBaseAddress – sets a new base address for driver to load it's highly risky because, if we set it to kernel stack location, kernel will crash.
|
| |
BSD 2-Clause License
Copyright (c) 2022-2023, Manas Kamal Choudhury All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.