diff options
| author | Charles.Forsyth <devnull@localhost> | 2006-12-22 21:39:35 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2006-12-22 21:39:35 +0000 |
| commit | 74a4d8c26dd3c1e9febcb717cfd6cb6512991a7a (patch) | |
| tree | c6e220ba61db3a6ea4052e6841296d829654e664 /os/ipengine/archipe.h | |
| parent | 46439007cf417cbd9ac8049bb4122c890097a0fa (diff) | |
20060303
Diffstat (limited to 'os/ipengine/archipe.h')
| -rw-r--r-- | os/ipengine/archipe.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/os/ipengine/archipe.h b/os/ipengine/archipe.h new file mode 100644 index 00000000..575f7d8d --- /dev/null +++ b/os/ipengine/archipe.h @@ -0,0 +1,32 @@ +/* + * values for Brightstar Engineering ipEngine + */ +enum { + /* CS assignment */ + BOOTCS = 0, /* flash */ + FPGACS = 1, /* 8Mb FPGA space */ + DRAMCS = 2, + FPGACONFCS = 3, /* FPGA config */ + CLOCKCS = 4, /* clock synth reg */ +}; + +enum { + /* port A pins */ + VCLK= SIBIT(5), + BCLK= SIBIT(4), + + /* port B */ + EnableVCLK= IBIT(30), + EnableEnet= IBIT(29), + EnableRS232= IBIT(28), + EnetFullDuplex= IBIT(16), + + /* port C */ + nCONFIG = SIBIT(13), /* FPGA configuration */ + USBFullSpeed= SIBIT(12), + PDN= SIBIT(5), /* ? seems to control power to FPGA subsystem? */ + EnetLoopback= SIBIT(4), + + /* nSTATUS is ip_b1, conf_done is ip_b0 in PIPR (hardware doc wrongly says ip_b2 and ip_b1) */ + +}; |
