fsl_ocotpreg.h revision 261938
1261938Sian/*-
2261938Sian * Copyright (c) 2014 Steven Lawrance <stl@koffein.net>
3261938Sian * All rights reserved.
4261938Sian *
5261938Sian * Redistribution and use in source and binary forms, with or without
6261938Sian * modification, are permitted provided that the following conditions
7261938Sian * are met:
8261938Sian * 1. Redistributions of source code must retain the above copyright
9261938Sian *    notice, this list of conditions and the following disclaimer.
10261938Sian * 2. Redistributions in binary form must reproduce the above copyright
11261938Sian *    notice, this list of conditions and the following disclaimer in the
12261938Sian *    documentation and/or other materials provided with the distribution.
13261938Sian *
14261938Sian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15261938Sian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16261938Sian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17261938Sian * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18261938Sian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19261938Sian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20261938Sian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21261938Sian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22261938Sian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23261938Sian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24261938Sian * SUCH DAMAGE.
25261938Sian *
26261938Sian * $FreeBSD: head/sys/arm/freescale/imx/imx6_ocotpreg.h 261938 2014-02-15 17:19:55Z ian $
27261938Sian */
28261938Sian
29261938Sian#ifndef	IMX6_OCOTPREG_H
30261938Sian#define	IMX6_OCOTPREG_H
31261938Sian
32261938Sian#define	IMX6_OCOTP_CTRL				0x000
33261938Sian#define	IMX6_OCOTP_CTRL_SET			0x004
34261938Sian#define	IMX6_OCOTP_CTRL_CLR			0x008
35261938Sian#define	IMX6_OCOTP_CTRL_TOG			0x00C
36261938Sian#define	IMX6_OCOTP_TIMING			0x010
37261938Sian#define	IMX6_OCOTP_DATA				0x020
38261938Sian#define	IMX6_OCOTP_READ_CTRL			0x030
39261938Sian#define	IMX6_OCOTP_READ_FUSE_DATA		0x040
40261938Sian#define	IMX6_OCOTP_SW_STICKY			0x050
41261938Sian#define	IMX6_OCOTP_SCS				0x060
42261938Sian#define	IMX6_OCOTP_SCS_SET			0x064
43261938Sian#define	IMX6_OCOTP_SCS_CLR			0x068
44261938Sian#define	IMX6_OCOTP_SCS_TOG			0x06C
45261938Sian#define	IMX6_OCOTP_VERSION			0x090
46261938Sian#define	IMX6_OCOTP_LOCK				0x400
47261938Sian#define	IMX6_OCOTP_CFG0				0x410
48261938Sian#define	IMX6_OCOTP_CFG1				0x420
49261938Sian#define	IMX6_OCOTP_CFG2				0x430
50261938Sian#define	IMX6_OCOTP_CFG3				0x440
51261938Sian#define	IMX6_OCOTP_CFG4				0x450
52261938Sian#define	IMX6_OCOTP_CFG5				0x460
53261938Sian#define	IMX6_OCOTP_CFG6				0x470
54261938Sian#define	IMX6_OCOTP_MEM0				0x480
55261938Sian#define	IMX6_OCOTP_MEM1				0x490
56261938Sian#define	IMX6_OCOTP_MEM2				0x4A0
57261938Sian#define	IMX6_OCOTP_MEM3				0x4B0
58261938Sian#define	IMX6_OCOTP_ANA0				0x4D0
59261938Sian#define	IMX6_OCOTP_ANA1				0x4E0
60261938Sian#define	IMX6_OCOTP_ANA2				0x4F0
61261938Sian#define	IMX6_OCOTP_SRK0				0x580
62261938Sian#define	IMX6_OCOTP_SRK1				0x590
63261938Sian#define	IMX6_OCOTP_SRK2				0x5A0
64261938Sian#define	IMX6_OCOTP_SRK3				0x5B0
65261938Sian#define	IMX6_OCOTP_SRK4				0x5C0
66261938Sian#define	IMX6_OCOTP_SRK5				0x5D0
67261938Sian#define	IMX6_OCOTP_SRK6				0x5E0
68261938Sian#define	IMX6_OCOTP_SRK7				0x5F0
69261938Sian#define	IMX6_OCOTP_HSJC_RESP0			0x600
70261938Sian#define	IMX6_OCOTP_HSJC_RESP1			0x610
71261938Sian#define	IMX6_OCOTP_MAC0				0x620
72261938Sian#define	IMX6_OCOTP_MAC1				0x630
73261938Sian#define	IMX6_OCOTP_GP1				0x660
74261938Sian#define	IMX6_OCOTP_GP2				0x670
75261938Sian#define	IMX6_OCOTP_MISC_CONF			0x6D0
76261938Sian#define	IMX6_OCOTP_FIELD_RETURN			0x6E0
77261938Sian#define	IMX6_OCOTP_SRK_REVOKE			0x6F0
78261938Sian
79261938Sian#define	IMX6_OCOTP_LAST_REG			IMX6_OCOTP_SRK_REVOKE
80261938Sian
81261938Sian#endif
82