blob: 72843c02e95ac9132615485fe36e7212c54c877e [file] [log] [blame]
Sebastien Requiemee40cea2010-02-23 14:38:14 +01001/*
2 * arch/arm/mach-mv78x00/mpp.c
3 *
4 * MPP functions for Marvell MV78x00 SoCs
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
Russell King2f8163b2011-07-26 10:53:52 +010010#include <linux/gpio.h>
Sebastien Requiemee40cea2010-02-23 14:38:14 +010011#include <linux/kernel.h>
12#include <linux/init.h>
Sebastien Requiemee40cea2010-02-23 14:38:14 +010013#include <linux/io.h>
Andrew Lunnb2f427a2011-05-15 13:32:52 +020014#include <plat/mpp.h>
Arnd Bergmann4c811b92015-12-02 22:27:06 +010015#include "mv78xx0.h"
Sebastien Requiemee40cea2010-02-23 14:38:14 +010016#include "common.h"
17#include "mpp.h"
18
19static unsigned int __init mv78xx0_variant(void)
20{
21 u32 dev, rev;
22
23 mv78xx0_pcie_id(&dev, &rev);
24
25 if (dev == MV78100_DEV_ID && rev >= MV78100_REV_A0)
26 return MPP_78100_A0_MASK;
27
28 printk(KERN_ERR "MPP setup: unknown mv78x00 variant "
29 "(dev %#x rev %#x)\n", dev, rev);
30 return 0;
31}
32
Sebastien Requiemee40cea2010-02-23 14:38:14 +010033void __init mv78xx0_mpp_conf(unsigned int *mpp_list)
34{
Andrew Lunnb2f427a2011-05-15 13:32:52 +020035 orion_mpp_conf(mpp_list, mv78xx0_variant(),
36 MPP_MAX, DEV_BUS_VIRT_BASE);
Sebastien Requiemee40cea2010-02-23 14:38:14 +010037}