Home
last modified time | relevance | path

Searched refs:range (Results 1 – 25 of 182) sorted by relevance

12345678

/rk3399_rockchip-uboot/drivers/core/
H A Dregmap.c29 map->range = &map->base_range; in regmap_alloc_count()
31 map->range = malloc(count * sizeof(struct regmap_range)); in regmap_alloc_count()
32 if (!map->range) { in regmap_alloc_count()
46 struct regmap_range *range; in regmap_init_mem_platdata() local
54 for (range = map->range; count > 0; reg += 2, range++, count--) { in regmap_init_mem_platdata()
55 range->start = *reg; in regmap_init_mem_platdata()
56 range->size = reg[1]; in regmap_init_mem_platdata()
66 struct regmap_range *range; in regmap_init_mem() local
91 for (range = map->range, index = 0; count > 0; in regmap_init_mem()
92 count--, range++, index++) { in regmap_init_mem()
[all …]
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dsama5d2.dtsi91 atmel,clk-input-range = <12000000 12000000>;
92 #atmel,pll-clk-output-range-cells = <4>;
132 atmel,clk-output-range = <124000000 166000000>;
237 atmel,clk-output-range = <0 83000000>;
243 atmel,clk-output-range = <0 83000000>;
259 atmel,clk-output-range = <0 83000000>;
266 atmel,clk-output-range = <0 83000000>;
272 atmel,clk-output-range = <0 83000000>;
278 atmel,clk-output-range = <0 83000000>;
284 atmel,clk-output-range = <0 83000000>;
[all …]
H A Dat91sam9g20.dtsi44 atmel,clk-input-range = <2000000 32000000>;
57 atmel,clk-input-range = <2000000 32000000>;
62 atmel,clk-output-range = <0 133000000>;
H A Dsama5d3_can.dtsi40 atmel,clk-output-range = <0 66000000>;
46 atmel,clk-output-range = <0 66000000>;
H A Dsama5d3_uart.dtsi45 atmel,clk-output-range = <0 66000000>;
51 atmel,clk-output-range = <0 66000000>;
/rk3399_rockchip-uboot/test/dm/
H A Dregmap.c30 ut_asserteq(0x10, map->range->start); in dm_test_regmap_base()
31 ut_asserteq(4, map->range->size); in dm_test_regmap_base()
32 ut_asserteq_ptr(&map->base_range, map->range); in dm_test_regmap_base()
40 ut_assert(&map->base_range != map->range); in dm_test_regmap_base()
44 ut_asserteq(addr, map->range[i].start); in dm_test_regmap_base()
45 ut_asserteq(5 + i, map->range[i].size); in dm_test_regmap_base()
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/
H A DKconfig18 int "USE_MSR_INSTR range (0:1)"
22 int "USE_PCMP_INSTR range (0:1)"
26 int "USE_BARREL range (0:1)"
30 int "USE_DIV range (0:1)"
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/
H A Dportals.c101 u32 *range; in fdt_portal() local
105 range = fdt_getprop_w(blob, off, "ranges", &len); in fdt_portal()
106 if (range == NULL) { in fdt_portal()
111 range[0] = 0; in fdt_portal()
113 range[1] = addr >> 32; in fdt_portal()
114 range[2] = addr & 0xffffffff; in fdt_portal()
115 range[3] = size; in fdt_portal()
117 range[1] = addr & 0xffffffff; in fdt_portal()
118 range[2] = size; in fdt_portal()
120 fdt_setprop_inplace(blob, off, "ranges", range, len); in fdt_portal()
/rk3399_rockchip-uboot/drivers/led/
H A DKconfig118 range LED_STATUS_OFF LED_STATUS_ON
128 range 2 10
133 Values range: 2 - 10
153 range LED_STATUS_OFF LED_STATUS_ON
163 range 2 10
168 Values range: 2 - 10
188 range LED_STATUS_OFF LED_STATUS_ON
198 range 2 10
203 Values range: 2 - 10
223 range LED_STATUS_OFF LED_STATUS_ON
[all …]
/rk3399_rockchip-uboot/lib/lzma/
H A DLzmaDec.c20 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
22 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code…
23 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits…
24 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
50 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
52 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * t…
53 #define UPDATE_0_CHECK range = bound;
54 #define UPDATE_1_CHECK range -= bound; code -= bound;
153 UInt32 range = p->range; in LzmaDec_DecodeReal() local
343 range >>= 1; in LzmaDec_DecodeReal()
[all …]
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/
H A Dmake_fit_atf.py109 for i in range(1, atf_cnt):
152 for i in range(uboot.num_segments()):
164 for i in range(bl31.num_segments()):
184 for i in range(num):
202 for i in range(num):
/rk3399_rockchip-uboot/drivers/power/regulator/
H A Dsandbox.c83 struct output_range *range) in out_get_value() argument
102 ret = REG2VAL(range[dev->driver_data - 1].min, in out_get_value()
103 range[dev->driver_data - 1].step, in out_get_value()
110 struct output_range *range, int value) in out_set_value() argument
123 max_value = range[dev->driver_data - 1].max; in out_set_value()
130 reg_val = VAL2REG(range[dev->driver_data - 1].min, in out_set_value()
131 range[dev->driver_data - 1].step, in out_set_value()
H A Dpalmas_regulator.c103 static int palmas_smps_hex2volt(int hex, bool range) in palmas_smps_hex2volt() argument
115 if (range) in palmas_smps_hex2volt()
125 bool range; in palmas_smps_val() local
141 range = true; in palmas_smps_val()
143 range = false; in palmas_smps_val()
146 ret = palmas_smps_hex2volt(ret, range); in palmas_smps_val()
/rk3399_rockchip-uboot/drivers/gpio/
H A Dsh_pfc.c327 struct pinmux_range *range; in pinmux_config_gpio() local
334 range = NULL; in pinmux_config_gpio()
338 range = &gpioc->output; in pinmux_config_gpio()
342 range = &gpioc->input; in pinmux_config_gpio()
346 range = &gpioc->input_pu; in pinmux_config_gpio()
350 range = &gpioc->input_pd; in pinmux_config_gpio()
373 if (range) { in pinmux_config_gpio()
382 in_range = enum_in_range(enum_id, range); in pinmux_config_gpio()
389 if (in_range && enum_id == range->force) in pinmux_config_gpio()
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/
H A Dtables.c44 struct cb_memory_range *range = in cb_parse_memory() local
48 UNPACK_CB64(range->start); in cb_parse_memory()
51 UNPACK_CB64(range->size); in cb_parse_memory()
53 info->memrange[info->n_memranges].type = range->type; in cb_parse_memory()
/rk3399_rockchip-uboot/doc/device-tree-bindings/gpio/
H A Dgpio.txt146 gpio-range-list ::= <single-gpio-range> [gpio-range-list]
147 single-gpio-range ::= <numeric-gpio-range> | <named-gpio-range>
148 numeric-gpio-range ::=
150 named-gpio-range ::= <pinctrl-phandle> <gpio-base> '<0 0>'
154 count : The number of GPIOs/pins in this range
161 for every single-gpio-range in gpio-ranges:
163 gpiorange-name : Name of the pingroup associated to the GPIO range in
169 controller. The number of pins/GPIOs in the range is the number of pins in
174 #gpio-range-cells with value <3>. This requirement is now deprecated.
H A Dbcm2835-gpio.txt5 - reg: exactly one register range with length 0xb4
/rk3399_rockchip-uboot/tools/binman/etype/
H A Dintel_descriptor.py18 REGION_PDATA) = range(5)
47 for i in range(MAX_REGIONS):
/rk3399_rockchip-uboot/board/birdland/bav335x/
H A DKconfig17 range 1 6
27 range 1 2
/rk3399_rockchip-uboot/doc/device-tree-bindings/video/
H A Dexynos-dp.txt39 samsung,dynamic-range: dynamic range for input video data
66 samsung,dynamic-range = <0>;
/rk3399_rockchip-uboot/board/ti/common/
H A DKconfig9 range 0 8
14 range 0 0xff
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/
H A Dgw_ventana.c1189 u32 *range = NULL; in ft_board_setup() local
1194 range = (u32 *)fdt_getprop(blob, i, in ft_board_setup()
1197 if (range) { in ft_board_setup()
1202 range[0] = cpu_to_fdt32(handle); in ft_board_setup()
1203 range[1] = cpu_to_fdt32(23); in ft_board_setup()
1247 u32 *range = NULL; in ft_board_setup() local
1260 range = (u32 *)fdt_getprop(blob, i, "fsl,pins", in ft_board_setup()
1262 if (range) { in ft_board_setup()
1265 u32 mux_reg = fdt32_to_cpu(range[i+0]); in ft_board_setup()
1266 u32 conf_reg = fdt32_to_cpu(range[i+1]); in ft_board_setup()
[all …]
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/
H A Dmicrochip,pic32-uart.txt5 - reg: exactly one register range.
/rk3399_rockchip-uboot/tools/patman/
H A Dterminal.py17 COLOR_IF_TERMINAL, COLOR_ALWAYS, COLOR_NEVER = range(3)
95 BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
/rk3399_rockchip-uboot/drivers/video/drm/
H A Dbmp_helper.h16 #define range(x, min, max) ((x) < (min)) ? (min) : (((x) > (max)) ? (max) : (x)) macro

12345678