1 /* SPDX-License-Identifier: GPL-2.0 */
3 * ddbridge-regs.h: Digital Devices PCIe bridge driver
5 * Copyright (C) 2010-2017 Digital Devices GmbH
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 only, as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #ifndef __DDBRIDGE_REGS_H__
18 #define __DDBRIDGE_REGS_H__
20 /* ------------------------------------------------------------------------- */
23 #define SPI_CONTROL 0x10
26 /* ------------------------------------------------------------------------- */
29 #define GPIO_OUTPUT 0x20
30 #define GPIO_INPUT 0x24
31 #define GPIO_DIRECTION 0x28
33 /* ------------------------------------------------------------------------- */
35 #define BOARD_CONTROL 0x30
37 /* ------------------------------------------------------------------------- */
39 /* Interrupt controller
40 * How many MSI's are available depends on HW (Min 2 max 8)
41 * How many are usable also depends on Host platform
44 #define INTERRUPT_BASE (0x40)
46 #define INTERRUPT_ENABLE (INTERRUPT_BASE + 0x00)
47 #define MSI1_ENABLE (INTERRUPT_BASE + 0x04)
48 #define MSI2_ENABLE (INTERRUPT_BASE + 0x08)
49 #define MSI3_ENABLE (INTERRUPT_BASE + 0x0C)
50 #define MSI4_ENABLE (INTERRUPT_BASE + 0x10)
51 #define MSI5_ENABLE (INTERRUPT_BASE + 0x14)
52 #define MSI6_ENABLE (INTERRUPT_BASE + 0x18)
53 #define MSI7_ENABLE (INTERRUPT_BASE + 0x1C)
55 #define INTERRUPT_STATUS (INTERRUPT_BASE + 0x20)
56 #define INTERRUPT_ACK (INTERRUPT_BASE + 0x20)
58 /* Temperature Monitor ( 2x LM75A @ 0x90,0x92 I2c ) */
59 #define TEMPMON_BASE (0x1c0)
60 #define TEMPMON_CONTROL (TEMPMON_BASE + 0x00)
62 #define TEMPMON_CONTROL_AUTOSCAN (0x00000002)
63 #define TEMPMON_CONTROL_INTENABLE (0x00000004)
64 #define TEMPMON_CONTROL_OVERTEMP (0x00008000)
66 /* SHORT Temperature in Celsius x 256 */
67 #define TEMPMON_SENSOR0 (TEMPMON_BASE + 0x04)
68 #define TEMPMON_SENSOR1 (TEMPMON_BASE + 0x08)
70 #define TEMPMON_FANCONTROL (TEMPMON_BASE + 0x10)
72 /* ------------------------------------------------------------------------- */
73 /* I2C Master Controller */
75 #define I2C_COMMAND (0x00)
76 #define I2C_TIMING (0x04)
77 #define I2C_TASKLENGTH (0x08) /* High read, low write */
78 #define I2C_TASKADDRESS (0x0C) /* High read, low write */
79 #define I2C_MONITOR (0x1C)
81 #define I2C_SPEED_400 (0x04030404)
82 #define I2C_SPEED_100 (0x13121313)
84 /* ------------------------------------------------------------------------- */
87 #define DMA_BASE_WRITE (0x100)
88 #define DMA_BASE_READ (0x140)
90 #define TS_CONTROL(_io) ((_io)->regs + 0x00)
91 #define TS_CONTROL2(_io) ((_io)->regs + 0x04)
93 /* ------------------------------------------------------------------------- */
96 #define DMA_BUFFER_CONTROL(_dma) ((_dma)->regs + 0x00)
97 #define DMA_BUFFER_ACK(_dma) ((_dma)->regs + 0x04)
98 #define DMA_BUFFER_CURRENT(_dma) ((_dma)->regs + 0x08)
99 #define DMA_BUFFER_SIZE(_dma) ((_dma)->regs + 0x0c)
101 /* ------------------------------------------------------------------------- */
102 /* CI Interface (only CI-Bridge) */
104 #define CI_BASE (0x400)
105 #define CI_CONTROL(i) (CI_BASE + (i) * 32 + 0x00)
107 #define CI_DO_ATTRIBUTE_RW(i) (CI_BASE + (i) * 32 + 0x04)
108 #define CI_DO_IO_RW(i) (CI_BASE + (i) * 32 + 0x08)
109 #define CI_READDATA(i) (CI_BASE + (i) * 32 + 0x0c)
110 #define CI_DO_READ_ATTRIBUTES(i) (CI_BASE + (i) * 32 + 0x10)
112 #define CI_RESET_CAM (0x00000001)
113 #define CI_POWER_ON (0x00000002)
114 #define CI_ENABLE (0x00000004)
115 #define CI_BYPASS_DISABLE (0x00000010)
117 #define CI_CAM_READY (0x00010000)
118 #define CI_CAM_DETECT (0x00020000)
119 #define CI_READY (0x80000000)
121 #define CI_READ_CMD (0x40000000)
122 #define CI_WRITE_CMD (0x80000000)
124 #define CI_BUFFER_BASE (0x3000)
125 #define CI_BUFFER_SIZE (0x0800)
127 #define CI_BUFFER(i) (CI_BUFFER_BASE + (i) * CI_BUFFER_SIZE)
129 /* ------------------------------------------------------------------------- */
130 /* LNB commands (mxl5xx / Max S8) */
132 #define LNB_BASE (0x400)
133 #define LNB_CONTROL(i) (LNB_BASE + (i) * 0x20 + 0x00)
135 #define LNB_CMD (7ULL << 0)
136 #define LNB_CMD_NOP 0
137 #define LNB_CMD_INIT 1
138 #define LNB_CMD_LOW 3
139 #define LNB_CMD_HIGH 4
140 #define LNB_CMD_OFF 5
141 #define LNB_CMD_DISEQC 6
143 #define LNB_BUSY BIT_ULL(4)
144 #define LNB_TONE BIT_ULL(15)
146 #define LNB_BUF_LEVEL(i) (LNB_BASE + (i) * 0x20 + 0x10)
147 #define LNB_BUF_WRITE(i) (LNB_BASE + (i) * 0x20 + 0x14)
149 #endif /* __DDBRIDGE_REGS_H__ */