OpenCores
URL https://opencores.org/ocsvn/spi/spi/trunk

Subversion Repositories spi

[/] [spi/] [tags/] [rel_1/] [rtl/] [verilog/] [spi_defines.v] - Blame information for rev 27

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 simons
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  spi_define.v                                                ////
4
////                                                              ////
5
////  This file is part of the SPI IP core project                ////
6
////  http://www.opencores.org/projects/spi/                      ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Simon Srot (simons@opencores.org)                     ////
10
////                                                              ////
11
////  All additional information is avaliable in the Readme.txt   ////
12
////  file.                                                       ////
13
////                                                              ////
14
//////////////////////////////////////////////////////////////////////
15
////                                                              ////
16
//// Copyright (C) 2002 Authors                                   ////
17
////                                                              ////
18
//// This source file may be used and distributed without         ////
19
//// restriction provided that this copyright statement is not    ////
20
//// removed from the file and that any derivative work contains  ////
21
//// the original copyright notice and the associated disclaimer. ////
22
////                                                              ////
23
//// This source file is free software; you can redistribute it   ////
24
//// and/or modify it under the terms of the GNU Lesser General   ////
25
//// Public License as published by the Free Software Foundation; ////
26
//// either version 2.1 of the License, or (at your option) any   ////
27
//// later version.                                               ////
28
////                                                              ////
29
//// This source is distributed in the hope that it will be       ////
30
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
31
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
32
//// PURPOSE.  See the GNU Lesser General Public License for more ////
33
//// details.                                                     ////
34
////                                                              ////
35
//// You should have received a copy of the GNU Lesser General    ////
36
//// Public License along with this source; if not, download it   ////
37
//// from http://www.opencores.org/lgpl.shtml                     ////
38
////                                                              ////
39
//////////////////////////////////////////////////////////////////////
40
 
41
//
42
// Number of bits used for devider register. If used in system with
43
// low frequency of system clock this can be reduced.
44
// Default is 16.
45
//
46
`define SPI_DIVIDER_BIT_NB      16
47
 
48
//
49
// Maximum nuber of bits that can be send/received at once. Alloved values are
50
// 32, 16 and 8. SPI_CHAR_LEN_BITS must be also set to 5, 4 or 3 respectively.
51
// Default is 32.
52
//
53
`define SPI_MAX_CHAR            32
54
`define SPI_CHAR_LEN_BITS       5
55
 
56
//
57
// Number of device select signals.
58
//
59
`define SPI_SS_NB               8
60
//
61
// Bits of WISHBONE address used for partial decoding of SPI registers.
62
//
63
`define SPI_OFS_BITS              3:2
64
 
65
//
66
// Register offset
67
//
68
`define SPI_RX                  0
69
`define SPI_TX                  0
70
`define SPI_CTRL                1
71
`define SPI_DEVIDE              2
72
`define SPI_SS                  3
73
 
74
//
75
// Number of bits in ctrl register
76
//
77
`define SPI_CTRL_BIT_NB         10
78
 
79
//
80
// Control register bit position
81
//
82
`define SPI_CTRL_IE             9
83
`define SPI_CTRL_LSB            8
84
`define SPI_CTRL_CHAR_LEN       7:3
85
`define SPI_CTRL_TX_NEGEDGE     2
86
`define SPI_CTRL_RX_NEGEDGE     1
87
`define SPI_CTRL_GO             0
88
 
89
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.