forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'iommu-updates-v6.13' of ssh://gitolite.kernel.org/pub/scm/…
…linux/kernel/git/iommu/linux into iommufd.git Merge with Joerg's tree for dependencies on the next patches. ====================================== IOMMU Updates for Linux v6.13: Including: - Core Updates: - Convert call-sites using iommu_domain_alloc() to more specific versions and remove function. - Introduce iommu_paging_domain_alloc_flags(). - Extend support for allocating PASID-capable domains to more drivers. - Remove iommu_present(). - Some smaller improvements. - New IOMMU driver for RISC-V. - Intel VT-d Updates: - Add domain_alloc_paging support. - Enable user space IOPFs in non-PASID and non-svm cases. - Small code refactoring and cleanups. - Add domain replacement support for pasid. - AMD-Vi Updates: - Adapt to iommu_paging_domain_alloc_flags() interface and alloc V2 page-tables by default. - Replace custom domain ID allocator with IDA allocator. - Add ops->release_domain() support. - Other improvements to device attach and domain allocation code paths. - ARM-SMMU Updates: - SMMUv2: - Return -EPROBE_DEFER for client devices probing before their SMMU. - Devicetree binding updates for Qualcomm MMU-500 implementations. - SMMUv3: - Minor fixes and cleanup for NVIDIA's virtual command queue driver. - IO-PGTable: - Fix indexing of concatenated PGDs and extend selftest coverage. - Remove unused block-splitting support. - S390 IOMMU: - Implement support for blocking domain. - Mediatek IOMMU: - Enable 35-bit physical address support for mt8186. - OMAP IOMMU driver: - Adapt to recent IOMMU core changes and unbreak driver. ====================================== Signed-off-by: Jason Gunthorpe <[email protected]>
- Loading branch information
Showing
1,346 changed files
with
18,824 additions
and
10,331 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1204,6 +1204,10 @@ S: Dreisbachstrasse 24 | |
S: D-57250 Netphen | ||
S: Germany | ||
|
||
N: Florian Fainelli | ||
E: [email protected] | ||
D: DSA | ||
|
||
N: Rik Faith | ||
E: [email protected] | ||
D: Future Domain TMC-16x0 SCSI driver (author) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,49 +4,30 @@ | |
$id: http://devicetree.org/schemas/iio/dac/adi,ad5686.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Analog Devices AD5360 and similar DACs | ||
title: Analog Devices AD5360 and similar SPI DACs | ||
|
||
maintainers: | ||
- Michael Hennerich <[email protected]> | ||
- Jonathan Cameron <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- description: SPI devices | ||
enum: | ||
- adi,ad5310r | ||
- adi,ad5672r | ||
- adi,ad5674r | ||
- adi,ad5676 | ||
- adi,ad5676r | ||
- adi,ad5679r | ||
- adi,ad5681r | ||
- adi,ad5682r | ||
- adi,ad5683 | ||
- adi,ad5683r | ||
- adi,ad5684 | ||
- adi,ad5684r | ||
- adi,ad5685r | ||
- adi,ad5686 | ||
- adi,ad5686r | ||
- description: I2C devices | ||
enum: | ||
- adi,ad5311r | ||
- adi,ad5337r | ||
- adi,ad5338r | ||
- adi,ad5671r | ||
- adi,ad5675r | ||
- adi,ad5691r | ||
- adi,ad5692r | ||
- adi,ad5693 | ||
- adi,ad5693r | ||
- adi,ad5694 | ||
- adi,ad5694r | ||
- adi,ad5695r | ||
- adi,ad5696 | ||
- adi,ad5696r | ||
|
||
enum: | ||
- adi,ad5310r | ||
- adi,ad5672r | ||
- adi,ad5674r | ||
- adi,ad5676 | ||
- adi,ad5676r | ||
- adi,ad5679r | ||
- adi,ad5681r | ||
- adi,ad5682r | ||
- adi,ad5683 | ||
- adi,ad5683r | ||
- adi,ad5684 | ||
- adi,ad5684r | ||
- adi,ad5685r | ||
- adi,ad5686 | ||
- adi,ad5686r | ||
|
||
reg: | ||
maxItems: 1 | ||
|
Oops, something went wrong.