Lines Matching +full:low +full:-
1 /* SPDX-License-Identifier: GPL-2.0 */
13 to be that of the cache. Now we can read and write it as we like. ;-) */
56 #define IO_LITE(UP,low) \ argument
59 .mv_ioread8 = CAT(low,_ioread8), \
60 .mv_ioread16 = CAT(low,_ioread16), \
61 .mv_ioread32 = CAT(low,_ioread32), \
62 .mv_ioread64 = CAT(low,_ioread64), \
63 .mv_iowrite8 = CAT(low,_iowrite8), \
64 .mv_iowrite16 = CAT(low,_iowrite16), \
65 .mv_iowrite32 = CAT(low,_iowrite32), \
66 .mv_iowrite64 = CAT(low,_iowrite64), \
67 .mv_readb = CAT(low,_readb), \
68 .mv_readw = CAT(low,_readw), \
69 .mv_readl = CAT(low,_readl), \
70 .mv_readq = CAT(low,_readq), \
71 .mv_writeb = CAT(low,_writeb), \
72 .mv_writew = CAT(low,_writew), \
73 .mv_writel = CAT(low,_writel), \
74 .mv_writeq = CAT(low,_writeq), \
75 .mv_ioportmap = CAT(low,_ioportmap), \
76 .mv_ioremap = CAT(low,_ioremap), \
77 .mv_iounmap = CAT(low,_iounmap), \
78 .mv_is_ioaddr = CAT(low,_is_ioaddr), \
79 .mv_is_mmio = CAT(low,_is_mmio) \
81 #define IO(UP,low) \ argument
82 IO_LITE(UP,low), \
83 .pci_ops = &CAT(low,_pci_ops), \
84 .mv_pci_tbi = CAT(low,_pci_tbi)
104 * all but one of which we want to go away. In a non-GENERIC kernel,
111 * Accomplish this in a non-GENERIC kernel by ifdef'ing out all but
115 * Upshot: set __initdata to nothing for non-GENERIC kernels.