mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
b561563316
At present address_map[] is static and its type is unknown to external modules. In preparation to create a command to list its contents, this patch moves its type definition and declaration to the header file. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
24 lines
507 B
C
24 lines
507 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ADDR_MAP_H
|
|
#define __ADDR_MAP_H
|
|
|
|
/*
|
|
* Copyright 2008 Freescale Semiconductor, Inc.
|
|
*/
|
|
|
|
#include <asm/types.h>
|
|
|
|
struct addrmap {
|
|
phys_addr_t paddr;
|
|
phys_size_t size;
|
|
unsigned long vaddr;
|
|
};
|
|
|
|
extern struct addrmap address_map[CONFIG_SYS_NUM_ADDR_MAP];
|
|
|
|
phys_addr_t addrmap_virt_to_phys(void *vaddr);
|
|
void *addrmap_phys_to_virt(phys_addr_t paddr);
|
|
void addrmap_set_entry(unsigned long vaddr, phys_addr_t paddr,
|
|
phys_size_t size, int idx);
|
|
|
|
#endif
|