]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/addr_map.h
bootstage: Record the time taken to set up driver model
[people/ms/u-boot.git] / include / addr_map.h
CommitLineData
63240ba8
KG
1#ifndef __ADDR_MAP_H
2#define __ADDR_MAP_H
3
4/*
5 * Copyright 2008 Freescale Semiconductor, Inc.
6 *
5b8031cc 7 * SPDX-License-Identifier: GPL-2.0
63240ba8
KG
8 */
9
10#include <asm/types.h>
11
12extern phys_addr_t addrmap_virt_to_phys(void *vaddr);
7b6e8053 13extern void *addrmap_phys_to_virt(phys_addr_t paddr);
63240ba8
KG
14extern void addrmap_set_entry(unsigned long vaddr, phys_addr_t paddr,
15 phys_size_t size, int idx);
16
17#endif