Blame view

board/matrix_vision/mergerbox/mergerbox.h 1.64 KB
7fb3e7a2d   Andre Schwarz   mpc83xx: Add supp...
1
2
3
4
  /*
   * Copyright (C) 2011 Matrix Vision GmbH
   * Andre Schwarz <andre.schwarz@matrix-vision.de>
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
7fb3e7a2d   Andre Schwarz   mpc83xx: Add supp...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
   */
  
  #ifndef __MERGERBOX_H__
  #define __MERGERBOX_H__
  
  #define MV_GPIO
  
  /*
   * GPIO Bank 1
   */
  #define	TFT_SPI_EN	(0x80000000>>0)
  #define	FPGA_CONFIG	(0x80000000>>1)
  #define	FPGA_STATUS	(0x80000000>>2)
  #define	FPGA_CONF_DONE	(0x80000000>>3)
  #define	FPGA_DIN	(0x80000000>>4)
  #define	FPGA_CCLK	(0x80000000>>5)
  #define	MAN_RST		(0x80000000>>6)
  #define	FPGA_SYS_RST	(0x80000000>>7)
  #define	WD_WDI		(0x80000000>>8)
  #define	TFT_RST		(0x80000000>>9)
  #define	HISCON_GPIO1	(0x80000000>>10)
  #define	HISCON_GPIO2	(0x80000000>>11)
  #define	B2B_GPIO2	(0x80000000>>12)
  #define	CCU_GPIN	(0x80000000>>13)
  #define	CCU_GPOUT	(0x80000000>>14)
  #define	TFT_GPIO0	(0x80000000>>15)
  #define	TFT_GPIO1	(0x80000000>>16)
  #define	TFT_GPIO2	(0x80000000>>17)
  #define	TFT_GPIO3	(0x80000000>>18)
  #define	B2B_GPIO0	(0x80000000>>19)
  #define	B2B_GPIO1	(0x80000000>>20)
  #define	TFT_SPI_CPLD_CS	(0x80000000>>21)
  #define	TFT_SPI_CS	(0x80000000>>22)
  #define	CCU_PWR_EN	(0x80000000>>23)
  #define	B2B_GPIO3	(0x80000000>>24)
  #define	CCU_PWR_STAT	(0x80000000>>25)
  
  #define MV_GPIO1_DAT	(FPGA_CONFIG|CCU_PWR_EN|TFT_SPI_CPLD_CS)
  #define MV_GPIO1_OUT	(TFT_SPI_EN|FPGA_CONFIG|FPGA_DIN|FPGA_CCLK|CCU_PWR_EN| \
  			 TFT_SPI_CPLD_CS)
  #define MV_GPIO1_ODE	(FPGA_CONFIG|MAN_RST)
  
  /*
   * GPIO Bank 2
   */
  #define	SPI_FLASH_WP	(0x80000000>>10)
  #define	SYS_EEPROM_WP	(0x80000000>>11)
  #define	SPI_FLASH_CS	(0x80000000>>22)
  
  #define MV_GPIO2_DAT	(SYS_EEPROM_WP|SPI_FLASH_CS)
  #define MV_GPIO2_OUT	(SPI_FLASH_WP|SYS_EEPROM_WP|SPI_FLASH_CS)
  #define MV_GPIO2_ODE	0
  
  void mergerbox_tft_dim(u16 value);
  
  #endif