blob: 8e9f49240ff7eab5a7527819841ddfa5fbc03840 [file] [log] [blame]
Stephen Warren79340db2015-03-24 20:07:34 -06001/*
2 * Copyright 2015 Stephen Warren
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <config.h>
8#include <phys2bus.h>
9
10unsigned long phys_to_bus(unsigned long phys)
11{
Stephen Warrened7481c2016-03-16 21:40:56 -060012#ifndef CONFIG_BCM2835
Stephen Warren79340db2015-03-24 20:07:34 -060013 return 0xc0000000 | phys;
14#else
15 return 0x40000000 | phys;
16#endif
17}
18
19unsigned long bus_to_phys(unsigned long bus)
20{
21 return bus & ~0xc0000000;
22}