// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 HiSilicon Limited, All Rights Reserved. * Author: Gabriele Paoloni <[email protected]> * Author: Zhichang Yuan <[email protected]> * Author: John Garry <[email protected]> */ #define pr_fmt(fmt) … #include <linux/of.h> #include <linux/io.h> #include <linux/logic_pio.h> #include <linux/mm.h> #include <linux/rculist.h> #include <linux/sizes.h> #include <linux/slab.h> /* The unique hardware address list */ static LIST_HEAD(io_range_list); static DEFINE_MUTEX(io_range_mutex); /** * logic_pio_register_range - register logical PIO range for a host * @new_range: pointer to the IO range to be registered. * * Returns 0 on success, the error code in case of failure. * If the range already exists, -EEXIST will be returned, which should be * considered a success. * * Register a new IO range node in the IO range list. */ int logic_pio_register_range(struct logic_pio_hwaddr *new_range) { … } /** * logic_pio_unregister_range - unregister a logical PIO range for a host * @range: pointer to the IO range which has been already registered. * * Unregister a previously-registered IO range node. */ void logic_pio_unregister_range(struct logic_pio_hwaddr *range) { … } /** * find_io_range_by_fwnode - find logical PIO range for given FW node * @fwnode: FW node handle associated with logical PIO range * * Returns pointer to node on success, NULL otherwise. * * Traverse the io_range_list to find the registered node for @fwnode. */ struct logic_pio_hwaddr *find_io_range_by_fwnode(struct fwnode_handle *fwnode) { … } /* Return a registered range given an input PIO token */ static struct logic_pio_hwaddr *find_io_range(unsigned long pio) { … } /** * logic_pio_to_hwaddr - translate logical PIO to HW address * @pio: logical PIO value * * Returns HW address if valid, ~0 otherwise. * * Translate the input logical PIO to the corresponding hardware address. * The input PIO should be unique in the whole logical PIO space. */ resource_size_t logic_pio_to_hwaddr(unsigned long pio) { … } /** * logic_pio_trans_hwaddr - translate HW address to logical PIO * @fwnode: FW node reference for the host * @addr: Host-relative HW address * @size: size to translate * * Returns Logical PIO value if successful, ~0UL otherwise */ unsigned long logic_pio_trans_hwaddr(struct fwnode_handle *fwnode, resource_size_t addr, resource_size_t size) { … } unsigned long logic_pio_trans_cpuaddr(resource_size_t addr) { … } #if defined(CONFIG_INDIRECT_PIO) && defined(PCI_IOBASE) #define BUILD_LOGIC_IO … BUILD_LOGIC_IO(b, u8) EXPORT_SYMBOL(logic_inb); EXPORT_SYMBOL(logic_insb); EXPORT_SYMBOL(logic_outb); EXPORT_SYMBOL(logic_outsb); BUILD_LOGIC_IO(w, u16) EXPORT_SYMBOL(logic_inw); EXPORT_SYMBOL(logic_insw); EXPORT_SYMBOL(logic_outw); EXPORT_SYMBOL(logic_outsw); BUILD_LOGIC_IO(l, u32) EXPORT_SYMBOL(logic_inl); EXPORT_SYMBOL(logic_insl); EXPORT_SYMBOL(logic_outl); EXPORT_SYMBOL(logic_outsl); #endif /* CONFIG_INDIRECT_PIO && PCI_IOBASE */