platform.c (c95baf12f5077419db01313ab61c2aac007d40cd) platform.c (fe364a7d95c24e07e9b3f2ab917f01d6d8330bba)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Platform driver for the Synopsys DesignWare DMA Controller
4 *
5 * Copyright (C) 2007-2008 Atmel Corporation
6 * Copyright (C) 2010-2011 ST Microelectronics
7 * Copyright (C) 2013 Intel Corporation
8 *

--- 135 unchanged lines hidden (view full) ---

144
145#ifdef CONFIG_ACPI
146static const struct acpi_device_id dw_dma_acpi_id_table[] = {
147 { "INTL9C60", (kernel_ulong_t)&dw_dma_chip_pdata },
148 { "80862286", (kernel_ulong_t)&dw_dma_chip_pdata },
149 { "808622C0", (kernel_ulong_t)&dw_dma_chip_pdata },
150
151 /* Elkhart Lake iDMA 32-bit (PSE DMA) */
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Platform driver for the Synopsys DesignWare DMA Controller
4 *
5 * Copyright (C) 2007-2008 Atmel Corporation
6 * Copyright (C) 2010-2011 ST Microelectronics
7 * Copyright (C) 2013 Intel Corporation
8 *

--- 135 unchanged lines hidden (view full) ---

144
145#ifdef CONFIG_ACPI
146static const struct acpi_device_id dw_dma_acpi_id_table[] = {
147 { "INTL9C60", (kernel_ulong_t)&dw_dma_chip_pdata },
148 { "80862286", (kernel_ulong_t)&dw_dma_chip_pdata },
149 { "808622C0", (kernel_ulong_t)&dw_dma_chip_pdata },
150
151 /* Elkhart Lake iDMA 32-bit (PSE DMA) */
152 { "80864BB4", (kernel_ulong_t)&idma32_chip_pdata },
153 { "80864BB5", (kernel_ulong_t)&idma32_chip_pdata },
154 { "80864BB6", (kernel_ulong_t)&idma32_chip_pdata },
152 { "80864BB4", (kernel_ulong_t)&xbar_chip_pdata },
153 { "80864BB5", (kernel_ulong_t)&xbar_chip_pdata },
154 { "80864BB6", (kernel_ulong_t)&xbar_chip_pdata },
155
156 { }
157};
158MODULE_DEVICE_TABLE(acpi, dw_dma_acpi_id_table);
159#endif
160
161#ifdef CONFIG_PM_SLEEP
162

--- 57 unchanged lines hidden ---
155
156 { }
157};
158MODULE_DEVICE_TABLE(acpi, dw_dma_acpi_id_table);
159#endif
160
161#ifdef CONFIG_PM_SLEEP
162

--- 57 unchanged lines hidden ---