OLD | NEW |
1 // ------------------------------------------------------------------ | |
2 // Copyright (c) 2004-2007 Atheros Corporation. All rights reserved. | |
3 // | |
4 // This program is free software; you can redistribute it and/or modify | |
5 // it under the terms of the GNU General Public License version 2 as | |
6 // published by the Free Software Foundation; | |
7 // | |
8 // Software distributed under the License is distributed on an "AS | |
9 // IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | |
10 // implied. See the License for the specific language governing | |
11 // rights and limitations under the License. | |
12 // | |
13 // | |
14 // ------------------------------------------------------------------ | |
15 //=================================================================== | |
16 // Author(s): ="Atheros" | |
17 //=================================================================== | |
18 | |
19 | |
20 #ifndef _ANALOG_REG_REG_H_ | 1 #ifndef _ANALOG_REG_REG_H_ |
21 #define _ANALOG_REG_REG_H_ | 2 #define _ANALOG_REG_REG_H_ |
22 | 3 |
23 #define SYNTH_SYNTH1_ADDRESS 0x00000000 | 4 #define SYNTH_SYNTH1_ADDRESS 0x00000000 |
24 #define SYNTH_SYNTH1_OFFSET 0x00000000 | 5 #define SYNTH_SYNTH1_OFFSET 0x00000000 |
25 #define SYNTH_SYNTH1_PWD_BIAS_MSB 31 | 6 #define SYNTH_SYNTH1_PWD_BIAS_MSB 31 |
26 #define SYNTH_SYNTH1_PWD_BIAS_LSB 31 | 7 #define SYNTH_SYNTH1_PWD_BIAS_LSB 31 |
27 #define SYNTH_SYNTH1_PWD_BIAS_MASK 0x80000000 | 8 #define SYNTH_SYNTH1_PWD_BIAS_MASK 0x80000000 |
28 #define SYNTH_SYNTH1_PWD_BIAS_GET(x) (((x) & SYNTH_SYNTH1_PWD_BIAS_M
ASK) >> SYNTH_SYNTH1_PWD_BIAS_LSB) | 9 #define SYNTH_SYNTH1_PWD_BIAS_GET(x) (((x) & SYNTH_SYNTH1_PWD_BIAS_M
ASK) >> SYNTH_SYNTH1_PWD_BIAS_LSB) |
29 #define SYNTH_SYNTH1_PWD_BIAS_SET(x) (((x) << SYNTH_SYNTH1_PWD_BIAS_
LSB) & SYNTH_SYNTH1_PWD_BIAS_MASK) | 10 #define SYNTH_SYNTH1_PWD_BIAS_SET(x) (((x) << SYNTH_SYNTH1_PWD_BIAS_
LSB) & SYNTH_SYNTH1_PWD_BIAS_MASK) |
(...skipping 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1942 volatile unsigned int rxtxbb_rxtxbb1; | 1923 volatile unsigned int rxtxbb_rxtxbb1; |
1943 volatile unsigned int rxtxbb_rxtxbb2; | 1924 volatile unsigned int rxtxbb_rxtxbb2; |
1944 volatile unsigned int rxtxbb_rxtxbb3; | 1925 volatile unsigned int rxtxbb_rxtxbb3; |
1945 volatile unsigned int rxtxbb_rxtxbb4; | 1926 volatile unsigned int rxtxbb_rxtxbb4; |
1946 volatile unsigned int addac_addac1; | 1927 volatile unsigned int addac_addac1; |
1947 } analog_reg_reg_t; | 1928 } analog_reg_reg_t; |
1948 | 1929 |
1949 #endif /* __ASSEMBLER__ */ | 1930 #endif /* __ASSEMBLER__ */ |
1950 | 1931 |
1951 #endif /* _ANALOG_REG_H_ */ | 1932 #endif /* _ANALOG_REG_H_ */ |
OLD | NEW |