1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * linux/arch/arm/plat-omap/ocpi.c
5 * Minimal OCP bus support for omap16xx
7 * Copyright (C) 2003 - 2005 Nokia Corporation
8 * Copyright (C) 2012 Texas Instruments, Inc.
9 * Written by Tony Lindgren <tony@atomide.com>
11 * Modified for clock framework by Paul Mundt <paul.mundt@nokia.com>.
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/errno.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/spinlock.h>
20 #include <linux/err.h>
21 #include <linux/clk.h>
24 #include <mach/hardware.h>
28 #define OCPI_BASE 0xfffec320
29 #define OCPI_FAULT (OCPI_BASE + 0x00)
30 #define OCPI_CMD_FAULT (OCPI_BASE + 0x04)
31 #define OCPI_SINT0 (OCPI_BASE + 0x08)
32 #define OCPI_TABORT (OCPI_BASE + 0x0c)
33 #define OCPI_SINT1 (OCPI_BASE + 0x10)
34 #define OCPI_PROT (OCPI_BASE + 0x14)
35 #define OCPI_SEC (OCPI_BASE + 0x18)
37 /* USB OHCI OCPI access error registers */
38 #define HOSTUEADDR 0xfffba0e0
39 #define HOSTUESTATUS 0xfffba0e4
41 static struct clk
*ocpi_ck
;
44 * Enables device access to OMAP buses via the OCPI bridge
50 if (!cpu_is_omap16xx())
53 /* Enable access for OHCI in OCPI */
54 val
= omap_readl(OCPI_PROT
);
56 /* val &= (1 << 0); Allow access only to EMIFS */
57 omap_writel(val
, OCPI_PROT
);
59 val
= omap_readl(OCPI_SEC
);
61 omap_writel(val
, OCPI_SEC
);
65 EXPORT_SYMBOL(ocpi_enable
);
67 static int __init
omap_ocpi_init(void)
69 if (!cpu_is_omap16xx())
72 ocpi_ck
= clk_get(NULL
, "l3_ocpi_ck");
74 return PTR_ERR(ocpi_ck
);
78 pr_info("OMAP OCPI interconnect driver loaded\n");
83 static void __exit
omap_ocpi_exit(void)
85 /* REVISIT: Disable OCPI */
87 if (!cpu_is_omap16xx())
94 MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>");
95 MODULE_DESCRIPTION("OMAP OCPI bus controller module");
96 MODULE_LICENSE("GPL");
97 module_init(omap_ocpi_init
);
98 module_exit(omap_ocpi_exit
);