Home
last modified time | relevance | path

Searched refs:rt (Results 1 – 8 of 8) sorted by relevance

/rk3399_rockchip-uboot/arch/x86/cpu/
H A Dirq.c93 struct irq_routing_table *rt; in create_pirq_routing_table() local
158 rt = calloc(1, sizeof(struct irq_routing_table)); in create_pirq_routing_table()
159 if (!rt) in create_pirq_routing_table()
163 rt->signature = PIRQ_SIGNATURE; in create_pirq_routing_table()
164 rt->version = PIRQ_VERSION; in create_pirq_routing_table()
165 rt->rtr_bus = PCI_BUS(priv->bdf); in create_pirq_routing_table()
166 rt->rtr_devfn = (PCI_DEV(priv->bdf) << 3) | PCI_FUNC(priv->bdf); in create_pirq_routing_table()
167 rt->rtr_vendor = PCI_VENDOR_ID_INTEL; in create_pirq_routing_table()
168 rt->rtr_device = PCI_DEVICE_ID_INTEL_ICH7_31; in create_pirq_routing_table()
170 slot_base = rt->slots; in create_pirq_routing_table()
[all …]
/rk3399_rockchip-uboot/drivers/power/charge/
H A Dbq25890_charger.c88 struct bq25890_range rt; member
92 [TBL_ICHG] = { .rt = {0, 5056000, 64000} }, /* uA */
93 [TBL_ITERM] = { .rt = {64000, 1024000, 64000} }, /* uA */
94 [TBL_VREG] = { .rt = {3840000, 4608000, 16000} }, /* uV */
95 [TBL_BATCMP] = { .rt = {0, 140, 20} }, /* mOhm */
96 [TBL_VCLAMP] = { .rt = {0, 224000, 32000} }, /* uV */
97 [TBL_BOOSTV] = { .rt = {4550000, 5510000, 64000} }, /* uV */
98 [TBL_SYSVMIN] = { .rt = {3000000, 3700000, 100000} }, /* uV */
99 [TBL_VINDPM] = { .rt = {2600000, 15300000, 100000} }, /* uV */
100 [TBL_IINLIM] = { .rt = {100, 3250000, 100000} }, /* uA */
[all …]
H A Dbq25700_charger.c100 struct bq25700_range rt; member
103 [TBL_ICHG] = { .rt = {0, 8128000, 64000} },
105 [TBL_CHGMAX] = { .rt = {0, 19200000, 16000} },
107 [TBL_INPUTVOL] = { .rt = {3200000, 19520000, 64000} },
109 [TBL_INPUTCUR] = {.rt = {0, 6350000, 50000} },
111 [TBL_SYSVMIN] = { .rt = {1024000, 16182000, 256000} },
113 [TBL_OTGVOL] = {.rt = {4480000, 20800000, 64000} },
115 [TBL_OTGCUR] = {.rt = {0, 6350000, 50000} },
120 const struct bq25700_range *rtbl = &bq25700_tables[id].rt; in bq25700_find_idx()
/rk3399_rockchip-uboot/arch/mips/include/asm/
H A Dasm.h183 #define MOVN(rd, rs, rt) \ argument
186 beqz rt, 9f; \
190 #define MOVZ(rd, rs, rt) \ argument
193 bnez rt, 9f; \
199 #define MOVN(rd, rs, rt) \ argument
202 bnezl rt, 9f; \
206 #define MOVZ(rd, rs, rt) \ argument
209 beqzl rt, 9f; \
216 #define MOVN(rd, rs, rt) \ argument
217 movn rd, rs, rt
[all …]
/rk3399_rockchip-uboot/arch/x86/include/asm/
H A Dpirq_routing.h62 static inline int get_irq_slot_count(struct irq_routing_table *rt) in get_irq_slot_count() argument
64 return (rt->size - 32) / sizeof(struct irq_info); in get_irq_slot_count()
141 u32 copy_pirq_routing_table(u32 addr, struct irq_routing_table *rt);
/rk3399_rockchip-uboot/arch/x86/lib/
H A Dpirq_routing.c111 u32 copy_pirq_routing_table(u32 addr, struct irq_routing_table *rt) in copy_pirq_routing_table() argument
119 memcpy((void *)(uintptr_t)addr, rt, rt->size); in copy_pirq_routing_table()
133 return addr + rt->size; in copy_pirq_routing_table()
/rk3399_rockchip-uboot/arch/sandbox/cpu/
H A Dos.c596 void os_localtime(struct rtc_time *rt) in os_localtime() argument
602 rt->tm_sec = tm->tm_sec; in os_localtime()
603 rt->tm_min = tm->tm_min; in os_localtime()
604 rt->tm_hour = tm->tm_hour; in os_localtime()
605 rt->tm_mday = tm->tm_mday; in os_localtime()
606 rt->tm_mon = tm->tm_mon + 1; in os_localtime()
607 rt->tm_year = tm->tm_year + 1900; in os_localtime()
608 rt->tm_wday = tm->tm_wday; in os_localtime()
609 rt->tm_yday = tm->tm_yday; in os_localtime()
610 rt->tm_isdst = tm->tm_isdst; in os_localtime()
/rk3399_rockchip-uboot/include/
H A Dos.h311 void os_localtime(struct rtc_time *rt);