]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/yucca.h
drivers/pci/Kconfig: Add PCI
[people/ms/u-boot.git] / include / configs / yucca.h
CommitLineData
6c5879f3
MB
1/*
2 * (C) Copyright 2004 Paul Reynolds <PaulReynolds@lhsolutions.com>
3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
6c5879f3
MB
5 */
6
7/************************************************************************
8 * 1 january 2005 Alain Saurel <asaurel@amcc.com>
9 * Adapted to current Das U-Boot source
10 ***********************************************************************/
11/************************************************************************
12 * yucca.h - configuration for AMCC 440SPe Ref (yucca)
13 ***********************************************************************/
14
15#ifndef __CONFIG_H
16#define __CONFIG_H
17
6c5879f3
MB
18/*-----------------------------------------------------------------------
19 * High Level Configuration Options
20 *----------------------------------------------------------------------*/
6c5879f3
MB
21#define CONFIG_440 1 /* ... PPC440 family */
22#define CONFIG_440SPE 1 /* Specifc SPe support */
2a72e9ed 23#define CONFIG_440SPE_REVA 1 /* Support old Rev A. */
6c5879f3 24#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_pre_init */
6c5879f3
MB
25#define CONFIG_SYS_CLK_FREQ 33333333 /* external freq to pll */
26#define EXTCLK_33_33 33333333
27#define EXTCLK_66_66 66666666
28#define EXTCLK_50 50000000
29#define EXTCLK_83 83333333
30
2ae18241
WD
31#define CONFIG_SYS_TEXT_BASE 0xfffb0000
32
72675dc6
SR
33/*
34 * Include common defines/options for all AMCC eval boards
35 */
36#define CONFIG_HOSTNAME yucca
37#include "amcc-common.h"
38
2f5df473 39#define CONFIG_MISC_INIT_F 1 /* Use misc_init_f() */
6c5879f3
MB
40#undef CONFIG_SHOW_BOOT_PROGRESS
41#undef CONFIG_STRESS
2f5df473 42
6c5879f3
MB
43/*-----------------------------------------------------------------------
44 * Base addresses -- Note these are effective addresses where the
45 * actual resources get mapped (not physical addresses)
46 *----------------------------------------------------------------------*/
6d0f6bcf 47#define CONFIG_SYS_FLASH_BASE 0xfff00000 /* start of FLASH */
6d0f6bcf 48#define CONFIG_SYS_ISRAM_BASE 0x90000000 /* internal SRAM */
6c5879f3 49
6d0f6bcf
JCPV
50#define CONFIG_SYS_PCI_MEMBASE 0x80000000 /* mapped PCI memory */
51#define CONFIG_SYS_PCI_BASE 0xd0000000 /* internal PCI regs */
52#define CONFIG_SYS_PCI_TARGBASE CONFIG_SYS_PCI_MEMBASE
692519b1 53
6d0f6bcf
JCPV
54#define CONFIG_SYS_PCIE_MEMBASE 0xb0000000 /* mapped PCIe memory */
55#define CONFIG_SYS_PCIE_MEMSIZE 0x08000000 /* smallest incr for PCIe port */
56#define CONFIG_SYS_PCIE_BASE 0xe0000000 /* PCIe UTL regs */
6c5879f3 57
6d0f6bcf
JCPV
58#define CONFIG_SYS_PCIE0_CFGBASE 0xc0000000
59#define CONFIG_SYS_PCIE1_CFGBASE 0xc1000000
60#define CONFIG_SYS_PCIE2_CFGBASE 0xc2000000
61#define CONFIG_SYS_PCIE0_XCFGBASE 0xc3000000
62#define CONFIG_SYS_PCIE1_XCFGBASE 0xc3001000
63#define CONFIG_SYS_PCIE2_XCFGBASE 0xc3002000
692519b1 64
97923770 65/* base address of inbound PCIe window */
6d0f6bcf 66#define CONFIG_SYS_PCIE_INBOUND_BASE 0x0000000400000000ULL
97923770 67
fbb0b559 68/* System RAM mapped to PCI space */
6d0f6bcf
JCPV
69#define CONFIG_PCI_SYS_MEM_BUS CONFIG_SYS_SDRAM_BASE
70#define CONFIG_PCI_SYS_MEM_PHYS CONFIG_SYS_SDRAM_BASE
fbb0b559
MB
71#define CONFIG_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024)
72
6d0f6bcf
JCPV
73#define CONFIG_SYS_FPGA_BASE 0xe2000000 /* epld */
74#define CONFIG_SYS_OPER_FLASH 0xe7000000 /* SRAM - OPER Flash */
6c5879f3 75
6d0f6bcf 76/* #define CONFIG_SYS_NVRAM_BASE_ADDR 0x08000000 */
6c5879f3
MB
77/*-----------------------------------------------------------------------
78 * Initial RAM & stack pointer (placed in internal SRAM)
79 *----------------------------------------------------------------------*/
6d0f6bcf
JCPV
80#define CONFIG_SYS_TEMP_STACK_OCM 1
81#define CONFIG_SYS_OCM_DATA_ADDR CONFIG_SYS_ISRAM_BASE
82#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_ISRAM_BASE /* Initial RAM address */
553f0982 83#define CONFIG_SYS_INIT_RAM_SIZE 0x2000 /* Size of used area in RAM */
6c5879f3 84
25ddd1fb 85#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
800eb096 86#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
6c5879f3 87
6c5879f3
MB
88/*-----------------------------------------------------------------------
89 * Serial Port
90 *----------------------------------------------------------------------*/
550650dd 91#define CONFIG_CONS_INDEX 1 /* Use UART0 */
6c5879f3 92
6d0f6bcf
JCPV
93#undef CONFIG_SYS_EXT_SERIAL_CLOCK
94/* #define CONFIG_SYS_EXT_SERIAL_CLOCK (1843200 * 6) */ /* Ext clk @ 11.059 MHz */
6c5879f3 95
6c5879f3
MB
96/*-----------------------------------------------------------------------
97 * DDR SDRAM
98 *----------------------------------------------------------------------*/
2f5df473
SR
99#define CONFIG_SPD_EEPROM 1 /* Use SPD EEPROM for setup */
100#define SPD_EEPROM_ADDRESS {0x53, 0x52} /* SPD i2c spd addresses*/
60723803 101#define CONFIG_DDR_ECC 1 /* with ECC support */
6c5879f3
MB
102
103/*-----------------------------------------------------------------------
104 * I2C
105 *----------------------------------------------------------------------*/
880540de 106#define CONFIG_SYS_I2C_PPC4XX_SPEED_0 400000
6c5879f3
MB
107
108#define IIC0_BOOTPROM_ADDR 0x50
109#define IIC0_ALT_BOOTPROM_ADDR 0x54
110
111/* Don't probe these addrs */
880540de 112#define CONFIG_SYS_I2C_NOPROBES { {0, 0x50}, {0, 0x52}, {0, 0x53}, {0, 0x54} }
6c5879f3 113
dca3b3d6 114/* #if defined(CONFIG_CMD_EEPROM) */
6d0f6bcf
JCPV
115/* #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 */ /* I2C boot EEPROM */
116#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 /* Bytes of address */
6c5879f3
MB
117/* #endif */
118
119/*-----------------------------------------------------------------------
120 * Environment
121 *----------------------------------------------------------------------*/
6d0f6bcf 122/* #define CONFIG_SYS_NVRAM_SIZE (0x2000 - 8) */ /* NVRAM size(8k)- RTC regs */
6c5879f3 123
9314cee6 124#undef CONFIG_ENV_IS_IN_NVRAM /* ... not in NVRAM */
5a1aceb0 125#define CONFIG_ENV_IS_IN_FLASH 1 /* Environment uses flash */
bb1f8b4f 126#undef CONFIG_ENV_IS_IN_EEPROM /* ... not in EEPROM */
6c5879f3
MB
127#define CONFIG_ENV_OVERWRITE 1
128
72675dc6
SR
129/*
130 * Default environment variables
131 */
6c5879f3 132#define CONFIG_EXTRA_ENV_SETTINGS \
72675dc6
SR
133 CONFIG_AMCC_DEF_ENV \
134 CONFIG_AMCC_DEF_ENV_PPC \
135 CONFIG_AMCC_DEF_ENV_NOR_UPD \
6c5879f3
MB
136 "kernel_addr=E7F10000\0" \
137 "ramdisk_addr=E7F20000\0" \
6efc1fc0 138 "pciconfighost=1\0" \
d4cb2d17 139 "pcie_mode=RP:EP:EP\0" \
6c5879f3 140 ""
dca3b3d6 141
079a136c 142/*
72675dc6 143 * Commands additional to the ones defined in amcc-common.h
079a136c 144 */
dca3b3d6 145#define CONFIG_CMD_PCI
dca3b3d6
JL
146#define CONFIG_CMD_SDRAM
147
2f5df473 148#define CONFIG_IBM_EMAC4_V4 1
caaeaf92
WD
149#define CONFIG_PHY_ADDR 1 /* PHY address, See schematics */
150#define CONFIG_HAS_ETH0
151#define CONFIG_PHY_RESET 1 /* reset phy upon startup */
152#define CONFIG_PHY_RESET_DELAY 1000
153#define CONFIG_CIS8201_PHY 1 /* Enable 'special' RGMII mode for Cicada phy */
154#define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */
4f92ed5f 155
6c5879f3
MB
156/*-----------------------------------------------------------------------
157 * FLASH related
158 *----------------------------------------------------------------------*/
6d0f6bcf
JCPV
159#define CONFIG_SYS_MAX_FLASH_BANKS 3 /* number of banks */
160#define CONFIG_SYS_MAX_FLASH_SECT 256 /* sectors per device */
6c5879f3 161
6d0f6bcf
JCPV
162#undef CONFIG_SYS_FLASH_CHECKSUM
163#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
164#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
6c5879f3 165
6d0f6bcf
JCPV
166#define CONFIG_SYS_FLASH_ADDR0 0x5555
167#define CONFIG_SYS_FLASH_ADDR1 0x2aaa
168#define CONFIG_SYS_FLASH_WORD_SIZE unsigned char
6c5879f3 169
6d0f6bcf
JCPV
170#define CONFIG_SYS_FLASH_2ND_16BIT_DEV 1 /* evb440SPe has 8 and 16bit device */
171#define CONFIG_SYS_FLASH_2ND_ADDR 0xe7c00000 /* evb440SPe has 8 and 16bit device*/
6c5879f3 172
5a1aceb0 173#ifdef CONFIG_ENV_IS_IN_FLASH
0e8d1586
JCPV
174#define CONFIG_ENV_SECT_SIZE 0x10000 /* size of one complete sector */
175#define CONFIG_ENV_ADDR 0xfffa0000
6d0f6bcf 176/* #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE-CONFIG_ENV_SECT_SIZE) */
0e8d1586 177#define CONFIG_ENV_SIZE 0x10000 /* Size of Environment vars */
5a1aceb0 178#endif /* CONFIG_ENV_IS_IN_FLASH */
6c5879f3
MB
179/*-----------------------------------------------------------------------
180 * PCI stuff
181 *-----------------------------------------------------------------------
182 */
183/* General PCI */
842033e6 184#define CONFIG_PCI_INDIRECT_BRIDGE /* indirect PCI bridge support */
6c5879f3 185#define CONFIG_PCI_PNP 1 /* do pci plug-and-play */
fe84b48a 186#define CONFIG_PCI_SCAN_SHOW 1 /* show pci devices on startup */
6efc1fc0 187#define CONFIG_PCI_CONFIG_HOST_BRIDGE
6c5879f3
MB
188
189/* Board-specific PCI */
6d0f6bcf
JCPV
190#define CONFIG_SYS_PCI_TARGET_INIT /* let board init pci target */
191#undef CONFIG_SYS_PCI_MASTER_INIT
6c5879f3 192
6d0f6bcf
JCPV
193#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1014 /* IBM */
194#define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0xcafe /* Whatever */
195/* #define CONFIG_SYS_PCI_SUBSYS_ID CONFIG_SYS_PCI_SUBSYS_DEVICEID */
6c5879f3
MB
196
197/*
198 * NETWORK Support (PCI):
199 */
200/* Support for Intel 82557/82559/82559ER chips. */
201#define CONFIG_EEPRO100
692519b1 202
6c5879f3
MB
203/* FB Divisor selection */
204#define FPGA_FB_DIV_6 6
205#define FPGA_FB_DIV_10 10
206#define FPGA_FB_DIV_12 12
207#define FPGA_FB_DIV_20 20
208
209/* VCO Divisor selection */
210#define FPGA_VCO_DIV_4 4
211#define FPGA_VCO_DIV_6 6
212#define FPGA_VCO_DIV_8 8
213#define FPGA_VCO_DIV_10 10
214
215/*----------------------------------------------------------------------------+
216| FPGA registers and bit definitions
217+----------------------------------------------------------------------------*/
218/* PowerPC 440SPe Board FPGA is reached with physical address 0x1 E2000000. */
219/* TLB initialization makes it correspond to logical address 0xE2000000. */
220/* => Done init_chip.s in bootlib */
221#define FPGA_REG_BASE_ADDR 0xE2000000
222#define FPGA_GPIO_BASE_ADDR 0xE2010000
223#define FPGA_INT_BASE_ADDR 0xE2020000
224
225/*----------------------------------------------------------------------------+
226| Display
227+----------------------------------------------------------------------------*/
228#define PPC440SPE_DISPLAY FPGA_REG_BASE_ADDR
229
230#define PPC440SPE_DISPLAY_D8 (FPGA_REG_BASE_ADDR+0x06)
231#define PPC440SPE_DISPLAY_D4 (FPGA_REG_BASE_ADDR+0x04)
232#define PPC440SPE_DISPLAY_D2 (FPGA_REG_BASE_ADDR+0x02)
233#define PPC440SPE_DISPLAY_D1 (FPGA_REG_BASE_ADDR+0x00)
234/*define WRITE_DISPLAY_DIGIT(n) IOREG8(FPGA_REG_BASE_ADDR + (2*n))*/
235/*#define IOREG8(addr) *((volatile unsigned char *)(addr))*/
236
237/*----------------------------------------------------------------------------+
238| ethernet/reset/boot Register 1
239+----------------------------------------------------------------------------*/
240#define FPGA_REG10 (FPGA_REG_BASE_ADDR+0x10)
241
242#define FPGA_REG10_10MHZ_ENABLE 0x8000
243#define FPGA_REG10_100MHZ_ENABLE 0x4000
244#define FPGA_REG10_GIGABIT_ENABLE 0x2000
245#define FPGA_REG10_FULL_DUPLEX 0x1000 /* force Full Duplex*/
246#define FPGA_REG10_RESET_ETH 0x0800
247#define FPGA_REG10_AUTO_NEG_DIS 0x0400
248#define FPGA_REG10_INTP_ETH 0x0200
249
250#define FPGA_REG10_RESET_HISR 0x0080
251#define FPGA_REG10_ENABLE_DISPLAY 0x0040
252#define FPGA_REG10_RESET_SDRAM 0x0020
253#define FPGA_REG10_OPER_BOOT 0x0010
254#define FPGA_REG10_SRAM_BOOT 0x0008
255#define FPGA_REG10_SMALL_BOOT 0x0004
256#define FPGA_REG10_FORCE_COLA 0x0002
257#define FPGA_REG10_COLA_MANUAL 0x0001
258
259#define FPGA_REG10_SDRAM_ENABLE 0x0020
260
261#define FPGA_REG10_ENET_ENCODE2(n) ((((unsigned long)(n))&0x0F)<<4) /*from ocotea ?*/
262#define FPGA_REG10_ENET_DECODE2(n) ((((unsigned long)(n))>>4)&0x0F) /*from ocotea ?*/
263
264/*----------------------------------------------------------------------------+
265| MUX control
266+----------------------------------------------------------------------------*/
267#define FPGA_REG12 (FPGA_REG_BASE_ADDR+0x12)
268
269#define FPGA_REG12_EBC_CTL 0x8000
270#define FPGA_REG12_UART1_CTS_RTS 0x4000
271#define FPGA_REG12_UART0_RX_ENABLE 0x2000
272#define FPGA_REG12_UART1_RX_ENABLE 0x1000
273#define FPGA_REG12_UART2_RX_ENABLE 0x0800
274#define FPGA_REG12_EBC_OUT_ENABLE 0x0400
275#define FPGA_REG12_GPIO0_OUT_ENABLE 0x0200
276#define FPGA_REG12_GPIO1_OUT_ENABLE 0x0100
277#define FPGA_REG12_GPIO_SELECT 0x0010
278#define FPGA_REG12_GPIO_CHREG 0x0008
279#define FPGA_REG12_GPIO_CLK_CHREG 0x0004
280#define FPGA_REG12_GPIO_OETRI 0x0002
281#define FPGA_REG12_EBC_ERROR 0x0001
282
283/*----------------------------------------------------------------------------+
284| PCI Clock control
285+----------------------------------------------------------------------------*/
286#define FPGA_REG16 (FPGA_REG_BASE_ADDR+0x16)
287
288#define FPGA_REG16_PCI_CLK_CTL0 0x8000
289#define FPGA_REG16_PCI_CLK_CTL1 0x4000
290#define FPGA_REG16_PCI_CLK_CTL2 0x2000
291#define FPGA_REG16_PCI_CLK_CTL3 0x1000
292#define FPGA_REG16_PCI_CLK_CTL4 0x0800
293#define FPGA_REG16_PCI_CLK_CTL5 0x0400
294#define FPGA_REG16_PCI_CLK_CTL6 0x0200
295#define FPGA_REG16_PCI_CLK_CTL7 0x0100
296#define FPGA_REG16_PCI_CLK_CTL8 0x0080
297#define FPGA_REG16_PCI_CLK_CTL9 0x0040
298#define FPGA_REG16_PCI_EXT_ARB0 0x0020
299#define FPGA_REG16_PCI_MODE_1 0x0010
300#define FPGA_REG16_PCI_TARGET_MODE 0x0008
301#define FPGA_REG16_PCI_INTP_MODE 0x0004
302
303/* FB1 Divisor selection */
304#define FPGA_REG16_FB2_DIV_MASK 0x1000
305#define FPGA_REG16_FB2_DIV_LOW 0x0000
306#define FPGA_REG16_FB2_DIV_HIGH 0x1000
307/* FB2 Divisor selection */
308/* S3 switch on Board */
309#define FPGA_REG16_FB1_DIV_MASK 0x2000
310#define FPGA_REG16_FB1_DIV_LOW 0x0000
311#define FPGA_REG16_FB1_DIV_HIGH 0x2000
312/* PCI0 Clock Selection */
313/* S3 switch on Board */
314#define FPGA_REG16_PCI0_CLK_MASK 0x0c00
315#define FPGA_REG16_PCI0_CLK_33_33 0x0000
316#define FPGA_REG16_PCI0_CLK_66_66 0x0800
317#define FPGA_REG16_PCI0_CLK_100 0x0400
318#define FPGA_REG16_PCI0_CLK_133_33 0x0c00
319/* VCO Divisor selection */
320/* S3 switch on Board */
321#define FPGA_REG16_VCO_DIV_MASK 0xc000
322#define FPGA_REG16_VCO_DIV_4 0x0000
323#define FPGA_REG16_VCO_DIV_8 0x4000
324#define FPGA_REG16_VCO_DIV_6 0x8000
325#define FPGA_REG16_VCO_DIV_10 0xc000
326/* Master Clock Selection */
327/* S3, S4 switches on Board */
328#define FPGA_REG16_MASTER_CLK_MASK 0x01c0
329#define FPGA_REG16_MASTER_CLK_EXT 0x0000
330#define FPGA_REG16_MASTER_CLK_66_66 0x0040
331#define FPGA_REG16_MASTER_CLK_50 0x0080
332#define FPGA_REG16_MASTER_CLK_33_33 0x00c0
333#define FPGA_REG16_MASTER_CLK_25 0x0100
334
335/*----------------------------------------------------------------------------+
336| PCI Miscellaneous
337+----------------------------------------------------------------------------*/
338#define FPGA_REG18 (FPGA_REG_BASE_ADDR+0x18)
339
340#define FPGA_REG18_PCI_PRSNT1 0x8000
341#define FPGA_REG18_PCI_PRSNT2 0x4000
342#define FPGA_REG18_PCI_INTA 0x2000
343#define FPGA_REG18_PCI_SLOT0_INTP 0x1000
344#define FPGA_REG18_PCI_SLOT1_INTP 0x0800
345#define FPGA_REG18_PCI_SLOT2_INTP 0x0400
346#define FPGA_REG18_PCI_SLOT3_INTP 0x0200
347#define FPGA_REG18_PCI_PCI0_VC 0x0100
348#define FPGA_REG18_PCI_PCI0_VTH1 0x0080
349#define FPGA_REG18_PCI_PCI0_VTH2 0x0040
350#define FPGA_REG18_PCI_PCI0_VTH3 0x0020
351
352/*----------------------------------------------------------------------------+
353| PCIe Miscellaneous
354+----------------------------------------------------------------------------*/
355#define FPGA_REG1A (FPGA_REG_BASE_ADDR+0x1A)
356
357#define FPGA_REG1A_PE0_GLED 0x8000
358#define FPGA_REG1A_PE1_GLED 0x4000
359#define FPGA_REG1A_PE2_GLED 0x2000
360#define FPGA_REG1A_PE0_YLED 0x1000
361#define FPGA_REG1A_PE1_YLED 0x0800
362#define FPGA_REG1A_PE2_YLED 0x0400
363#define FPGA_REG1A_PE0_PWRON 0x0200
364#define FPGA_REG1A_PE1_PWRON 0x0100
365#define FPGA_REG1A_PE2_PWRON 0x0080
366#define FPGA_REG1A_PE0_REFCLK_ENABLE 0x0040
367#define FPGA_REG1A_PE1_REFCLK_ENABLE 0x0020
368#define FPGA_REG1A_PE2_REFCLK_ENABLE 0x0010
369#define FPGA_REG1A_PE_SPREAD0 0x0008
370#define FPGA_REG1A_PE_SPREAD1 0x0004
371#define FPGA_REG1A_PE_SELSOURCE_0 0x0002
372#define FPGA_REG1A_PE_SELSOURCE_1 0x0001
373
b0b86746
SR
374#define FPGA_REG1A_GLED_ENCODE(n) (FPGA_REG1A_PE0_GLED >> (n))
375#define FPGA_REG1A_YLED_ENCODE(n) (FPGA_REG1A_PE0_YLED >> (n))
376#define FPGA_REG1A_PWRON_ENCODE(n) (FPGA_REG1A_PE0_PWRON >> (n))
377#define FPGA_REG1A_REFCLK_ENCODE(n) (FPGA_REG1A_PE0_REFCLK_ENABLE >> (n))
378
6c5879f3
MB
379/*----------------------------------------------------------------------------+
380| PCIe Miscellaneous
381+----------------------------------------------------------------------------*/
382#define FPGA_REG1C (FPGA_REG_BASE_ADDR+0x1C)
383
384#define FPGA_REG1C_PE0_ROOTPOINT 0x8000
385#define FPGA_REG1C_PE1_ENDPOINT 0x4000
386#define FPGA_REG1C_PE2_ENDPOINT 0x2000
387#define FPGA_REG1C_PE0_PRSNT 0x1000
388#define FPGA_REG1C_PE1_PRSNT 0x0800
389#define FPGA_REG1C_PE2_PRSNT 0x0400
390#define FPGA_REG1C_PE0_WAKE 0x0080
391#define FPGA_REG1C_PE1_WAKE 0x0040
392#define FPGA_REG1C_PE2_WAKE 0x0020
393#define FPGA_REG1C_PE0_PERST 0x0010
692519b1
RJ
394#define FPGA_REG1C_PE1_PERST 0x0008
395#define FPGA_REG1C_PE2_PERST 0x0004
6c5879f3 396
b0b86746
SR
397#define FPGA_REG1C_ROOTPOINT_ENCODE(n) (FPGA_REG1C_PE0_ROOTPOINT >> (n))
398#define FPGA_REG1C_PERST_ENCODE(n) (FPGA_REG1C_PE0_PERST >> (n))
399
6c5879f3
MB
400/*----------------------------------------------------------------------------+
401| Defines
402+----------------------------------------------------------------------------*/
403#define PERIOD_133_33MHZ 7500 /* 7,5ns */
404#define PERIOD_100_00MHZ 10000 /* 10ns */
405#define PERIOD_83_33MHZ 12000 /* 12ns */
406#define PERIOD_75_00MHZ 13333 /* 13,333ns */
407#define PERIOD_66_66MHZ 15000 /* 15ns */
408#define PERIOD_50_00MHZ 20000 /* 20ns */
409#define PERIOD_33_33MHZ 30000 /* 30ns */
410#define PERIOD_25_00MHZ 40000 /* 40ns */
411
6c5879f3 412#endif /* __CONFIG_H */