CVS log for src/sys/arch/arm/acpi/files.acpi
Up to [cvs.NetBSD.org] / src / sys / arch / arm / acpi
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Aug 7 21:27:53 2021 UTC (3 years, 4 months ago) by jmcneill
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
netbsd-10-base,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1,
netbsd-10,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm,
HEAD
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -1
lines
arm: acpi: Add support for SMCCC based PCI config access.
Revision 1.11.2.1: download - view: text, markup, annotated - select for diffs
Mon Dec 14 14:37:47 2020 UTC (3 years, 11 months ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11: +9 -1
lines
Sync w/ HEAD.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Mon Dec 7 10:57:41 2020 UTC (4 years ago) by jmcneill
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf-base,
thorpej-i2c-spi-conf,
thorpej-futex2-base,
thorpej-futex2,
thorpej-futex-base,
thorpej-cfargs2-base,
thorpej-cfargs2,
thorpej-cfargs-base,
thorpej-cfargs,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +9 -1
lines
acpicpu: Add support for ACPI P-states and T-states on Arm.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Oct 10 15:25:31 2020 UTC (4 years, 2 months ago) by jmcneill
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -2
lines
Support early FB console attachment when booting with a devicetree
(non-ACPI mode). Inform the pciconf code about the framebuffer to
prevent pciconf from changing resources out from under us when framebuffer
memory is in VRAM.
Revision 1.6.4.4: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:03:32 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.6.4.3: preferred, colored; branchpoint 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6.4.3: +3 -0
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.6.4.3: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:07:27 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.6.4.2: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.4.2: +4 -1
lines
Merge changes from current as of 20200406
Revision 1.8.2.2: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:18:17 2020 UTC (4 years, 9 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.8.2.1: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.2.1: +2 -1
lines
Sync with head.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Feb 1 13:26:43 2020 UTC (4 years, 10 months ago) by jmcneill
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
is-mlppp-base,
is-mlppp,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1,
bouyer-xenpvh-base,
bouyer-xenpvh,
ad-namecache-base3
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -1
lines
Add support for NXP Layerscape PCIe Gen4 (not ECAM compliant)
Revision 1.8.2.1: download - view: text, markup, annotated - select for diffs
Fri Jan 17 21:47:23 2020 UTC (4 years, 10 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1
lines
Sync with head.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jan 17 17:06:33 2020 UTC (4 years, 10 months ago) by jmcneill
Branches: MAIN
CVS tags: ad-namecache-base2,
ad-namecache-base1
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1
lines
Add support for Arm N1 SDP PCIe host controller.
The N1 SDP has a few bugs that we need to work around:
- PCIe root port config space lives in a non-standard location.
- Access to PCIe config space of devices that do not exist results in
an sync SError. Firmware creates a "known devices" table at a fixed
physical address that we use to filter PCI conf access to only known
devices.
This change splits the Arm ACPI PCI quirks into separate files for each
host controller, and allows per-segment quirks to be applied.
These changes exposed some bugs in the MI ACPI layer related to
multi-segment support. The MI ACPI PCI code was using a shared PCI
chipset tag to access devices, and these accesses can happen before our
PCI host bridge drivers are attached! The global chipset tag is now gone,
and an MD callback can provide a custom tag on a per-segment basis.
Revision 1.6.6.2: download - view: text, markup, annotated - select for diffs
Tue Oct 15 19:40:34 2019 UTC (5 years, 1 month ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1
Diff to: previous 1.6.6.1: preferred, colored; branchpoint 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6.6.1: +3 -1
lines
Pull up following revision(s) (requested by jmcneill in ticket #334):
sys/arch/arm/cortex/gic_v2m.c: revision 1.7
sys/arch/arm/acpi/gicv3_acpi.c: revision 1.5
sys/arch/arm/acpi/files.acpi: revision 1.8
sys/arch/arm/acpi/gic_acpi.c: revision 1.4
sys/arch/arm/cortex/files.cortex: revision 1.13
sys/arch/arm/acpi/gic_v2m_acpi.c: revision 1.1
sys/arch/arm/acpi/gic_v2m_acpi.h: revision 1.1
sys/arch/arm/cortex/gic_v2m.h: revision 1.2
Add support for Amazon's Graviton MSI controller.
Graviton has a GICv3 with a modified GICv2m (!) for MSIs. Instead of
sending messages to a fixed address with the SPI as data, the Graviton's
GICv2m uses a different address for each vector with "don't care" as data.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Oct 14 11:00:13 2019 UTC (5 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: phil-wifi-20191119,
ad-namecache-base
Branch point for: ad-namecache
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +3 -1
lines
Add support for Amazon's Graviton MSI controller.
Graviton has a GICv3 with a modified GICv2m (!) for MSIs. Instead of
sending messages to a fixed address with the SPI as data, the Graviton's
GICv2m uses a different address for each vector with "don't care" as data.
Revision 1.6.6.1: download - view: text, markup, annotated - select for diffs
Mon Sep 23 07:06:31 2019 UTC (5 years, 2 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -1
lines
Pull up following revision(s) (requested by jmcneill in ticket #231):
sys/arch/arm/acpi/acpi_platform.c: revision 1.18
sys/arch/arm/acpi/files.acpi: revision 1.7
sys/arch/arm/acpi/acpi_simplefb.c: revision 1.1
sys/arch/arm/acpi/acpi_simplefb.h: revision 1.1
Use vcons for simplefb preattach to speed up early console messages.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Sep 22 18:31:59 2019 UTC (5 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -1
lines
Use vcons for simplefb preattach to speed up early console messages.
Revision 1.6.4.2: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:05:50 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.6.4.1: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.4.1: +40 -0
lines
Sync with HEAD
Revision 1.2.2.4: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:32 2018 UTC (5 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.2.2.3: preferred, colored; branchpoint 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2.2.3: +2 -1
lines
Sync with HEAD, resolve a few conflicts
Revision 1.6.4.1
Sat Dec 8 15:04:40 2018 UTC (6 years ago) by christos
Branches: phil-wifi
FILE REMOVED
Changes since revision 1.6: +0 -40
lines
file files.acpi was added on branch phil-wifi on 2019-06-10 22:05:50 +0000
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Dec 8 15:04:40 2018 UTC (6 years ago) by jmcneill
Branches: MAIN
CVS tags: phil-wifi-20190609,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
netbsd-9-base,
isaki-audio2-base,
isaki-audio2
Branch point for: phil-wifi,
netbsd-9
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1
lines
Add support for decoding PCI ID mappings using IO remapping tables (IORT).
Revision 1.2.2.3: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:17 2018 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.2.2.2: preferred, colored; branchpoint 1.2: preferred, colored
Changes since revision 1.2.2.2: +9 -2
lines
Sync with HEAD, resolve a couple of conflicts
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Nov 12 12:56:05 2018 UTC (6 years, 1 month ago) by jmcneill
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Support building kernels with ACPI and no PCI.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Oct 24 11:01:47 2018 UTC (6 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +5 -1
lines
Add driver for ARM Server Base System Architecture (SBSA)-compliant
generic watchdog timers.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Oct 21 21:18:41 2018 UTC (6 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -1
lines
Add GICv3 ACPI attachment glue.
Revision 1.2.2.2: download - view: text, markup, annotated - select for diffs
Sat Oct 20 06:58:24 2018 UTC (6 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.2.2.1: preferred, colored; branchpoint 1.2: preferred, colored
Changes since revision 1.2.2.1: +32 -0
lines
Sync with head
Revision 1.2.2.1
Mon Oct 15 11:35:03 2018 UTC (6 years, 2 months ago) by pgoyette
Branches: pgoyette-compat
FILE REMOVED
Changes since revision 1.2: +0 -32
lines
file files.acpi was added on branch pgoyette-compat on 2018-10-20 06:58:24 +0000
Revision 1.2: download - view: text, markup, annotated - select for diffs
Mon Oct 15 11:35:03 2018 UTC (6 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: pgoyette-compat-1020
Branch point for: pgoyette-compat
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +6 -1
lines
Add ARM ACPI PCI support.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Oct 12 22:20:04 2018 UTC (6 years, 2 months ago) by jmcneill
Branches: MAIN
Add ACPI platform glue and basic device drivers (CPU, GIC, Generic Timer,
SBSA UART).
CVSweb <webmaster@jp.NetBSD.org>