Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 25 of 78) sorted by relevance

1234

/rk3399_rockchip-uboot/fs/ubifs/
H A Dlog.c172 struct ubifs_ref_node *ref; in ubifs_add_bud_to_log() local
177 ref = kzalloc(c->ref_node_alsz, GFP_NOFS); in ubifs_add_bud_to_log()
178 if (!ref) { in ubifs_add_bud_to_log()
232 ref->ch.node_type = UBIFS_REF_NODE; in ubifs_add_bud_to_log()
233 ref->lnum = cpu_to_le32(bud->lnum); in ubifs_add_bud_to_log()
234 ref->offs = cpu_to_le32(bud->start); in ubifs_add_bud_to_log()
235 ref->jhead = cpu_to_le32(jhead); in ubifs_add_bud_to_log()
265 err = ubifs_write_node(c, ref, UBIFS_REF_NODE_SZ, c->lhead_lnum, in ubifs_add_bud_to_log()
275 kfree(ref); in ubifs_add_bud_to_log()
280 kfree(ref); in ubifs_add_bud_to_log()
[all …]
H A Dreplay.c780 static int validate_ref(struct ubifs_info *c, const struct ubifs_ref_node *ref) in validate_ref() argument
783 int lnum = le32_to_cpu(ref->lnum); in validate_ref()
784 unsigned int offs = le32_to_cpu(ref->offs); in validate_ref()
785 unsigned int jhead = le32_to_cpu(ref->jhead); in validate_ref()
911 const struct ubifs_ref_node *ref = snod->node; in replay_log_leb() local
913 err = validate_ref(c, ref); in replay_log_leb()
919 err = add_replay_bud(c, le32_to_cpu(ref->lnum), in replay_log_leb()
920 le32_to_cpu(ref->offs), in replay_log_leb()
921 le32_to_cpu(ref->jhead), in replay_log_leb()
/rk3399_rockchip-uboot/scripts/dtc/
H A Dtreesource.c74 fprintf(f, "%s: ", m->ref); in write_propval_string()
115 fprintf(f, "%s: ", m->ref); in write_propval_string()
133 fprintf(f, " %s:", m->ref); in write_propval_string()
148 fprintf(f, "%s: ", m->ref); in write_propval_cells()
162 fprintf(f, " %s:", m->ref); in write_propval_cells()
177 fprintf(f, "%s: ", m->ref); in write_propval_bytes()
190 fprintf(f, " %s:", m->ref); in write_propval_bytes()
H A Dlivetree.c219 void add_orphan_node(struct node *dt, struct node *new_node, char *ref) in add_orphan_node() argument
227 d = data_add_marker(d, REF_PHANDLE, ref); in add_orphan_node()
466 if (streq(m->ref, label)) in get_marker_label()
560 struct node *get_node_by_ref(struct node *tree, const char *ref) in get_node_by_ref() argument
562 if (streq(ref, "/")) in get_node_by_ref()
564 else if (ref[0] == '/') in get_node_by_ref()
565 return get_node_by_path(tree, ref); in get_node_by_ref()
567 return get_node_by_label(tree, ref); in get_node_by_ref()
850 if (!get_node_by_ref(dti->dt, m->ref)) in any_fixup_tree()
878 append_to_property(fn, m->ref, entry, strlen(entry) + 1); in add_fixup_entry()
[all …]
H A Ddata.c30 free(m->ref); in data_free()
240 struct data data_add_marker(struct data d, enum markertype type, char *ref) in data_add_marker() argument
247 m->ref = ref; in data_add_marker()
H A Ddtc.h84 char *ref; member
123 struct data data_add_marker(struct data d, enum markertype type, char *ref);
206 void add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
229 struct node *get_node_by_ref(struct node *tree, const char *ref);
/rk3399_rockchip-uboot/arch/arm/mach-imx/mx5/
H A Dclock.c552 static int calc_pll_params(u32 ref, u32 target, struct pll_param *pll) in calc_pll_params() argument
556 u32 n_ref = ref, i; in calc_pll_params()
562 if (n_target < PLL_FREQ_MIN(ref) || in calc_pll_params()
563 n_target > PLL_FREQ_MAX(ref)) { in calc_pll_params()
566 PLL_FREQ_MIN(ref) / SZ_DEC_1M, in calc_pll_params()
567 PLL_FREQ_MAX(ref) / SZ_DEC_1M); in calc_pll_params()
572 if (fixed_mfd[i].ref_clk_hz == ref) { in calc_pll_params()
604 ref, n_target, (u32)pd, (u32)mfi, (u32)mfn, (u32)mfd); in calc_pll_params()
706 static int config_core_clk(u32 ref, u32 freq) in config_core_clk() argument
714 ret = calc_pll_params(ref, freq, &pll_param); in config_core_clk()
[all …]
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/
H A Dclk-core.c176 struct refclk *ref = refclk_str_to_clk(*clock); in peri_clk_set_rate() local
177 if (!ref) { in peri_clk_set_rate()
183 div = ref->clk.rate / rate; in peri_clk_set_rate()
187 new_rate = ref->clk.rate / div; in peri_clk_set_rate()
193 c->parent = &ref->clk; in peri_clk_set_rate()
212 struct refclk *ref; in peri_clk_get_rate() local
234 ref = refclk_str_to_clk(clock[c->sel]); in peri_clk_get_rate()
235 if (!ref) { in peri_clk_get_rate()
240 c->parent = &ref->clk; in peri_clk_get_rate()
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm235xx/
H A Dclk-core.c176 struct refclk *ref = refclk_str_to_clk(*clock); in peri_clk_set_rate() local
177 if (!ref) { in peri_clk_set_rate()
183 div = ref->clk.rate / rate; in peri_clk_set_rate()
187 new_rate = ref->clk.rate / div; in peri_clk_set_rate()
193 c->parent = &ref->clk; in peri_clk_set_rate()
212 struct refclk *ref; in peri_clk_get_rate() local
234 ref = refclk_str_to_clk(clock[c->sel]); in peri_clk_get_rate()
235 if (!ref) { in peri_clk_get_rate()
240 c->parent = &ref->clk; in peri_clk_get_rate()
/rk3399_rockchip-uboot/arch/arm/dts/
H A Duniphier-ld20-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-ld20-ref", "socionext,uniphier-ld20";
H A Duniphier-ld11-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-ld11-ref", "socionext,uniphier-ld11";
H A Duniphier-sld8-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-sld8-ref", "socionext,uniphier-sld8";
H A Duniphier-ld6b-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-ld6b-ref", "socionext,uniphier-ld6b";
H A Duniphier-ld4-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-ld4-ref", "socionext,uniphier-ld4";
H A Duniphier-pro4-ref.dts12 #include "uniphier-ref-daughter.dtsi"
17 compatible = "socionext,uniphier-pro4-ref", "socionext,uniphier-pro4";
H A Duniphier-pxs3-ref.dts16 compatible = "socionext,uniphier-pxs3-ref", "socionext,uniphier-pxs3";
H A DMakefile113 uniphier-ld11-ref.dtb
116 uniphier-ld20-ref.dtb
118 uniphier-ld4-ref.dtb
120 uniphier-ld6b-ref.dtb
123 uniphier-pro4-ref.dtb \
131 uniphier-pxs3-ref.dtb
133 uniphier-sld8-ref.dtb
/rk3399_rockchip-uboot/arch/mips/mach-ath79/qca953x/
H A Dlowlevel_init.S38 #define MK_PLL_CPU_CONF(frac, nint, ref, outdiv) \ argument
41 PLL_CPU_REFDIV(ref) | \
48 #define MK_PLL_DDR_CONF(frac, nint, ref, outdiv) \ argument
50 PLL_DDR_REFDIV(ref) | \
/rk3399_rockchip-uboot/doc/
H A DREADME.uniphier32 LD4 reference | uniphier_ld4_sld8_defconfig | uniphier-ld4-ref (default)
34 Pro4 reference | uniphier_pro4_defconfig | uniphier-pro4-ref (default)
40 LD6b reference | uniphier_pxs2_ld6b_defconfig | uniphier-ld6b-ref
46 LD11 reference | uniphier_v8_defconfig | uniphier-ld11-ref
48 LD20 reference | uniphier_v8_defconfig | uniphier-ld20-ref (default)
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx5/
H A Dclock.h47 int mxc_set_clock(u32 ref, u32 freq, u32 clk_type);
/rk3399_rockchip-uboot/drivers/mtd/ubi/
H A Dbuild.c453 static int ubi_sysfs_init(struct ubi_device *ubi, int *ref) in ubi_sysfs_init() argument
466 *ref = 1; in ubi_sysfs_init()
511 static int uif_init(struct ubi_device *ubi, int *ref) in uif_init() argument
518 *ref = 0; in uif_init()
546 err = ubi_sysfs_init(ubi, ref); in uif_init()
564 if (*ref) in uif_init()
884 int i, err, ref = 0; in ubi_attach_mtd_dev() local
1019 err = uif_init(ubi, &ref); in ubi_attach_mtd_dev()
1076 ubi_assert(ref); in ubi_attach_mtd_dev()
1085 if (ref) in ubi_attach_mtd_dev()
/rk3399_rockchip-uboot/scripts/
H A Dget_maintainer.pl1595 foreach my $ref (@{$commit_author}) {
1596 print STDERR " Author: @{$ref}[1]\n";
1601 foreach my $ref (@{$commit_signer}) {
1602 print STDERR " @{$ref}[2]: @{$ref}[1]\n";
1883 foreach my $ref(@{$commit_author_hash{$authors[$i]}}) {
1884 if (@{$ref}[0] eq $commits[$i] &&
1885 @{$ref}[1] eq $subjects[$i]) {
1918 foreach my $ref(@{$commit_signer_hash{$signer}}) {
1919 if (@{$ref}[0] eq $commit &&
1920 @{$ref}[1] eq $subject &&
[all …]
/rk3399_rockchip-uboot/configs/
H A Duniphier_v8_defconfig8 CONFIG_DEFAULT_DEVICE_TREE="uniphier-ld20-ref"
H A Duniphier_pro4_defconfig9 CONFIG_DEFAULT_DEVICE_TREE="uniphier-pro4-ref"
H A Duniphier_ld4_sld8_defconfig10 CONFIG_DEFAULT_DEVICE_TREE="uniphier-ld4-ref"

1234