83xx/pcie: fix build error for 83xx pcie
[platform/kernel/u-boot.git] / board / freescale / c29xpcie / cpld.h
1 /**
2  * Copyright 2013 Freescale Semiconductor
3  * Author: Mingkai Hu <Mingkai.Hu@freescale.com>
4  *         Po Liu <Po.Liu@freescale.com>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; either version 2 of the License, or (at your option)
9  * any later version.
10  *
11  * This file provides support for the ngPIXIS, a board-specific FPGA used on
12  * some Freescale reference boards.
13  */
14
15 /*
16  * CPLD register set. Feel free to add board-specific #ifdefs where necessary.
17  */
18 struct cpld_data {
19         u8 chipid1;     /* 0x0 - CPLD Chip ID1 Register */
20         u8 chipid2;     /* 0x1 - CPLD Chip ID2 Register */
21         u8 hwver;       /* 0x2 - Hardware Version Register */
22         u8 cpldver;     /* 0x3 - Software Version Register */
23         u8 res[12];
24         u8 rstcon;      /* 0x10 - Reset control register */
25         u8 flhcsr;      /* 0x11 - Flash control and status Register */
26         u8 wdcsr;       /* 0x12 - Watchdog control and status Register */
27         u8 wdkick;      /* 0x13 - Watchdog kick Register */
28         u8 fancsr;      /* 0x14 - Fan control and status Register */
29         u8 ledcsr;      /* 0x15 - LED control and status Register */
30         u8 misccsr;     /* 0x16 - Misc control and status Register */
31         u8 bootor;      /* 0x17 - Boot configure override Register */
32         u8 bootcfg1;    /* 0x18 - Boot configure 1 Register */
33         u8 bootcfg2;    /* 0x19 - Boot configure 2 Register */
34         u8 bootcfg3;    /* 0x1a - Boot configure 3 Register */
35         u8 bootcfg4;    /* 0x1b - Boot configure 4 Register */
36 };
37
38 #define CPLD_BANKSEL_EN         0x02
39 #define CPLD_BANKSEL_MASK       0x3f
40 #define CPLD_SELECT_BANK1       0xc0
41 #define CPLD_SELECT_BANK2       0x80
42 #define CPLD_SELECT_BANK3       0x40
43 #define CPLD_SELECT_BANK4       0x00