1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2015 Stephen Warren
9 unsigned long phys_to_bus(unsigned long phys)
11 #ifndef CONFIG_BCM2835
12 return 0xc0000000 | phys;
14 return 0x40000000 | phys;
18 unsigned long bus_to_phys(unsigned long bus)
20 return bus & ~0xc0000000;