/linux/drivers/soc/amlogic/ |
A D | meson-secure-pwrc.c | 29 struct genpd_onecell_data xlate; member 150 pwrc->xlate.domains = devm_kcalloc(&pdev->dev, match->count, in meson_secure_pwrc_probe() 151 sizeof(*pwrc->xlate.domains), in meson_secure_pwrc_probe() 153 if (!pwrc->xlate.domains) in meson_secure_pwrc_probe() 161 pwrc->xlate.num_domains = match->count; in meson_secure_pwrc_probe() 179 pwrc->xlate.domains[i] = &dom->base; in meson_secure_pwrc_probe() 182 return of_genpd_add_provider_onecell(pdev->dev.of_node, &pwrc->xlate); in meson_secure_pwrc_probe()
|
A D | meson-ee-pwrc.c | 314 struct genpd_onecell_data xlate; member 485 pwrc->xlate.domains = devm_kcalloc(&pdev->dev, match->count, in meson_ee_pwrc_probe() 486 sizeof(*pwrc->xlate.domains), in meson_ee_pwrc_probe() 488 if (!pwrc->xlate.domains) in meson_ee_pwrc_probe() 496 pwrc->xlate.num_domains = match->count; in meson_ee_pwrc_probe() 525 pwrc->xlate.domains[i] = &dom->base; in meson_ee_pwrc_probe() 528 return of_genpd_add_provider_onecell(pdev->dev.of_node, &pwrc->xlate); in meson_ee_pwrc_probe() 536 for (i = 0 ; i < pwrc->xlate.num_domains ; ++i) { in meson_ee_pwrc_shutdown()
|
/linux/drivers/soc/bcm/ |
A D | raspberrypi-power.c | 33 struct genpd_onecell_data xlate; member 101 rpi_domains->xlate.domains[xlate_index] = &dom->base; in rpi_common_init_power_domain() 164 rpi_domains->xlate.domains = in rpi_power_probe() 167 sizeof(*rpi_domains->xlate.domains), in rpi_power_probe() 169 if (!rpi_domains->xlate.domains) in rpi_power_probe() 172 rpi_domains->xlate.num_domains = RPI_POWER_DOMAIN_COUNT; in rpi_power_probe() 221 of_genpd_add_provider_onecell(dev->of_node, &rpi_domains->xlate); in rpi_power_probe()
|
/linux/drivers/crypto/vmx/ |
A D | ghashp8-ppc.pl | 48 ( $xlate="${dir}ppc-xlate.pl" and -f $xlate ) or 49 ( $xlate="${dir}../../perlasm/ppc-xlate.pl" and -f $xlate) or 52 open STDOUT,"| $^X $xlate $flavour $output" || die "can't call $xlate: $!";
|
/linux/include/linux/phy/ |
A D | phy.h | 192 #define of_phy_provider_register(dev, xlate) \ argument 193 __of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate)) 195 #define devm_of_phy_provider_register(dev, xlate) \ argument 196 __devm_of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate)) 198 #define of_phy_provider_register_full(dev, children, xlate) \ argument 199 __of_phy_provider_register(dev, children, THIS_MODULE, xlate) 201 #define devm_of_phy_provider_register_full(dev, children, xlate) \ argument 202 __devm_of_phy_provider_register(dev, children, THIS_MODULE, xlate)
|
/linux/drivers/media/platform/ |
A D | pxa_camera.c | 1661 if (xlate) { in pxa_camera_get_formats() 1664 xlate++; in pxa_camera_get_formats() 1675 if (xlate) in pxa_camera_get_formats() 1683 if (xlate) in pxa_camera_get_formats() 1692 if (xlate) { in pxa_camera_get_formats() 1693 xlate->host_fmt = fmt; in pxa_camera_get_formats() 1694 xlate->code = code.code; in pxa_camera_get_formats() 1695 xlate++; in pxa_camera_get_formats() 1707 if (IS_ERR(xlate)) in pxa_camera_build_formats() 1708 return PTR_ERR(xlate); in pxa_camera_build_formats() [all …]
|
/linux/Documentation/driver-api/phy/ |
A D | phy.rst | 40 #define of_phy_provider_register(dev, xlate) \ 41 __of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate)) 43 #define devm_of_phy_provider_register(dev, xlate) \ 45 (xlate)) 60 #define of_phy_provider_register_full(dev, children, xlate) \ 61 __of_phy_provider_register(dev, children, THIS_MODULE, xlate) 63 #define devm_of_phy_provider_register_full(dev, children, xlate) \ 65 THIS_MODULE, xlate)
|
/linux/drivers/misc/ibmasm/ |
A D | remote.c | 70 static const unsigned short xlate[XLATE_SIZE] = { variable 165 key = xlate[code]; in send_keyboard_event() 234 if (xlate[i]) in ibmasm_init_remote_input_dev() 235 set_bit(xlate[i], keybd_dev->keybit); in ibmasm_init_remote_input_dev()
|
/linux/drivers/memory/ |
A D | atmel-ebi.c | 137 const struct atmel_smc_timing_xlate *xlate; in atmel_ebi_xslate_smc_timings() local 139 xlate = &timings_xlate_table[i]; in atmel_ebi_xslate_smc_timings() 141 ret = of_property_read_u32(np, xlate->name, &val); in atmel_ebi_xslate_smc_timings() 155 ret = xlate->converter(smcconf, xlate->shift, ncycles); in atmel_ebi_xslate_smc_timings()
|
/linux/arch/arm64/crypto/ |
A D | poly1305-armv8.pl | 35 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 36 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or 39 open STDOUT,"| \"$^X\" $xlate $flavour $output";
|
A D | sha512-armv8.pl | 68 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 69 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or 72 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/linux/drivers/sh/intc/ |
A D | irqdomain.c | 41 .xlate = intc_evt_xlate,
|
/linux/arch/arm/crypto/ |
A D | poly1305-armv4.pl | 29 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 30 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or 33 open STDOUT,"| \"$^X\" $xlate $flavour $output";
|
/linux/drivers/irqchip/ |
A D | irq-renesas-h8300h.c | 73 .xlate = irq_domain_xlate_onecell,
|
A D | irq-jcore-aic.c | 58 .xlate = irq_domain_xlate_onecell,
|
A D | irq-renesas-h8s.c | 79 .xlate = irq_domain_xlate_onecell,
|
A D | irq-xtensa-pic.c | 40 .xlate = xtensa_pic_irq_domain_xlate,
|
A D | irq-rda-intc.c | 81 .xlate = irq_domain_xlate_onecell,
|
A D | irq-riscv-intc.c | 92 .xlate = irq_domain_xlate_onecell,
|
A D | irq-goldfish-pic.c | 52 .xlate = irq_domain_xlate_onecell,
|
A D | irq-wpcm450-aic.c | 133 .xlate = irq_domain_xlate_twocell,
|
/linux/arch/nios2/kernel/ |
A D | irq.c | 58 .xlate = irq_domain_xlate_onecell,
|
/linux/arch/powerpc/sysdev/ |
A D | mpic_msi.c | 62 ops->xlate(mpic->irqhost, NULL, oirq.args, in mpic_msi_reserve_u3_hwirqs()
|
/linux/arch/arc/kernel/ |
A D | intc-compact.c | 103 .xlate = irq_domain_xlate_onecell,
|
/linux/arch/sh/boards/mach-x3proto/ |
A D | gpio.c | 96 .xlate = irq_domain_xlate_twocell,
|