1251016Sgonzo/*-
2251016Sgonzo * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
3251016Sgonzo * All rights reserved.
4251016Sgonzo *
5251016Sgonzo * Redistribution and use in source and binary forms, with or without
6251016Sgonzo * modification, are permitted provided that the following conditions
7251016Sgonzo * are met:
8251016Sgonzo * 1. Redistributions of source code must retain the above copyright
9251016Sgonzo *    notice, this list of conditions and the following disclaimer.
10251016Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
11251016Sgonzo *    notice, this list of conditions and the following disclaimer in the
12251016Sgonzo *    documentation and/or other materials provided with the distribution.
13251016Sgonzo *
14251016Sgonzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15251016Sgonzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16251016Sgonzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17251016Sgonzo * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18251016Sgonzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19251016Sgonzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20251016Sgonzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21251016Sgonzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22251016Sgonzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23251016Sgonzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24251016Sgonzo * SUCH DAMAGE.
25251016Sgonzo *
26251016Sgonzo * $FreeBSD$
27251016Sgonzo */
28251016Sgonzo#ifndef __AM335X_SCM_H__
29251016Sgonzo#define __AM335X_SCM_H__
30251016Sgonzo
31251016Sgonzo/* AM335x-specific registers for control module (scm) */
32251016Sgonzo#define	SCM_USB_CTRL0	0x620
33251016Sgonzo#define	SCM_USB_STS0	0x624
34251016Sgonzo#define	SCM_USB_CTRL1	0x628
35251016Sgonzo#define	SCM_USB_STS1	0x62C
36251016Sgonzo#define	SCM_PWMSS_CTRL	0x664
37251016Sgonzo
38251016Sgonzo#endif /* __AM335X_SCM_H__ */
39