blob: 6f4d13961ba8b7eeb7d44236df9bec2838dbd14f [file] [log] [blame]
Haiying Wang765547d2009-03-27 17:02:45 -04001/*
Kumar Gala4c2e3da2009-07-28 21:49:52 -05002 * Copyright (C) 2009 Freescale Semiconductor, Inc.
Haiying Wang765547d2009-03-27 17:02:45 -04003 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Haiying Wang765547d2009-03-27 17:02:45 -04005 */
6
7#ifndef __BCSR_H_
8#define __BCSR_H_
9
10#include <common.h>
11
12/* BCSR Bit definitions*/
13/****************************************/
14/* BCSR defines */
15/****************************************/
16#define BCSR6_UPC1_EN 0x80
17#define BCSR6_UPC1_POS_EN 0x40
18#define BCSR6_UPC1_ADDR_EN 0x20
19#define BCSR6_UPC1_DEV2 0x10
Anton Vorontsov7f52ed52009-10-15 17:47:06 +040020#define BCSR6_SD_CARD_1BIT 0x08
21#define BCSR6_SD_CARD_4BITS 0x04
Haiying Wang765547d2009-03-27 17:02:45 -040022#define BCSR6_TDM2G_EN 0x02
23#define BCSR6_UCC7_RMII_EN 0x01
24
25#define BCSR7_UCC1_GETH_EN 0x80
26#define BCSR7_UCC1_RGMII_EN 0x40
27#define BCSR7_UCC1_RTBI_EN 0x20
28#define BCSR7_GETHRST_MRVL 0x04
29#define BCSR7_BRD_WRT_PROTECT 0x02
30
31#define BCSR8_UCC2_GETH_EN 0x80
32#define BCSR8_UCC2_RGMII_EN 0x40
33#define BCSR8_UCC2_RTBI_EN 0x20
34#define BCSR8_UEM_MARVEL_RESET 0x02
35
36#define BCSR9_UCC3_GETH_EN 0x80
37#define BCSR9_UCC3_RGMII_EN 0x40
38#define BCSR9_UCC3_RTBI_EN 0x20
39#define BCSR9_UCC3_RMII_EN 0x10
40#define BCSR9_UCC3_UEM_MICREL 0x01
41
42#define BCSR10_UCC4_GETH_EN 0x80
43#define BCSR10_UCC4_RGMII_EN 0x40
44#define BCSR10_UCC4_RTBI_EN 0x20
45
46#define BCSR11_LED0 0x40
47#define BCSR11_LED1 0x20
48#define BCSR11_LED2 0x10
49
50#define BCSR12_UCC6_RMII_EN 0x20
51#define BCSR12_UCC8_RMII_EN 0x20
52
53#define BCSR15_SMII6_DIS 0x08
54#define BCSR15_SMII8_DIS 0x04
Anton Vorontsov14809b62009-10-15 17:47:13 +040055#define BCSR15_QEUART_EN 0x01
Haiying Wang765547d2009-03-27 17:02:45 -040056
57#define BCSR16_UPC1_DEV2 0x02
58
Anton Vorontsov3fca8032009-10-15 17:47:16 +040059#define BCSR17_nUSBEN 0x80
60#define BCSR17_nUSBLOWSPD 0x40
61#define BCSR17_USBVCC 0x20
62#define BCSR17_USBMODE 0x10
Haiying Wang765547d2009-03-27 17:02:45 -040063#define BCSR17_FLASH_nWP 0x01
64
65/*BCSR Utils functions*/
66
67void enable_8569mds_flash_write(void);
68void disable_8569mds_flash_write(void);
Haiying Wangf82107f2009-05-20 12:30:37 -040069void enable_8569mds_qe_uec(void);
Haiying Wang765547d2009-03-27 17:02:45 -040070void disable_8569mds_brd_eeprom_write_protect(void);
71
72#endif /* __BCSR_H_ */