summaryrefslogtreecommitdiffstats
path: root/sys/arm/altera
Commit message (Collapse)AuthorAgeFilesLines
* MFC r306262, r306267, r310021: (needed to avoid conflicts on later merges)ian2017-03-012-19/+0
| | | | | | | | | | Remove bus_dma_get_range and bus_dma_get_range_nb on armv6. We only need this on a few earlier arm SoCs. Restrict where we need to define fdt_fixup_table to just PowerPC and Marvell. Add the missing void to function signatures in much of the arm code.
* MFC r308640:ian2017-03-012-10/+6
| | | | | Use the correct OF_getencprop over OF_getprop + fdt32_to_cpu to read integer data from the device tree.
* MFC of r303230, r303253 and r303420:loos2016-12-301-1/+0
| | | | | | | | | | | | | Add support for the Microchip/Micrel KSZ9031 Gigabit Ethernet PHY. Enable the build of micphy as part of generic miibus build, but only for FDT enabled systems. The Micrel PHYs reads the optional external delays from DTB. Tested on uBMC and uFW. Sponsored by: Rubicon Communications (Netgate)
* MFC r306756:mmel2016-10-151-1/+2
| | | | | ARM: SEV/WFE instructions are implemented starting from ARMv6K, use it directly.
* Move arm's devmap to some generic place, so it can be usedbr2016-04-261-7/+7
| | | | | | | | | by other architectures. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D6091 Sponsored by: DARPA, AFRL Sponsored by: HEIF5
* Rename ARM_INTRNG and MIPS_INTRNG to INTRNG. This will help with machineandrew2016-04-151-1/+1
| | | | | | | independent code that needs to know about INTRNG such as PCI drivers. Obtained from: ABT Systems Ltd Sponsored by: The FreeBSD Foundation
* Cleanup unnecessary semicolons from the kernel.pfg2016-04-101-1/+1
| | | | Found with devel/coccinelle.
* Almost all copies of platform_mp_init_secondary just calledandrew2016-02-261-7/+0
| | | | | | | | | intr_pic_init_secondary. Replace them with a direct call. On BCM2836 and ARMADA XP we need to add this function, but it can be empty. Reviewed by: ian, imp Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D5460
* Remove platform_mp_probe as it's almost identical on most ARM SoCs, andandrew2016-02-261-10/+0
| | | | | | | | | | slightly wrong on the others. We should just check if mp_ncpus is set to more than one CPU as we may wish to run on a single core even when SMP is available. Reviewed by: ian Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D5458
* Remove platform_ipi_send, it's an unneeded as all implementations areandrew2016-02-251-7/+0
| | | | | | identical. Sponsored by: ABT Systems Ltd
* Move ARM_L2_PIPT option to std.armv6 for all armv6 platforms.skra2016-02-221-2/+0
| | | | | | | Only L2 PIPT cache is supported for __ARM_ARCH >= 6. In fact, this is just a pure proclamation as this option is used only in armv4 specific files now.
* Stop defining fdt_pic_table when building for ARM_INTRNG.andrew2016-02-111-0/+2
|
* ARM: Use new ARMv6 naming conventions for cache and TLB functionsmmel2016-02-051-2/+2
| | | | | | in all but ARMv4 specific files. Expand ARMv6 compatibility stubs in cpu-v4.h. Use physical address in L2 cache functions if ARM_L2_PIPT is defined.
* [intrng] Migrate the intrng code from sys/arm/arm to sys/kern/subr_intr.c.adrian2015-12-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ci20 port (by kan@) is going to reuse almost all of the intrng code since the SoC in question looks suspiciously like someone took an ARM SoC design and replaced the ARM core with a MIPS core. * migrate out the code; * rename ARM_ -> INTR_; * rename arm_ -> intr_; * move the interrupt flush routine from intr.c / intrng.c into arm/machdep_intr.c - removing the code duplication and removing the ARM specific bits from here. Thanks to the Star Wars: The Force Awakens premiere line for allowing me a couple hours of quiet time to finish the universe builds. Tested: * make universe TODO: * The structure definitions in subr_intr.c still includes machine/intr.h which requires one duplicates all of the intrng definitions in the platform code (which kan has done, and I think we don't have to.) Instead I should break out the generic things (function declarations, common intr structures, etc) into a separate header. * Kan has requested I make the PIC based IPI stuff optional.
* Create device options for the two common ARM timers.andrew2015-11-211-2/+0
| | | | Sponsored by: ABT Systems Ltd
* Move more bus_space_* files to be built by files.arm. This leaves theandrew2015-11-211-3/+0
| | | | | | | definition in a file.* file under sys/arm/arm in the few cases we need it for non-fdt platforms. Sponsored by: ABT Systems Ltd
* Makeoption ARM_LITLE_ENDIAN does nothing. Remove it since it isn'timp2015-11-201-2/+0
| | | | | consistently used. It was a carry over from NetBSD that FreeBSD doesn't use.
* Remove bus_space_asm_generic.S from the per-SoC files.* files, it's alreadyandrew2015-11-201-1/+0
| | | | | | in files.arm. Sponsored by: ABT Systems Ltd
* Stop setting {KERN,}PHYSADDR on armv6, it's unneeded.andrew2015-11-201-5/+0
| | | | Sponsored by: ABT Systems Ltd
* Rename arm_init_secondary_ic() -> arm_pic_init_secondary(). The latter isian2015-10-181-1/+1
| | | | | | the name the function will have when the new ARM_INTRNG code is integrated, and doing this rename first will make it easier to toggle the new interrupt handling code on/off with a config option for debugging.
* Add alternate descriptors support for if_dwc.loos2015-09-201-1/+0
| | | | | | | | | | | | | | | | | | This also adds a newbus interface that allows a SoC to override the following settings: - if_dwc specific SoC initialization; - if_dwc descriptor type; - if_dwc MII clock. This seems to be an old version of the hardware descriptors but it is still in use in a few SoCs (namely Allwinner A20 and Amlogic at least). Tested on Cubieboard2 and Banana pi. Tested for regressions on Altera Cyclone by br@ (old version). Obtained from: NetBSD
* Use the new gic option on all configs that need it.andrew2015-05-101-1/+0
|
* Include vm/pmap.h for pmap_kextract.andrew2015-04-041-0/+3
|
* Stop using machine/fdt.h in the arm kernel code when we don't need it.andrew2015-04-042-2/+0
|
* Build the cpufunc_asm_* files based on the cpu type, not which config fileandrew2015-03-291-1/+0
| | | | we happen to be building.
* Remove cpufunc_asm_arm11.S from the ARMv7 configs, it's not used.andrew2015-03-291-1/+0
|
* Stop building unused cpuvunc_* files, we don't need anything from these.andrew2015-03-291-2/+0
|
* Implement GPIO_GET_BUS() method for all GPIO drivers.loos2015-01-311-3/+20
| | | | | Add helper routines to deal with attach and detach of gpiobus and gpioc devices that are common to all drivers.
* Clean up and fix the device detach routine and the failure path on GPIOloos2015-01-311-0/+1
| | | | | | drivers. This paves the way for upcoming work.
* Rename bus_space-v6.c to bus_space_base.c, because it's not v6-specifician2015-01-211-1/+1
| | | | | and now some v5 Marvell systems are using it. Only define fdt_bus_tag if option FDT is defined.
* Rename gic_init_secondary to arm_init_secondary_ic to help with the mergeandrew2015-01-111-1/+1
| | | | of the arm_intrng project branch.
* Add driver for general-purpose I/O (GPIO).br2015-01-022-0/+438
| | | | Sponsored by: DARPA, AFRL
* Remove -Wa,-march=armv7a from arm kernel configs, it makes clang 3.5 sadian2015-01-011-1/+1
| | | | and apparently isn't needed now that we're using the integrated assembler.
* Add -march=armv7a to the kernel compile for all ARM systems which are v7a.ian2014-12-211-0/+1
| | | | Submitted by: Michal Meloun <meloun@miracle.cz>
* o Add BERI Virtio Networking Frontend (if_vtbe)br2014-12-091-1/+2
| | | | | | | | o Move similar block/networking methods to common file o Follow r275640 and correct MMIO registers width o Pass value to MMIO platform_note method. Sponsored by: DARPA, AFRL
* Add new devices to the config.br2014-11-251-0/+2
|
* o Add PIO and vtblk mmio device info to the treebr2014-11-251-0/+3
| | | | | o Add FPGA memory window to static dev mappings o Fix whitespace
* Provide a character device allowing us to access BERI memory regions.br2014-10-221-0/+3
| | | | Sponsored by: DARPA, AFRL
* Add driver for Micrel KSZ9021 Gigabit Ethernet Transceiver (PHY).br2014-10-211-0/+1
| | | | Sponsored by: DARPA, AFRL
* Add driver for BERI soft processor 'ring buffer' device.br2014-10-191-0/+1
| | | | | | | Ring device provides a way for communicate to BERI peripherals such as BERI debug unit and console. Sponsored by: DARPA, AFRL
* o Add machine-dependent SMP partbr2014-10-103-0/+184
| | | | | | o Enable SMP Sponsored by: DARPA, AFRL
* Add driver for Synopsys DesignWare Mobile Storage Host Controller.br2014-10-072-0/+4
| | | | Sponsored by: DARPA, AFRL
* Add driver for Synopsys DesignWare 3504-0 Universal 10/100/1000br2014-09-251-0/+2
| | | | | | Ethernet MAC. Sponsored by: DARPA, AFRL
* Add Reset Manager driver. This driver provides generic way to resetbr2014-09-115-6/+377
| | | | | | and provides sysctl tunables for enable/disable FPGA<->HPS bridges. Sponsored by: DARPA, AFRL
* o Remove __unused attribute on variables which actually usedbr2014-09-062-33/+24
| | | | | | | | | o Unmagic 'configuration done' bit o Move probe() to place before attach() for better navigation o Use bus_read_n instead of bus_space_read_n functions Pointed out by: andrew Sponsored by: DARPA, AFRL
* Add FPGA Manager driver. This driver allows to program FPGA corebr2014-09-063-0/+481
| | | | | | from FreeBSD userspace running on ARM core. Sponsored by: DARPA, AFRL
* Add initial support for Altera SOCFPGA (heterogeneous ARM/FPGA) SoC family.br2014-09-044-0/+228
Include board configuration for Terasic SoCKit (Altera Cyclone V). Sponsored by: DARPA, AFRL
OpenPOWER on IntegriCloud