Lines Matching refs:limit
21 u32 limit;
23 limit = ccu->range - sizeof(u32);
24 limit = round_down(limit, sizeof(u32));
26 if (ccu_policy->enable.offset > limit) {
29 ccu->name, ccu_policy->enable.offset, limit);
32 if (ccu_policy->control.offset > limit) {
35 ccu->name, ccu_policy->control.offset, limit);
80 u32 limit;
87 limit = range - sizeof(u32);
88 limit = round_down(limit, sizeof(u32));
92 if (policy->offset > limit) {
94 __func__, name, policy->offset, limit);
102 if (gate->offset > limit) {
104 __func__, name, gate->offset, limit);
109 if (hyst->offset > limit) {
112 name, hyst->offset, limit);
123 if (div->u.s.offset > limit) {
125 __func__, name, div->u.s.offset, limit);
132 if (div->u.s.offset > limit) {
135 __func__, name, div->u.s.offset, limit);
142 if (sel->offset > limit) {
144 __func__, name, sel->offset, limit);
151 if (trig->offset > limit) {
153 __func__, name, trig->offset, limit);
160 if (trig->offset > limit) {
162 __func__, name, trig->offset, limit);
174 u32 limit = BITS_PER_BYTE * sizeof(u32) - 1;
176 if (bit_posn > limit) {
178 field_name, clock_name, bit_posn, limit);
194 u32 limit = BITS_PER_BYTE * sizeof(u32);
201 if (shift + width > limit) {
203 field_name, clock_name, shift, width, limit);
291 u32 limit;
302 limit = (1 << sel->width) - 1;
303 if (max_sel > limit) {
365 u32 limit;
377 limit = BITS_PER_BYTE * sizeof(u32);
379 return div->u.s.frac_width + pre_div->u.s.frac_width <= limit;
558 /* Avoid exceeding our parent clock limit */