Searched refs:id (Results 151 - 175 of 2237) sorted by relevance

1234567891011>>

/u-boot/arch/arm/include/asm/
H A Dsecure.h12 u32 id; member in struct:secure_svc_tbl
26 .id = _id, \
/u-boot/drivers/reset/
H A Dreset-npcm.c30 debug("%s: id 0x%lx, data %ld\n", __func__, rst->id, rst->data);
31 val = readl(priv->base + rst->id);
33 writel(val, priv->base + rst->id);
43 debug("%s: id 0x%lx, data %ld\n", __func__, rst->id, rst->data);
44 val = readl(priv->base + rst->id);
46 writel(val, priv->base + rst->id);
59 /* Use id field as register offset and data field as reset bit positiion */
60 rst->id
[all...]
H A Dreset-imx7.c74 if (rst->id >= IMX7_RESET_NUM)
77 if (rst->id == IMX7_RESET_PCIEPHY) {
85 val = readl(priv->base + sig[rst->id].offset);
86 switch (rst->id) {
88 val |= sig[rst->id].bit;
91 val &= ~sig[rst->id].bit;
94 writel(val, priv->base + sig[rst->id].offset);
105 if (rst->id >= IMX7_RESET_NUM)
108 val = readl(priv->base + sig[rst->id].offset);
109 switch (rst->id) {
[all...]
/u-boot/dts/upstream/include/dt-bindings/clock/
H A Dat91.h47 #define AT91_PMC_PCKRDY(id) (8 + (id)) /* Programmable Clock */
/u-boot/drivers/clk/tegra/
H A Dtegra186-clk.c19 debug("%s(clk=%p) (dev=%p, id=%lu)\n", __func__, clk, clk->dev,
20 clk->id);
22 req.cmd_and_id = (CMD_CLK_GET_RATE << 24) | clk->id;
38 debug("%s(clk=%p, rate=%lu) (dev=%p, id=%lu)\n", __func__, clk, rate,
39 clk->dev, clk->id);
41 req.cmd_and_id = (CMD_CLK_SET_RATE << 24) | clk->id;
59 req.cmd_and_id = (cmd << 24) | clk->id;
71 debug("%s(clk=%p) (dev=%p, id=%lu)\n", __func__, clk, clk->dev,
72 clk->id);
79 debug("%s(clk=%p) (dev=%p, id
[all...]
/u-boot/drivers/clk/mtmips/
H A Dclk-mt7628.c58 if (clk->id >= ARRAY_SIZE(mt7628_clks))
61 switch (mt7628_clks[clk->id]) {
77 return mt7628_clks[clk->id];
85 if (clk->id > 31)
88 setbits_32(priv->base + CLKCFG1_REG, BIT(clk->id));
97 if (clk->id > 31)
100 clrbits_32(priv->base + CLKCFG1_REG, BIT(clk->id));
153 .id = UCLASS_CLK,
/u-boot/drivers/usb/host/
H A Dusb-uclass.c440 const struct usb_device_id *id)
442 if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
443 id->idVendor != desc->idVendor)
446 if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
447 id->idProduct != desc->idProduct)
450 /* No need to test id->bcdDevice_lo != 0, since 0 is never
452 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
453 (id->bcdDevice_lo > desc->bcdDevice))
456 if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
457 (id
439 usb_match_device(const struct usb_device_descriptor *desc, const struct usb_device_id *id) argument
476 usb_match_one_id_intf(const struct usb_device_descriptor *desc, const struct usb_interface_descriptor *int_desc, const struct usb_device_id *id) argument
511 usb_match_one_id(struct usb_device_descriptor *desc, struct usb_interface_descriptor *int_desc, const struct usb_device_id *id) argument
572 const struct usb_device_id *id; local
[all...]
/u-boot/cmd/
H A Dcramfs.c41 # define OFFSET_ADJUSTMENT (flash_info[id.num].start[0])
107 struct mtdids id; local
115 id.type = MTD_DEV_TYPE_NOR;
116 id.num = 0;
117 dev.id = &id;
172 struct mtdids id; local
180 id.type = MTD_DEV_TYPE_NOR;
181 id.num = 0;
182 dev.id
[all...]
/u-boot/drivers/clk/meson/
H A Dgxbb.c76 static ulong meson_div_get_rate(struct clk *clk, unsigned long id);
77 static ulong meson_div_set_rate(struct clk *clk, unsigned long id, ulong rate,
79 static ulong meson_mux_set_parent(struct clk *clk, unsigned long id,
81 static ulong meson_mux_get_rate(struct clk *clk, unsigned long id);
82 static ulong meson_clk_set_rate_by_id(struct clk *clk, unsigned long id,
84 static ulong meson_mux_get_parent(struct clk *clk, unsigned long id);
85 static ulong meson_clk_get_rate_by_id(struct clk *clk, unsigned long id);
198 static int meson_set_gate_by_id(struct clk *clk, unsigned long id, bool on) argument
203 debug("%s: %sabling %ld\n", __func__, on ? "en" : "dis", id);
206 switch (id) {
271 meson_div_get_rate(struct clk *clk, unsigned long id) argument
318 meson_div_set_rate(struct clk *clk, unsigned long id, ulong rate, ulong current_rate) argument
447 meson_mux_get_parent(struct clk *clk, unsigned long id) argument
492 meson_mux_set_parent(struct clk *clk, unsigned long id, unsigned long parent_id) argument
560 meson_mux_get_rate(struct clk *clk, unsigned long id) argument
641 meson_mpll_get_rate(struct clk *clk, unsigned long id) argument
691 meson_pll_get_rate(struct clk *clk, unsigned long id) argument
726 meson_clk_get_rate_by_id(struct clk *clk, unsigned long id) argument
810 meson_clk_set_rate_by_id(struct clk *clk, unsigned long id, ulong rate, ulong current_rate) argument
[all...]
H A Dg12a.c99 static ulong meson_div_get_rate(struct clk *clk, unsigned long id);
100 static ulong meson_div_set_rate(struct clk *clk, unsigned long id, ulong rate,
102 static ulong meson_mux_set_parent(struct clk *clk, unsigned long id,
104 static ulong meson_mux_get_rate(struct clk *clk, unsigned long id);
105 static ulong meson_clk_set_rate_by_id(struct clk *clk, unsigned long id,
107 static ulong meson_mux_get_parent(struct clk *clk, unsigned long id);
108 static ulong meson_clk_get_rate_by_id(struct clk *clk, unsigned long id);
147 static int meson_set_gate_by_id(struct clk *clk, unsigned long id, bool on) argument
152 debug("%s: %sabling %ld\n", __func__, on ? "en" : "dis", id);
155 switch (id) {
238 meson_div_get_rate(struct clk *clk, unsigned long id) argument
289 meson_div_set_rate(struct clk *clk, unsigned long id, ulong rate, ulong current_rate) argument
438 meson_mux_get_parent(struct clk *clk, unsigned long id) argument
487 meson_mux_set_parent(struct clk *clk, unsigned long id, unsigned long parent_id) argument
560 meson_mux_get_rate(struct clk *clk, unsigned long id) argument
637 meson_mpll_get_rate(struct clk *clk, unsigned long id) argument
688 meson_pll_get_rate(struct clk *clk, unsigned long id) argument
777 meson_clk_get_rate_by_id(struct clk *clk, unsigned long id) argument
897 meson_clk_set_rate_by_id(struct clk *clk, unsigned long id, ulong rate, ulong current_rate) argument
[all...]
/u-boot/common/
H A Dbootstage.c36 enum bootstage_id id; member in struct:bootstage_record
85 enum bootstage_id id)
92 if (rec->id == id)
100 enum bootstage_id id)
104 rec = find_id(data, id);
107 rec->id = id;
114 ulong bootstage_add_record(enum bootstage_id id, const char *name, argument
128 id
84 find_id(struct bootstage_data *data, enum bootstage_id id) argument
99 ensure_id(struct bootstage_data *data, enum bootstage_id id) argument
150 bootstage_error_name(enum bootstage_id id, const char *name) argument
156 bootstage_mark_name(enum bootstage_id id, const char *name) argument
193 bootstage_start(enum bootstage_id id, const char *name) argument
207 bootstage_accum(enum bootstage_id id) argument
[all...]
/u-boot/board/k+p/kp_imx53/
H A Dkp_id_rev.h21 u8 id[0x40]; /* 0x40 ... 0x7f */ member in struct:id_eeprom
/u-boot/arch/arm/mach-at91/include/mach/
H A Dclk.h128 void at91_periph_clk_enable(int id);
129 void at91_periph_clk_disable(int id);
130 int at91_enable_periph_generated_clk(u32 id, u32 clk_source, u32 div);
131 u32 at91_get_periph_generated_clk(u32 id);
/u-boot/scripts/kconfig/
H A Dkconf_id.c45 struct kconf_id *id = kconf_id_array+i; local
46 int l = strlen(id->name);
48 if (len == l && !memcmp(str, id->name, len))
49 return id;
/u-boot/arch/arm/mach-nexell/include/mach/
H A Dclk.h16 struct clk *clk_get(const char *id);
/u-boot/include/xen/interface/io/
H A Dblkif.h634 u64 id; /* private guest value, echoed in resp */ member in struct:blkif_request
648 u64 id; /* private guest value, echoed in resp */ member in struct:blkif_request_discard
657 u64 id; /* private guest value, echoed in resp */ member in struct:blkif_request_indirect
667 u64 id; /* copied from request */ member in struct:blkif_response
/u-boot/include/
H A Dw1-eeprom.h30 int w1_eeprom_get_id(struct udevice *dev, u64 *id);
/u-boot/drivers/mtd/spi/
H A Dsf_internal.h29 u8 id[SPI_NOR_MAX_ID_LEN]; member in struct:flash_info
76 #define JEDEC_MFR(info) ((info)->id[0])
77 #define JEDEC_ID(info) (((info)->id[1]) << 8 | ((info)->id[2]))
/u-boot/drivers/clk/sunxi/
H A Dclk_sun6i_rtc.c34 .id = UCLASS_CLK,
/u-boot/drivers/rng/
H A Dtpm_rng.c21 .id = UCLASS_RNG,
H A Drng-uclass.c23 .id = UCLASS_RNG,
/u-boot/drivers/mtd/nand/raw/
H A Dnand_samsung.c27 if (chip->id.len == 6 && !nand_is_slc(chip) &&
28 chip->id.data[5] != 0x00) {
29 u8 extid = chip->id.data[3];
68 /* Extract ECC requirements from 5th id byte*/
69 extid = (chip->id.data[4] >> 4) & 0x07;
/u-boot/drivers/clk/imx/
H A Dclk-imx8.h8 ulong id; member in struct:imx8_clks
/u-boot/drivers/clk/nuvoton/
H A Dclk_npcm.h57 const int id; member in struct:npcm_clk_pll
63 /* Parent clock id to clksel mapping */
65 int id; member in struct:parent_data
71 const int id; member in struct:npcm_clk_select
81 const int id; member in struct:npcm_clk_div
/u-boot/drivers/fuzz/
H A Dfuzzing_engine-uclass.c27 .id = UCLASS_FUZZING_ENGINE,

Completed in 249 milliseconds

1234567891011>>