]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/siemens/SCM/scm.h
imported Freescale specific U-Boot additions for i.MX28,... release L2.6.31_10.08.01
[karo-tx-uboot.git] / board / siemens / SCM / scm.h
1 /*
2  * (C) Copyright 2001
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #ifndef __SCM_H
25 #define __SCM_H
26
27 /*----------------*/
28 /* CAN Structures */
29 /*----------------*/
30
31 /* Message */
32 struct can_msg {
33     uchar       ctrl_0;
34     uchar       ctrl_1;
35     uchar       arbit_0;
36     uchar       arbit_1;
37     uchar       arbit_2;
38     uchar       arbit_3;
39     uchar       config;
40     uchar       data[8];
41 } __attribute__ ((packed));
42
43 typedef struct can_msg can_msg_t;
44
45 /* CAN Register */
46 typedef struct can_reg {
47     uchar       ctrl;
48     uchar       status;
49     uchar       cpu_interface;
50     uchar       resv0;
51     ushort      high_speed_rd;
52     ushort      gbl_mask_std;
53     uint        gbl_mask_extd;
54     uint        msg15_mask;
55     can_msg_t   msg1;
56     uchar       clkout;
57     can_msg_t   msg2;
58     uchar       bus_config;
59     can_msg_t   msg3;
60     uchar       bit_timing_0;
61     can_msg_t   msg4;
62     uchar       bit_timing_1;
63     can_msg_t   msg5;
64     uchar       interrupt;
65     can_msg_t   msg6;
66     uchar       resv1;
67     can_msg_t   msg7;
68     uchar       resv2;
69     can_msg_t   msg8;
70     uchar       resv3;
71     can_msg_t   msg9;
72     uchar       p1conf;
73     can_msg_t   msg10;
74     uchar       p2conf;
75     can_msg_t   msg11;
76     uchar       p1in;
77     can_msg_t   msg12;
78     uchar       p2in;
79     can_msg_t   msg13;
80     uchar       p1out;
81     can_msg_t   msg14;
82     uchar       p2out;
83     can_msg_t   msg15;
84     uchar       ser_res_addr;
85     uchar       resv_cs[0x8000-0x100];  /* 0x8000 is the min size for CS */
86 } can_reg_t;
87
88
89 #endif /* __SCM_H */