hugetlb: introduce generic version of hugetlb_free_pgd_range
[linux/fpc-iii.git] / arch / x86 / kernel / i8237.c
blob0a3e70fd00d621bfb971ede058a4b926129d8051
1 /*
2 * 8237A DMA controller suspend functions.
4 * Written by Pierre Ossman, 2005.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
12 #include <linux/dmi.h>
13 #include <linux/init.h>
14 #include <linux/syscore_ops.h>
16 #include <asm/dma.h>
17 #include <asm/x86_init.h>
20 * This module just handles suspend/resume issues with the
21 * 8237A DMA controller (used for ISA and LPC).
22 * Allocation is handled in kernel/dma.c and normal usage is
23 * in asm/dma.h.
26 static void i8237A_resume(void)
28 unsigned long flags;
29 int i;
31 flags = claim_dma_lock();
33 dma_outb(0, DMA1_RESET_REG);
34 dma_outb(0, DMA2_RESET_REG);
36 for (i = 0; i < 8; i++) {
37 set_dma_addr(i, 0x000000);
38 /* DMA count is a bit weird so this is not 0 */
39 set_dma_count(i, 1);
42 /* Enable cascade DMA or channel 0-3 won't work */
43 enable_dma(4);
45 release_dma_lock(flags);
48 static struct syscore_ops i8237_syscore_ops = {
49 .resume = i8237A_resume,
52 static int __init i8237A_init_ops(void)
55 * From SKL PCH onwards, the legacy DMA device is removed in which the
56 * I/O ports (81h-83h, 87h, 89h-8Bh, 8Fh) related to it are removed
57 * as well. All removed ports must return 0xff for a inb() request.
59 * Note: DMA_PAGE_2 (port 0x81) should not be checked for detecting
60 * the presence of DMA device since it may be used by BIOS to decode
61 * LPC traffic for POST codes. Original LPC only decodes one byte of
62 * port 0x80 but some BIOS may choose to enhance PCH LPC port 0x8x
63 * decoding.
65 if (dma_inb(DMA_PAGE_0) == 0xFF)
66 return -ENODEV;
69 * It is not required to load this driver as newer SoC may not
70 * support 8237 DMA or bus mastering from LPC. Platform firmware
71 * must announce the support for such legacy devices via
72 * ACPI_FADT_LEGACY_DEVICES field in FADT table.
74 if (x86_pnpbios_disabled() && dmi_get_bios_year() >= 2017)
75 return -ENODEV;
77 register_syscore_ops(&i8237_syscore_ops);
78 return 0;
80 device_initcall(i8237A_init_ops);