~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/iio/frequency/ad9523.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/iio/frequency/ad9523.h (Architecture i386) and /include/linux/iio/frequency/ad9523.h (Architecture sparc64)


  1 /* SPDX-License-Identifier: GPL-2.0-only */         1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*                                                  2 /*
  3  * AD9523 SPI Low Jitter Clock Generator            3  * AD9523 SPI Low Jitter Clock Generator
  4  *                                                  4  *
  5  * Copyright 2012 Analog Devices Inc.               5  * Copyright 2012 Analog Devices Inc.
  6  */                                                 6  */
  7                                                     7 
  8 #ifndef IIO_FREQUENCY_AD9523_H_                     8 #ifndef IIO_FREQUENCY_AD9523_H_
  9 #define IIO_FREQUENCY_AD9523_H_                     9 #define IIO_FREQUENCY_AD9523_H_
 10                                                    10 
 11 enum outp_drv_mode {                               11 enum outp_drv_mode {
 12         TRISTATE,                                  12         TRISTATE,
 13         LVPECL_8mA,                                13         LVPECL_8mA,
 14         LVDS_4mA,                                  14         LVDS_4mA,
 15         LVDS_7mA,                                  15         LVDS_7mA,
 16         HSTL0_16mA,                                16         HSTL0_16mA,
 17         HSTL1_8mA,                                 17         HSTL1_8mA,
 18         CMOS_CONF1,                                18         CMOS_CONF1,
 19         CMOS_CONF2,                                19         CMOS_CONF2,
 20         CMOS_CONF3,                                20         CMOS_CONF3,
 21         CMOS_CONF4,                                21         CMOS_CONF4,
 22         CMOS_CONF5,                                22         CMOS_CONF5,
 23         CMOS_CONF6,                                23         CMOS_CONF6,
 24         CMOS_CONF7,                                24         CMOS_CONF7,
 25         CMOS_CONF8,                                25         CMOS_CONF8,
 26         CMOS_CONF9                                 26         CMOS_CONF9
 27 };                                                 27 };
 28                                                    28 
 29 enum ref_sel_mode {                                29 enum ref_sel_mode {
 30         NONEREVERTIVE_STAY_ON_REFB,                30         NONEREVERTIVE_STAY_ON_REFB,
 31         REVERT_TO_REFA,                            31         REVERT_TO_REFA,
 32         SELECT_REFA,                               32         SELECT_REFA,
 33         SELECT_REFB,                               33         SELECT_REFB,
 34         EXT_REF_SEL                                34         EXT_REF_SEL
 35 };                                                 35 };
 36                                                    36 
 37 /**                                                37 /**
 38  * struct ad9523_channel_spec - Output channel     38  * struct ad9523_channel_spec - Output channel configuration
 39  *                                                 39  *
 40  * @channel_num: Output channel number.            40  * @channel_num: Output channel number.
 41  * @divider_output_invert_en: Invert the polar     41  * @divider_output_invert_en: Invert the polarity of the output clock.
 42  * @sync_ignore_en: Ignore chip-level SYNC sig     42  * @sync_ignore_en: Ignore chip-level SYNC signal.
 43  * @low_power_mode_en: Reduce power used in th     43  * @low_power_mode_en: Reduce power used in the differential output modes.
 44  * @use_alt_clock_src: Channel divider uses al     44  * @use_alt_clock_src: Channel divider uses alternative clk source.
 45  * @output_dis: Disables, powers down the enti     45  * @output_dis: Disables, powers down the entire channel.
 46  * @driver_mode: Output driver mode (logic lev     46  * @driver_mode: Output driver mode (logic level family).
 47  * @divider_phase: Divider initial phase after     47  * @divider_phase: Divider initial phase after a SYNC. Range 0..63
 48                    LSB = 1/2 of a period of th     48                    LSB = 1/2 of a period of the divider input clock.
 49  * @channel_divider: 10-bit channel divider.       49  * @channel_divider: 10-bit channel divider.
 50  * @extended_name: Optional descriptive channe     50  * @extended_name: Optional descriptive channel name.
 51  */                                                51  */
 52                                                    52 
 53 struct ad9523_channel_spec {                       53 struct ad9523_channel_spec {
 54         unsigned                channel_num;       54         unsigned                channel_num;
 55         bool                    divider_output     55         bool                    divider_output_invert_en;
 56         bool                    sync_ignore_en     56         bool                    sync_ignore_en;
 57         bool                    low_power_mode     57         bool                    low_power_mode_en;
 58                                  /* CH0..CH3 V     58                                  /* CH0..CH3 VCXO, CH4..CH9 VCO2 */
 59         bool                    use_alt_clock_     59         bool                    use_alt_clock_src;
 60         bool                    output_dis;        60         bool                    output_dis;
 61         enum outp_drv_mode      driver_mode;       61         enum outp_drv_mode      driver_mode;
 62         unsigned char           divider_phase;     62         unsigned char           divider_phase;
 63         unsigned short          channel_divide     63         unsigned short          channel_divider;
 64         char                    extended_name[     64         char                    extended_name[16];
 65 };                                                 65 };
 66                                                    66 
 67 enum pll1_rzero_resistor {                         67 enum pll1_rzero_resistor {
 68         RZERO_883_OHM,                             68         RZERO_883_OHM,
 69         RZERO_677_OHM,                             69         RZERO_677_OHM,
 70         RZERO_341_OHM,                             70         RZERO_341_OHM,
 71         RZERO_135_OHM,                             71         RZERO_135_OHM,
 72         RZERO_10_OHM,                              72         RZERO_10_OHM,
 73         RZERO_USE_EXT_RES = 8,                     73         RZERO_USE_EXT_RES = 8,
 74 };                                                 74 };
 75                                                    75 
 76 enum rpole2_resistor {                             76 enum rpole2_resistor {
 77         RPOLE2_900_OHM,                            77         RPOLE2_900_OHM,
 78         RPOLE2_450_OHM,                            78         RPOLE2_450_OHM,
 79         RPOLE2_300_OHM,                            79         RPOLE2_300_OHM,
 80         RPOLE2_225_OHM,                            80         RPOLE2_225_OHM,
 81 };                                                 81 };
 82                                                    82 
 83 enum rzero_resistor {                              83 enum rzero_resistor {
 84         RZERO_3250_OHM,                            84         RZERO_3250_OHM,
 85         RZERO_2750_OHM,                            85         RZERO_2750_OHM,
 86         RZERO_2250_OHM,                            86         RZERO_2250_OHM,
 87         RZERO_2100_OHM,                            87         RZERO_2100_OHM,
 88         RZERO_3000_OHM,                            88         RZERO_3000_OHM,
 89         RZERO_2500_OHM,                            89         RZERO_2500_OHM,
 90         RZERO_2000_OHM,                            90         RZERO_2000_OHM,
 91         RZERO_1850_OHM,                            91         RZERO_1850_OHM,
 92 };                                                 92 };
 93                                                    93 
 94 enum cpole1_capacitor {                            94 enum cpole1_capacitor {
 95         CPOLE1_0_PF,                               95         CPOLE1_0_PF,
 96         CPOLE1_8_PF,                               96         CPOLE1_8_PF,
 97         CPOLE1_16_PF,                              97         CPOLE1_16_PF,
 98         CPOLE1_24_PF,                              98         CPOLE1_24_PF,
 99         _CPOLE1_24_PF, /* place holder */          99         _CPOLE1_24_PF, /* place holder */
100         CPOLE1_32_PF,                             100         CPOLE1_32_PF,
101         CPOLE1_40_PF,                             101         CPOLE1_40_PF,
102         CPOLE1_48_PF,                             102         CPOLE1_48_PF,
103 };                                                103 };
104                                                   104 
105 /**                                               105 /**
106  * struct ad9523_platform_data - platform spec    106  * struct ad9523_platform_data - platform specific information
107  *                                                107  *
108  * @vcxo_freq: External VCXO frequency in Hz      108  * @vcxo_freq: External VCXO frequency in Hz
109  * @refa_diff_rcv_en: REFA differential/single    109  * @refa_diff_rcv_en: REFA differential/single-ended input selection.
110  * @refb_diff_rcv_en: REFB differential/single    110  * @refb_diff_rcv_en: REFB differential/single-ended input selection.
111  * @zd_in_diff_en: Zero Delay differential/sin    111  * @zd_in_diff_en: Zero Delay differential/single-ended input selection.
112  * @osc_in_diff_en: OSC differential/ single-e    112  * @osc_in_diff_en: OSC differential/ single-ended input selection.
113  * @refa_cmos_neg_inp_en: REFA single-ended ne    113  * @refa_cmos_neg_inp_en: REFA single-ended neg./pos. input enable.
114  * @refb_cmos_neg_inp_en: REFB single-ended ne    114  * @refb_cmos_neg_inp_en: REFB single-ended neg./pos. input enable.
115  * @zd_in_cmos_neg_inp_en: Zero Delay single-e    115  * @zd_in_cmos_neg_inp_en: Zero Delay single-ended neg./pos. input enable.
116  * @osc_in_cmos_neg_inp_en: OSC single-ended n    116  * @osc_in_cmos_neg_inp_en: OSC single-ended neg./pos. input enable.
117  * @refa_r_div: PLL1 10-bit REFA R divider.       117  * @refa_r_div: PLL1 10-bit REFA R divider.
118  * @refb_r_div: PLL1 10-bit REFB R divider.       118  * @refb_r_div: PLL1 10-bit REFB R divider.
119  * @pll1_feedback_div: PLL1 10-bit Feedback N     119  * @pll1_feedback_div: PLL1 10-bit Feedback N divider.
120  * @pll1_charge_pump_current_nA: Magnitude of     120  * @pll1_charge_pump_current_nA: Magnitude of PLL1 charge pump current (nA).
121  * @zero_delay_mode_internal_en: Internal, ext    121  * @zero_delay_mode_internal_en: Internal, external Zero Delay mode selection.
122  * @osc_in_feedback_en: PLL1 feedback path, lo    122  * @osc_in_feedback_en: PLL1 feedback path, local feedback from
123  *                      the OSC_IN receiver or    123  *                      the OSC_IN receiver or zero delay mode
124  * @pll1_loop_filter_rzero: PLL1 Loop Filter Z    124  * @pll1_loop_filter_rzero: PLL1 Loop Filter Zero Resistor selection.
125  * @ref_mode: Reference selection mode.           125  * @ref_mode: Reference selection mode.
126  * @pll2_charge_pump_current_nA: Magnitude of     126  * @pll2_charge_pump_current_nA: Magnitude of PLL2 charge pump current (nA).
127  * @pll2_ndiv_a_cnt: PLL2 Feedback N-divider,     127  * @pll2_ndiv_a_cnt: PLL2 Feedback N-divider, A Counter, range 0..4.
128  * @pll2_ndiv_b_cnt: PLL2 Feedback N-divider,     128  * @pll2_ndiv_b_cnt: PLL2 Feedback N-divider, B Counter, range 0..63.
129  * @pll2_freq_doubler_en: PLL2 frequency doubl    129  * @pll2_freq_doubler_en: PLL2 frequency doubler enable.
130  * @pll2_r2_div: PLL2 R2 divider, range 0..31.    130  * @pll2_r2_div: PLL2 R2 divider, range 0..31.
131  * @pll2_vco_div_m1: VCO1 divider, range 3..5.    131  * @pll2_vco_div_m1: VCO1 divider, range 3..5.
132  * @pll2_vco_div_m2: VCO2 divider, range 3..5.    132  * @pll2_vco_div_m2: VCO2 divider, range 3..5.
133  * @rpole2: PLL2 loop filter Rpole resistor va    133  * @rpole2: PLL2 loop filter Rpole resistor value.
134  * @rzero: PLL2 loop filter Rzero resistor val    134  * @rzero: PLL2 loop filter Rzero resistor value.
135  * @cpole1: PLL2 loop filter Cpole capacitor v    135  * @cpole1: PLL2 loop filter Cpole capacitor value.
136  * @rzero_bypass_en: PLL2 loop filter Rzero by    136  * @rzero_bypass_en: PLL2 loop filter Rzero bypass enable.
137  * @num_channels: Array size of struct ad9523_    137  * @num_channels: Array size of struct ad9523_channel_spec.
138  * @channels: Pointer to channel array.           138  * @channels: Pointer to channel array.
139  * @name: Optional alternative iio device name    139  * @name: Optional alternative iio device name.
140  */                                               140  */
141                                                   141 
142 struct ad9523_platform_data {                     142 struct ad9523_platform_data {
143         unsigned long vcxo_freq;                  143         unsigned long vcxo_freq;
144                                                   144 
145         /* Differential/ Single-Ended Input Co    145         /* Differential/ Single-Ended Input Configuration */
146         bool                            refa_d    146         bool                            refa_diff_rcv_en;
147         bool                            refb_d    147         bool                            refb_diff_rcv_en;
148         bool                            zd_in_    148         bool                            zd_in_diff_en;
149         bool                            osc_in    149         bool                            osc_in_diff_en;
150                                                   150 
151         /*                                        151         /*
152          * Valid if differential input disable    152          * Valid if differential input disabled
153          * if false defaults to pos input         153          * if false defaults to pos input
154          */                                       154          */
155         bool                            refa_c    155         bool                            refa_cmos_neg_inp_en;
156         bool                            refb_c    156         bool                            refb_cmos_neg_inp_en;
157         bool                            zd_in_    157         bool                            zd_in_cmos_neg_inp_en;
158         bool                            osc_in    158         bool                            osc_in_cmos_neg_inp_en;
159                                                   159 
160         /* PLL1 Setting */                        160         /* PLL1 Setting */
161         unsigned short                  refa_r    161         unsigned short                  refa_r_div;
162         unsigned short                  refb_r    162         unsigned short                  refb_r_div;
163         unsigned short                  pll1_f    163         unsigned short                  pll1_feedback_div;
164         unsigned short                  pll1_c    164         unsigned short                  pll1_charge_pump_current_nA;
165         bool                            zero_d    165         bool                            zero_delay_mode_internal_en;
166         bool                            osc_in    166         bool                            osc_in_feedback_en;
167         enum pll1_rzero_resistor        pll1_l    167         enum pll1_rzero_resistor        pll1_loop_filter_rzero;
168                                                   168 
169         /* Reference */                           169         /* Reference */
170         enum ref_sel_mode               ref_mo    170         enum ref_sel_mode               ref_mode;
171                                                   171 
172         /* PLL2 Setting */                        172         /* PLL2 Setting */
173         unsigned int                    pll2_c    173         unsigned int                    pll2_charge_pump_current_nA;
174         unsigned char                   pll2_n    174         unsigned char                   pll2_ndiv_a_cnt;
175         unsigned char                   pll2_n    175         unsigned char                   pll2_ndiv_b_cnt;
176         bool                            pll2_f    176         bool                            pll2_freq_doubler_en;
177         unsigned char                   pll2_r    177         unsigned char                   pll2_r2_div;
178         unsigned char                   pll2_v    178         unsigned char                   pll2_vco_div_m1; /* 3..5 */
179         unsigned char                   pll2_v    179         unsigned char                   pll2_vco_div_m2; /* 3..5 */
180                                                   180 
181         /* Loop Filter PLL2 */                    181         /* Loop Filter PLL2 */
182         enum rpole2_resistor            rpole2    182         enum rpole2_resistor            rpole2;
183         enum rzero_resistor             rzero;    183         enum rzero_resistor             rzero;
184         enum cpole1_capacitor           cpole1    184         enum cpole1_capacitor           cpole1;
185         bool                            rzero_    185         bool                            rzero_bypass_en;
186                                                   186 
187         /* Output Channel Configuration */        187         /* Output Channel Configuration */
188         int                             num_ch    188         int                             num_channels;
189         struct ad9523_channel_spec      *chann    189         struct ad9523_channel_spec      *channels;
190                                                   190 
191         char                            name[S    191         char                            name[SPI_NAME_SIZE];
192 };                                                192 };
193                                                   193 
194 #endif /* IIO_FREQUENCY_AD9523_H_ */              194 #endif /* IIO_FREQUENCY_AD9523_H_ */
195                                                   195 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php