]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/io/i2c/v2_0/cdl/i2c.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / io / i2c / v2_0 / cdl / i2c.cdl
1 # ====================================================================
2 #
3 #      i2c.cdl
4 #
5 #      Generic I2C 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-10-05
42 #
43 #####DESCRIPTIONEND####
44 #========================================================================
45
46 cdl_package CYGPKG_IO_I2C {
47     display             "I2C support"
48     requires            CYGPKG_INFRA CYGPKG_HAL
49     hardware
50     include_dir         cyg/io
51     compile             i2c.cxx
52     
53     description "
54         The generic I2C package provides an API for accessing devices
55         attached to an I2C bus. It specifies how I2C bus drivers should
56         be written and how I2C devices should be defined. There is also
57         support for bit-banged I2C buses."
58
59     cdl_option CYGNUM_I2C_INIT_PRIORITY {
60         display         "I2C initialization priority"
61         flavor          data
62         default_value   { "CYG_INIT_DRIVERS" }
63
64         description "
65             The generic I2C package will initialize each I2C bus during
66             system startup, using a prioritized static constructor. This
67             option controls the priority that is used. The default value,
68             CYG_INIT_DRIVERS, means that I2C buses get initialized early
69             on."
70     }
71
72     cdl_component CYGPKG_IO_I2C_OPTIONS {
73         display "I2C build options"
74         flavor  none
75         description   "
76             Package specific build options including control over
77             compiler flags used only in building the generic I2C
78             package, and details of which tests are built."
79
80         cdl_option CYGPKG_IO_I2C_CFLAGS_ADD {
81             display "Additional compiler flags"
82             flavor  data
83             no_define
84             default_value { "-fno-rtti -Woverloaded-virtual" }
85             description   "
86                 This option modifies the set of compiler flags for
87                 building the generic I2C package. These flags are
88                 used in addition to the set of global flags."
89         }
90
91         cdl_option CYGPKG_IO_I2C_CFLAGS_REMOVE {
92             display "Suppressed compiler flags"
93             flavor  data
94             no_define
95             default_value { "-Wno-pointer-sign" }
96             description   "
97                 This option modifies the set of compiler flags for
98                 building the generic I2C package. These flags are
99                 removed from the set of global flags if present."
100         }
101     }
102 }