├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── bspfiles ├── OEMInputSamples │ ├── RetailOEMInput.xml │ └── TestOEMInput.xml └── Packages │ ├── RPi.BootFirmware │ ├── LICENCE.broadcom │ ├── RPi.BootFirmware.wm.xml │ ├── bootcode.bin │ ├── config.txt │ ├── fixup.dat │ ├── fixup_cd.dat │ ├── fixup_x.dat │ ├── kernel.img │ ├── start.elf │ ├── start_cd.elf │ └── start_x.elf │ ├── RPi.Customization │ └── RPi.Customization.wm.xml │ ├── RPi.Drivers │ ├── RpiLanPropertyChange.wm.xml │ ├── SV.PlatExtensions.wm.xml │ ├── SerPL011.wm.xml │ ├── bcm2836pwm.wm.xml │ ├── bcm2836sdhc.wm.xml │ ├── bcmauxspi.wm.xml │ ├── bcmgpio.wm.xml │ ├── bcmi2c.wm.xml │ ├── bcmspi.wm.xml │ ├── piminiuart.wm.xml │ ├── rpiq.wm.xml │ ├── rpisdhc.wm.xml │ ├── rpiwav.wm.xml │ └── vchiq.wm.xml │ ├── RPiFM.xml │ └── RPiFMFileList.xml ├── drivers ├── RpiLanPropertyChange │ └── bcm2836 │ │ ├── RpiLanPropertyChange.cpp │ │ ├── RpiLanPropertyChange.inf │ │ ├── RpiLanPropertyChange.pkg.xml │ │ ├── RpiLanPropertyChange.vcxproj │ │ ├── dllmain.cpp │ │ ├── service.cpp │ │ ├── service.def │ │ ├── service.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── audio │ └── bcm2836 │ │ ├── EndpointsCommon │ │ ├── EndpointsCommon.vcxproj │ │ ├── hptoptable.h │ │ ├── mintopo.cpp │ │ ├── mintopo.h │ │ ├── minwavert.cpp │ │ ├── minwavert.h │ │ ├── minwavertstream.cpp │ │ ├── minwavertstream.h │ │ ├── simple.h │ │ ├── sources.props │ │ ├── speakerhptopo.cpp │ │ ├── speakerhptopo.h │ │ ├── speakerhptoptable.h │ │ └── speakerhpwavtable.h │ │ ├── License.txt │ │ ├── README.md │ │ ├── adapter.cpp │ │ ├── basetopo.cpp │ │ ├── basetopo.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── kshelper.cpp │ │ ├── kshelper.h │ │ ├── rpiwav.h │ │ ├── rpiwav.inf │ │ ├── rpiwav.rc │ │ ├── rpiwav │ │ ├── minipairs.h │ │ ├── rpiwav.pkg.xml │ │ ├── rpiwav.vcxproj │ │ └── sources.props │ │ └── sources.inc.props ├── gpio │ └── bcm2836 │ │ ├── BcmGpio.cpp │ │ ├── BcmGpio.hpp │ │ ├── BcmUtility.hpp │ │ ├── License.txt │ │ ├── README.md │ │ ├── bcmgpio.inf │ │ ├── bcmgpio.pkg.xml │ │ ├── bcmgpio.rc │ │ ├── bcmgpio.vcxproj │ │ ├── precomp.hpp │ │ └── sources.props ├── i2c │ └── bcm2836 │ │ ├── License.txt │ │ ├── README.md │ │ ├── bcmi2c.h │ │ ├── bcmi2c.inf │ │ ├── bcmi2c.pkg.xml │ │ ├── bcmi2c.vcxproj │ │ ├── device.cpp │ │ ├── device.h │ │ ├── driver.cpp │ │ ├── driver.h │ │ ├── i2ctrace.h │ │ ├── precomp.h │ │ ├── resource.rc │ │ └── sources.props ├── include │ └── acpiutil.hpp ├── mailbox │ └── bcm2836 │ │ ├── License.txt │ │ ├── README.md │ │ ├── RPIQ.inf │ │ ├── device.c │ │ ├── device.h │ │ ├── driver.c │ │ ├── driver.h │ │ ├── init.c │ │ ├── init.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── ioctl.c │ │ ├── ioctl.h │ │ ├── mailbox.c │ │ ├── mailbox.h │ │ ├── precomp.h │ │ ├── register.h │ │ ├── rpiq.h │ │ ├── rpiq.pkg.xml │ │ ├── rpiq.rc │ │ ├── rpiq.vcxproj │ │ ├── sources.props │ │ └── trace.h ├── misc │ ├── userland │ │ └── interface │ │ │ ├── vchi │ │ │ ├── common │ │ │ │ └── endian.h │ │ │ ├── connections │ │ │ │ └── connection.h │ │ │ ├── message_drivers │ │ │ │ └── message.h │ │ │ ├── vchi.h │ │ │ ├── vchi_cfg.h │ │ │ ├── vchi_cfg_internal.h │ │ │ ├── vchi_common.h │ │ │ └── vchi_mh.h │ │ │ ├── vchiq_arm │ │ │ ├── License.txt │ │ │ ├── README.md │ │ │ ├── sources.props │ │ │ ├── vchiq.h │ │ │ ├── vchiq_arm_kern.vcxproj │ │ │ ├── vchiq_cfg.h │ │ │ ├── vchiq_if.h │ │ │ ├── vchiq_ioctl.h │ │ │ ├── vchiq_lib.c │ │ │ └── vchiq_util.h │ │ │ └── vcos │ │ │ ├── generic │ │ │ ├── License.txt │ │ │ ├── README.md │ │ │ ├── sources.props │ │ │ ├── vcos_abort.c │ │ │ ├── vcos_common.h │ │ │ ├── vcos_deprecated.h │ │ │ ├── vcos_generic_blockpool.c │ │ │ ├── vcos_generic_blockpool.h │ │ │ ├── vcos_generic_event_flags.h │ │ │ ├── vcos_generic_named_sem.c │ │ │ ├── vcos_generic_named_sem.h │ │ │ ├── vcos_generic_quickslow_mutex.h │ │ │ ├── vcos_generic_reentrant_mtx.h │ │ │ ├── vcos_generic_tls.h │ │ │ ├── vcos_init.c │ │ │ ├── vcos_logcat.c │ │ │ ├── vcos_mem_from_malloc.c │ │ │ ├── vcos_mem_from_malloc.h │ │ │ ├── vcos_msgqueue.c │ │ │ └── vcos_win32_kern_generic.vcxproj │ │ │ ├── vcos.h │ │ │ ├── vcos_assert.h │ │ │ ├── vcos_atomic_flags.h │ │ │ ├── vcos_attr.h │ │ │ ├── vcos_blockpool.h │ │ │ ├── vcos_cmd.h │ │ │ ├── vcos_ctype.h │ │ │ ├── vcos_event.h │ │ │ ├── vcos_event_flags.h │ │ │ ├── vcos_init.h │ │ │ ├── vcos_inttypes.h │ │ │ ├── vcos_logging.h │ │ │ ├── vcos_logging_control.h │ │ │ ├── vcos_mem.h │ │ │ ├── vcos_mempool.h │ │ │ ├── vcos_msgqueue.h │ │ │ ├── vcos_mutex.h │ │ │ ├── vcos_named_semaphore.h │ │ │ ├── vcos_once.h │ │ │ ├── vcos_queue.h │ │ │ ├── vcos_quickslow_mutex.h │ │ │ ├── vcos_reentrant_mutex.h │ │ │ ├── vcos_semaphore.h │ │ │ ├── vcos_stdbool.h │ │ │ ├── vcos_stdint.h │ │ │ ├── vcos_string.h │ │ │ ├── vcos_thread.h │ │ │ ├── vcos_thread_attr.h │ │ │ ├── vcos_timer.h │ │ │ ├── vcos_tls.h │ │ │ ├── vcos_types.h │ │ │ └── win32 │ │ │ ├── License.txt │ │ │ ├── README.md │ │ │ ├── sources.props │ │ │ ├── vcos_platform.h │ │ │ ├── vcos_platform_types.h │ │ │ ├── vcos_pthreads.c │ │ │ └── vcos_win32_kern.vcxproj │ └── vchiq │ │ ├── License.txt │ │ ├── README.md │ │ ├── device.c │ │ ├── device.h │ │ ├── driver.c │ │ ├── driver.h │ │ ├── file.c │ │ ├── file.h │ │ ├── init.c │ │ ├── init.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── ioctl.c │ │ ├── ioctl.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── precomp.h │ │ ├── slots.c │ │ ├── slots.h │ │ ├── slotscommon.h │ │ ├── sources.props │ │ ├── trace.c │ │ ├── trace.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── vchiq.h │ │ ├── vchiq.inf │ │ ├── vchiq.pkg.xml │ │ ├── vchiq.vcxproj │ │ ├── vchiq_2835.h │ │ ├── vchiq_cfg.h │ │ ├── vchiq_common.h │ │ ├── vchiq_core.h │ │ ├── vchiq_if.h │ │ ├── vchiq_ioctl.h │ │ └── vchiq_pagelist.h ├── net │ └── bcm2711 │ │ └── bcmgenet │ │ ├── License.txt │ │ ├── bcmgenet.inx │ │ ├── bcmgenet.vcxproj │ │ ├── bcmgenet_netadaptercx20.vcxproj │ │ ├── bcmgenet_netadaptercx21.vcxproj │ │ ├── driver.c │ │ ├── registers.h │ │ └── trace.h ├── pwm │ └── bcm2836 │ │ ├── License.txt │ │ ├── README.md │ │ ├── bcm2836pwm.h │ │ ├── bcm2836pwm.inf │ │ ├── bcm2836pwm.pkg.xml │ │ ├── bcm2836pwm.vcxproj │ │ ├── clockmgr.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── dma.cpp │ │ ├── dma.h │ │ ├── dmaInterrupt.cpp │ │ ├── dmaInterrupt.h │ │ ├── driver.cpp │ │ ├── driver.h │ │ ├── pwm.cpp │ │ ├── pwm.h │ │ ├── resource.rc │ │ ├── sources.props │ │ └── trace.h ├── sd │ ├── SdportWhitelist.xml │ ├── bcm2711 │ │ ├── README.md │ │ ├── bcmemmc2 │ │ │ ├── bcmemmc2.inx │ │ │ ├── bcmemmc2.vcxproj │ │ │ └── bcmemmc2.vcxproj.filters │ │ └── brcme88c │ │ │ ├── AutoLogger.reg │ │ │ ├── README.md │ │ │ ├── SDHostBRCME88C.inx │ │ │ ├── SDHostBRCME88C.rc │ │ │ ├── SDHostBRCME88C.vcxproj │ │ │ ├── SdRegisters.h │ │ │ ├── SlotExtension.cpp │ │ │ ├── SlotExtension.h │ │ │ ├── driver.cpp │ │ │ ├── driver.h │ │ │ ├── precomp.h │ │ │ └── trace.h │ └── bcm2836 │ │ ├── bcm2836sdhc │ │ ├── README.md │ │ ├── bcm2836sdhc.c │ │ ├── bcm2836sdhc.h │ │ ├── bcm2836sdhc.inf │ │ ├── bcm2836sdhc.pkg.xml │ │ ├── bcm2836sdhc.rc │ │ ├── bcm2836sdhc.vcxproj │ │ ├── sources.props │ │ └── trace.h │ │ └── rpisdhc │ │ ├── README.md │ │ ├── precomp.hpp │ │ ├── rpisdhc.cpp │ │ ├── rpisdhc.hpp │ │ ├── rpisdhc.inf │ │ ├── rpisdhc.pkg.xml │ │ ├── rpisdhc.rc │ │ ├── rpisdhc.vcxproj │ │ ├── sdhclogging.cpp │ │ ├── sdhclogging.h │ │ └── sources.props ├── shared │ └── acpi │ │ └── acpiutil.cpp ├── spi │ ├── bcm2836 │ │ ├── License.txt │ │ ├── README.md │ │ ├── bcmspi.h │ │ ├── bcmspi.inf │ │ ├── bcmspi.pkg.xml │ │ ├── bcmspi.vcxproj │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── driver.cpp │ │ ├── driver.h │ │ ├── internal.h │ │ ├── resource.rc │ │ ├── sources.props │ │ └── spitrace.h │ └── bcmauxspi │ │ ├── License.txt │ │ ├── README.md │ │ ├── bcmauxspi-hw.h │ │ ├── bcmauxspi.cpp │ │ ├── bcmauxspi.h │ │ ├── bcmauxspi.inf │ │ ├── bcmauxspi.pkg.xml │ │ ├── bcmauxspi.vcxproj │ │ ├── precomp.h │ │ ├── resource.rc │ │ ├── sources.props │ │ └── trace.h ├── uart │ └── bcm2836 │ │ ├── miniUart │ │ ├── License.txt │ │ ├── README.md │ │ ├── Trace.h │ │ ├── error.c │ │ ├── flush.c │ │ ├── immediat.c │ │ ├── initunlo.c │ │ ├── ioctl.c │ │ ├── isr.c │ │ ├── modmflow.c │ │ ├── openclos.c │ │ ├── pi_miniuart.inf │ │ ├── pi_miniuart.rc │ │ ├── pi_miniuart.sln │ │ ├── pi_miniuart.vcxproj │ │ ├── piminiuart.pkg.xml │ │ ├── pnp.c │ │ ├── power.c │ │ ├── precomp.h │ │ ├── purge.c │ │ ├── qsfile.c │ │ ├── read.c │ │ ├── registry.c │ │ ├── resource.h │ │ ├── serial.h │ │ ├── serial.rc │ │ ├── serialp.h │ │ ├── utils.c │ │ ├── waitmask.c │ │ ├── wmi.c │ │ └── write.c │ │ └── serPL011 │ │ ├── License.txt │ │ ├── PL011.rc │ │ ├── PL011common.cpp │ │ ├── PL011common.h │ │ ├── PL011device.cpp │ │ ├── PL011device.h │ │ ├── PL011driver.cpp │ │ ├── PL011driver.h │ │ ├── PL011hw.cpp │ │ ├── PL011hw.h │ │ ├── PL011interrupt.cpp │ │ ├── PL011interrupt.h │ │ ├── PL011ioctl.cpp │ │ ├── PL011ioctl.h │ │ ├── PL011logging.h │ │ ├── PL011rx.h │ │ ├── PL011tx.cpp │ │ ├── PL011tx.h │ │ ├── PL011uart.cpp │ │ ├── PL011uart.h │ │ ├── README.md │ │ ├── SerPL011.inf │ │ ├── SerPL011.pkg.xml │ │ ├── SerPL011.vcxproj │ │ ├── pl011rx.cpp │ │ ├── precomp.h │ │ └── sources.props └── usb │ └── bcm2711 │ └── rpiuxflt │ ├── License.txt │ ├── bus.c │ ├── dma.c │ ├── driver.c │ ├── rpiuxflt.h │ ├── rpiuxflt.inx │ └── rpiuxflt.vcxproj └── tools ├── binexport.cmd └── binexport.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/README.md -------------------------------------------------------------------------------- /bspfiles/OEMInputSamples/RetailOEMInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/OEMInputSamples/RetailOEMInput.xml -------------------------------------------------------------------------------- /bspfiles/OEMInputSamples/TestOEMInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/OEMInputSamples/TestOEMInput.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/LICENCE.broadcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/LICENCE.broadcom -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/RPi.BootFirmware.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/RPi.BootFirmware.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/bootcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/bootcode.bin -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/config.txt -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/fixup.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/fixup.dat -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/fixup_cd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/fixup_cd.dat -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/fixup_x.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/fixup_x.dat -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/kernel.img -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/start.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/start.elf -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/start_cd.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/start_cd.elf -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.BootFirmware/start_x.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.BootFirmware/start_x.elf -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Customization/RPi.Customization.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Customization/RPi.Customization.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/RpiLanPropertyChange.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/RpiLanPropertyChange.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/SV.PlatExtensions.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/SV.PlatExtensions.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/SerPL011.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/SerPL011.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcm2836pwm.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcm2836pwm.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcm2836sdhc.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcm2836sdhc.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcmauxspi.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcmauxspi.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcmgpio.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcmgpio.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcmi2c.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcmi2c.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/bcmspi.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/bcmspi.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/piminiuart.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/piminiuart.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/rpiq.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/rpiq.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/rpisdhc.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/rpisdhc.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/rpiwav.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/rpiwav.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPi.Drivers/vchiq.wm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPi.Drivers/vchiq.wm.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPiFM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPiFM.xml -------------------------------------------------------------------------------- /bspfiles/Packages/RPiFMFileList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/bspfiles/Packages/RPiFMFileList.xml -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.cpp -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.inf -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.pkg.xml -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/RpiLanPropertyChange.vcxproj -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/dllmain.cpp -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/service.cpp -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/service.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | ServiceMain -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/service.h -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/stdafx.cpp -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/stdafx.h -------------------------------------------------------------------------------- /drivers/RpiLanPropertyChange/bcm2836/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/RpiLanPropertyChange/bcm2836/targetver.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/EndpointsCommon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/EndpointsCommon.vcxproj -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/hptoptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/hptoptable.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/mintopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/mintopo.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/mintopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/mintopo.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/minwavert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/minwavert.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/minwavert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/minwavert.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/minwavertstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/minwavertstream.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/minwavertstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/minwavertstream.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/simple.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/sources.props -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/speakerhptopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/speakerhptopo.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/speakerhptopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/speakerhptopo.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/speakerhptoptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/speakerhptoptable.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/EndpointsCommon/speakerhpwavtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/EndpointsCommon/speakerhpwavtable.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/audio/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/audio/bcm2836/adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/adapter.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/basetopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/basetopo.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/basetopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/basetopo.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/common.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/common.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/kshelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/kshelper.cpp -------------------------------------------------------------------------------- /drivers/audio/bcm2836/kshelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/kshelper.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav.inf -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav.rc -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav/minipairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav/minipairs.h -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav/rpiwav.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav/rpiwav.pkg.xml -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav/rpiwav.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav/rpiwav.vcxproj -------------------------------------------------------------------------------- /drivers/audio/bcm2836/rpiwav/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/rpiwav/sources.props -------------------------------------------------------------------------------- /drivers/audio/bcm2836/sources.inc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/audio/bcm2836/sources.inc.props -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/BcmGpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/BcmGpio.cpp -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/BcmGpio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/BcmGpio.hpp -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/BcmUtility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/BcmUtility.hpp -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/bcmgpio.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/bcmgpio.inf -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/bcmgpio.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/bcmgpio.pkg.xml -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/bcmgpio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/bcmgpio.rc -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/bcmgpio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/bcmgpio.vcxproj -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/precomp.hpp -------------------------------------------------------------------------------- /drivers/gpio/bcm2836/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/gpio/bcm2836/sources.props -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/bcmi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/bcmi2c.h -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/bcmi2c.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/bcmi2c.inf -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/bcmi2c.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/bcmi2c.pkg.xml -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/bcmi2c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/bcmi2c.vcxproj -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/device.cpp -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/device.h -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/driver.cpp -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/driver.h -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/i2ctrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/i2ctrace.h -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/precomp.h -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/resource.rc -------------------------------------------------------------------------------- /drivers/i2c/bcm2836/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/i2c/bcm2836/sources.props -------------------------------------------------------------------------------- /drivers/include/acpiutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/include/acpiutil.hpp -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/RPIQ.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/RPIQ.inf -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/device.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/device.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/driver.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/driver.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/init.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/init.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/interrupt.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/interrupt.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/ioctl.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/ioctl.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/mailbox.c -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/mailbox.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/precomp.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/register.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/rpiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/rpiq.h -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/rpiq.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/rpiq.pkg.xml -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/rpiq.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/rpiq.rc -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/rpiq.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/rpiq.vcxproj -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/sources.props -------------------------------------------------------------------------------- /drivers/mailbox/bcm2836/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/mailbox/bcm2836/trace.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/common/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/common/endian.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/connections/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/connections/connection.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/message_drivers/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/message_drivers/message.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/vchi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/vchi.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/vchi_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/vchi_cfg.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/vchi_cfg_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/vchi_cfg_internal.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/vchi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/vchi_common.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchi/vchi_mh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchi/vchi_mh.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/License.txt -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/README.md -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/sources.props -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_arm_kern.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_arm_kern.vcxproj -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_cfg.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_if.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_ioctl.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_lib.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vchiq_arm/vchiq_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vchiq_arm/vchiq_util.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/License.txt -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/README.md -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/sources.props -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_abort.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_common.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_deprecated.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_blockpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_blockpool.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_blockpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_blockpool.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_event_flags.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_named_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_named_sem.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_named_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_named_sem.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_quickslow_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_quickslow_mutex.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_reentrant_mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_reentrant_mtx.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_generic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_generic_tls.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_init.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_logcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_logcat.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_mem_from_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_mem_from_malloc.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_mem_from_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_mem_from_malloc.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_msgqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_msgqueue.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/generic/vcos_win32_kern_generic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/generic/vcos_win32_kern_generic.vcxproj -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_assert.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_atomic_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_atomic_flags.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_attr.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_blockpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_blockpool.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_cmd.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_ctype.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_event.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_event_flags.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_init.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_inttypes.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_logging.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_logging_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_logging_control.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_mem.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_mempool.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_msgqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_msgqueue.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_mutex.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_named_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_named_semaphore.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_once.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_queue.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_quickslow_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_quickslow_mutex.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_reentrant_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_reentrant_mutex.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_semaphore.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_stdbool.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_stdint.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_string.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_thread.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_thread_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_thread_attr.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_timer.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_tls.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/vcos_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/vcos_types.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/License.txt -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/README.md -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/sources.props -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/vcos_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/vcos_platform.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/vcos_platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/vcos_platform_types.h -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/vcos_pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/vcos_pthreads.c -------------------------------------------------------------------------------- /drivers/misc/userland/interface/vcos/win32/vcos_win32_kern.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/userland/interface/vcos/win32/vcos_win32_kern.vcxproj -------------------------------------------------------------------------------- /drivers/misc/vchiq/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/License.txt -------------------------------------------------------------------------------- /drivers/misc/vchiq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/README.md -------------------------------------------------------------------------------- /drivers/misc/vchiq/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/device.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/device.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/driver.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/driver.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/file.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/file.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/init.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/init.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/interrupt.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/interrupt.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/ioctl.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/ioctl.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/memory.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/memory.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/precomp.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/slots.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/slots.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/slotscommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/slotscommon.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/sources.props -------------------------------------------------------------------------------- /drivers/misc/vchiq/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/trace.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/trace.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/transfer.c -------------------------------------------------------------------------------- /drivers/misc/vchiq/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/transfer.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq.inf -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq.pkg.xml -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq.vcxproj -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_2835.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_2835.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_cfg.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_common.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_core.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_if.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_ioctl.h -------------------------------------------------------------------------------- /drivers/misc/vchiq/vchiq_pagelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/misc/vchiq/vchiq_pagelist.h -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/License.txt -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/bcmgenet.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/bcmgenet.inx -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/bcmgenet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/bcmgenet.vcxproj -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/bcmgenet_netadaptercx20.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/bcmgenet_netadaptercx20.vcxproj -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/bcmgenet_netadaptercx21.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/bcmgenet_netadaptercx21.vcxproj -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/driver.c -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/registers.h -------------------------------------------------------------------------------- /drivers/net/bcm2711/bcmgenet/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/net/bcm2711/bcmgenet/trace.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/bcm2836pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/bcm2836pwm.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/bcm2836pwm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/bcm2836pwm.inf -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/bcm2836pwm.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/bcm2836pwm.pkg.xml -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/bcm2836pwm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/bcm2836pwm.vcxproj -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/clockmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/clockmgr.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/device.cpp -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/device.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/dma.cpp -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/dma.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/dmaInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/dmaInterrupt.cpp -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/dmaInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/dmaInterrupt.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/driver.cpp -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/driver.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/pwm.cpp -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/pwm.h -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/resource.rc -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/sources.props -------------------------------------------------------------------------------- /drivers/pwm/bcm2836/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/pwm/bcm2836/trace.h -------------------------------------------------------------------------------- /drivers/sd/SdportWhitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/SdportWhitelist.xml -------------------------------------------------------------------------------- /drivers/sd/bcm2711/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/README.md -------------------------------------------------------------------------------- /drivers/sd/bcm2711/bcmemmc2/bcmemmc2.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/bcmemmc2/bcmemmc2.inx -------------------------------------------------------------------------------- /drivers/sd/bcm2711/bcmemmc2/bcmemmc2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/bcmemmc2/bcmemmc2.vcxproj -------------------------------------------------------------------------------- /drivers/sd/bcm2711/bcmemmc2/bcmemmc2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/bcmemmc2/bcmemmc2.vcxproj.filters -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/AutoLogger.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/AutoLogger.reg -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/README.md -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.inx -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.rc -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SDHostBRCME88C.vcxproj -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SdRegisters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SdRegisters.h -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SlotExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SlotExtension.cpp -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/SlotExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/SlotExtension.h -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/driver.cpp -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/driver.h -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/precomp.h -------------------------------------------------------------------------------- /drivers/sd/bcm2711/brcme88c/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2711/brcme88c/trace.h -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/README.md -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.c -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.h -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.inf -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.pkg.xml -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.rc -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/bcm2836sdhc.vcxproj -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/sources.props -------------------------------------------------------------------------------- /drivers/sd/bcm2836/bcm2836sdhc/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/bcm2836sdhc/trace.h -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/README.md -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/precomp.hpp -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.cpp -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.hpp -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.inf -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.pkg.xml -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.rc -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/rpisdhc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/rpisdhc.vcxproj -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/sdhclogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/sdhclogging.cpp -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/sdhclogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/sdhclogging.h -------------------------------------------------------------------------------- /drivers/sd/bcm2836/rpisdhc/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/sd/bcm2836/rpisdhc/sources.props -------------------------------------------------------------------------------- /drivers/shared/acpi/acpiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/shared/acpi/acpiutil.cpp -------------------------------------------------------------------------------- /drivers/spi/bcm2836/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/License.txt -------------------------------------------------------------------------------- /drivers/spi/bcm2836/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/README.md -------------------------------------------------------------------------------- /drivers/spi/bcm2836/bcmspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/bcmspi.h -------------------------------------------------------------------------------- /drivers/spi/bcm2836/bcmspi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/bcmspi.inf -------------------------------------------------------------------------------- /drivers/spi/bcm2836/bcmspi.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/bcmspi.pkg.xml -------------------------------------------------------------------------------- /drivers/spi/bcm2836/bcmspi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/bcmspi.vcxproj -------------------------------------------------------------------------------- /drivers/spi/bcm2836/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/controller.cpp -------------------------------------------------------------------------------- /drivers/spi/bcm2836/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/controller.h -------------------------------------------------------------------------------- /drivers/spi/bcm2836/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/device.cpp -------------------------------------------------------------------------------- /drivers/spi/bcm2836/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/device.h -------------------------------------------------------------------------------- /drivers/spi/bcm2836/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/driver.cpp -------------------------------------------------------------------------------- /drivers/spi/bcm2836/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/driver.h -------------------------------------------------------------------------------- /drivers/spi/bcm2836/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/internal.h -------------------------------------------------------------------------------- /drivers/spi/bcm2836/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/resource.rc -------------------------------------------------------------------------------- /drivers/spi/bcm2836/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/sources.props -------------------------------------------------------------------------------- /drivers/spi/bcm2836/spitrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcm2836/spitrace.h -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/License.txt -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/README.md -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi-hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi-hw.h -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi.cpp -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi.h -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi.inf -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi.pkg.xml -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/bcmauxspi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/bcmauxspi.vcxproj -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/precomp.h -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/resource.rc -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/sources.props -------------------------------------------------------------------------------- /drivers/spi/bcmauxspi/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/spi/bcmauxspi/trace.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/License.txt -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/README.md -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/Trace.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/error.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/flush.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/immediat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/immediat.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/initunlo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/initunlo.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/ioctl.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/isr.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/modmflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/modmflow.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/openclos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/openclos.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/pi_miniuart.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/pi_miniuart.inf -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/pi_miniuart.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/pi_miniuart.rc -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/pi_miniuart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/pi_miniuart.sln -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/pi_miniuart.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/pi_miniuart.vcxproj -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/piminiuart.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/piminiuart.pkg.xml -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/pnp.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/power.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/precomp.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/purge.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/qsfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/qsfile.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/read.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/registry.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/resource.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/serial.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/serial.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/serial.rc -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/serialp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/serialp.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/utils.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/waitmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/waitmask.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/wmi.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/miniUart/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/miniUart/write.c -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/License.txt -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011.rc -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011common.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011common.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011device.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011device.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011driver.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011driver.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011hw.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011hw.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011interrupt.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011interrupt.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011ioctl.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011ioctl.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011logging.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011rx.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011tx.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011tx.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011uart.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/PL011uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/PL011uart.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/README.md -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/SerPL011.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/SerPL011.inf -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/SerPL011.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/SerPL011.pkg.xml -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/SerPL011.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/SerPL011.vcxproj -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/pl011rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/pl011rx.cpp -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/precomp.h -------------------------------------------------------------------------------- /drivers/uart/bcm2836/serPL011/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/uart/bcm2836/serPL011/sources.props -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/License.txt -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/bus.c -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/dma.c -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/driver.c -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/rpiuxflt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/rpiuxflt.h -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/rpiuxflt.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/rpiuxflt.inx -------------------------------------------------------------------------------- /drivers/usb/bcm2711/rpiuxflt/rpiuxflt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/drivers/usb/bcm2711/rpiuxflt/rpiuxflt.vcxproj -------------------------------------------------------------------------------- /tools/binexport.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/tools/binexport.cmd -------------------------------------------------------------------------------- /tools/binexport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/windows-drivers/HEAD/tools/binexport.ps1 --------------------------------------------------------------------------------