]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/io/spi/v2_0/cdl/spi.cdl
Initial revision
[karo-tx-redboot.git] / packages / io / spi / v2_0 / cdl / spi.cdl
1 # ====================================================================
2 #
3 #      spi.cdl
4 #
5 #      Generic SPI package configuration data
6 #
7 # ====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 2004 eCosCentric Limited
12 ##
13 ## eCos is free software; you can redistribute it and/or modify it under
14 ## the terms of the GNU General Public License as published by the Free
15 ## Software Foundation; either version 2 or (at your option) any later version.
16 ##
17 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 ## for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License along
23 ## with eCos; if not, write to the Free Software Foundation, Inc.,
24 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 ##
26 ## As a special exception, if other files instantiate templates or use macros
27 ## or inline functions from this file, or you compile this file and link it
28 ## with other works to produce a work based on this file, this file does not
29 ## by itself cause the resulting work to be covered by the GNU General Public
30 ## License. However the source code for this file must still be made available
31 ## in accordance with section (3) of the GNU General Public License.
32 ##
33 ## This exception does not invalidate any other reasons why a work based on
34 ## this file might be covered by the GNU General Public License.
35 ## -------------------------------------------
36 #####ECOSGPLCOPYRIGHTEND####
37 # ====================================================================
38 ######DESCRIPTIONBEGIN####
39 #
40 # Author(s):     bartv
41 # Date:          2004-04-24
42 #
43 #####DESCRIPTIONEND####
44 #========================================================================
45
46 cdl_package CYGPKG_IO_SPI {
47     display             "SPI support"
48     requires            CYGPKG_INFRA CYGPKG_HAL
49     hardware
50     include_dir         cyg/io
51     compile             spi.c
52     
53     description "
54         The generic SPI package provides an API for accessing devices
55         attached to an SPI bus. It also provides support for writing
56         bus drivers and for defining SPI device structures."
57
58     
59     cdl_component CYGPKG_IO_SPI_OPTIONS {
60         display "SPI build options"
61         flavor  none
62         description   "
63             Package specific build options including control over
64             compiler flags used only in building this package,
65             and details of which tests are built."
66
67
68         cdl_option CYGPKG_IO_SPI_CFLAGS_ADD {
69             display "Additional compiler flags"
70             flavor  data
71             no_define
72             default_value { "" }
73             description   "
74                 This option modifies the set of compiler flags for
75                 building the serial device drivers. These flags are used in addition
76                 to the set of global flags."
77         }
78
79         cdl_option CYGPKG_IO_SPI_CFLAGS_REMOVE {
80             display "Suppressed compiler flags"
81             flavor  data
82             no_define
83             default_value { "" }
84             description   "
85                 This option modifies the set of compiler flags for
86                 building the serial device drivers. These flags are removed from
87                 the set of global flags if present."
88         }
89     }
90 }