blob: ae645c72de7485d922a272de5125c1c45657b328 [file] [log] [blame]
Tom Rixf298e4b2009-10-31 12:37:41 -05001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix@windriver.com>
4 *
5 * This file is based on the file drivers/usb/musb/davinci.h
6 *
7 * This is the unique part of its copyright:
8 *
9 * --------------------------------------------------------------------
10 *
11 * Copyright (c) 2008 Texas Instruments
12 * Author: Thomas Abraham t-abraham@ti.com, Texas Instruments
13 *
14 * --------------------------------------------------------------------
15 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020016 * SPDX-License-Identifier: GPL-2.0+
Tom Rixf298e4b2009-10-31 12:37:41 -050017 */
18#ifndef _MUSB_OMAP3_H_
19#define _MUSB_OMAP3_H_
20
Steve Sakoman9b167572010-06-25 12:42:04 -070021#include <asm/arch/cpu.h>
Tom Rixf298e4b2009-10-31 12:37:41 -050022#include "musb_core.h"
23
24/* Base address of MUSB registers */
Steve Sakoman9b167572010-06-25 12:42:04 -070025#define MENTOR_USB0_BASE MUSB_BASE
Tom Rixf298e4b2009-10-31 12:37:41 -050026
27/* Base address of OTG registers */
28#define OMAP3_OTG_BASE (MENTOR_USB0_BASE + 0x400)
29
30/* Timeout for USB module */
31#define OMAP3_USB_TIMEOUT 0x3FFFFFF
32
33int musb_platform_init(void);
34
Ajay Kumar Gupta944a4892010-06-10 11:20:50 +053035#ifdef CONFIG_OMAP3_EVM
Ajay Kumar Gupta900c0c62010-07-15 16:11:01 -040036extern u8 omap3_evm_need_extvbus(void);
Ajay Kumar Gupta944a4892010-06-10 11:20:50 +053037#endif
38
Tom Rixf298e4b2009-10-31 12:37:41 -050039#endif /* _MUSB_OMAP3_H */