Home
last modified time | relevance | path

Searched full:ph (Results 1 – 19 of 19) sorted by relevance

/Zephyr-latest/dts/bindings/test/
Dvnd,phandle-holder.yaml11 ph: {type: "phandle"}
/Zephyr-latest/samples/drivers/jesd216/
DREADME.rst32 MX25R8035F: SFDP v 1.6 AP ff with 3 PH
/Zephyr-latest/include/zephyr/dt-bindings/pinctrl/
Dnumaker-m46x-pinctrl.h1798 /* PH.0 MFP */
1804 /* PH.1 MFP */
1810 /* PH.2 MFP */
1818 /* PH.3 MFP */
1827 /* PH.4 MFP */
1834 /* PH.5 MFP */
1841 /* PH.6 MFP */
1848 /* PH.7 MFP */
1855 /* PH.8 MFP */
1868 /* PH.9 MFP */
[all …]
/Zephyr-latest/soc/mediatek/mt8xxx/
Dmtk_adsp_load.py64 for i, ph in enumerate(struct.unpack(">II", readfile(path + "memory-region"))):
67 if os.path.exists(phf) and struct.unpack(">I", readfile(phf))[0] == ph:
/Zephyr-latest/samples/drivers/jesd216/src/
Dmain.c315 printf("%s: SFDP v %u.%u AP %x with %u PH\n", dev->name, in main()
325 printf("PH%u: %04x rev %u.%u: %u DW @ %x\n", in main()
/Zephyr-latest/soc/nuvoton/npcx/common/ecst/
Decst_args.py201 parser.add_argument("-ph", nargs='?', dest="paste_firmware_header")
Decst.py12 # [-nohcrc] [-nofcrc] [-ph <offset>]
/Zephyr-latest/boards/bcdevices/plt_demo_v2/doc/
Dindex.rst98 * JST-PH Battery Connector
/Zephyr-latest/tests/lib/devicetree/api/
Dapp.overlay23 ph = <&test_gpio_1>;
67 ph = <&test_gpio_1>;
/Zephyr-latest/drivers/flash/
Dflash_andes_qspi.c567 LOG_DBG("%s: SFDP v %u.%u AP %x with %u PH", dev->name, in spi_nor_process_sfdp()
577 LOG_DBG("PH%zu: %04x rev %u.%u: %u DW @ %x", in spi_nor_process_sfdp()
Dflash_stm32_qspi.c1488 LOG_INF("%s: SFDP v %u.%u AP %x with %u PH", dev->name, in flash_stm32_qspi_init()
1498 LOG_INF("PH%u: %04x rev %u.%u: %u DW @ %x", in flash_stm32_qspi_init()
Dspi_nor.c1256 LOG_INF("%s: SFDP v %u.%u AP %x with %u PH", dev->name, in spi_nor_process_sfdp()
1265 LOG_INF("PH%u: %04x rev %u.%u: %u DW @ %x", in spi_nor_process_sfdp()
Dflash_stm32_xspi.c2257 LOG_DBG("%s: SFDP v %u.%u AP %x with %u PH", dev->name, in flash_stm32_xspi_init()
2267 LOG_DBG("PH%u: %04x rev %u.%u: %u DW @ %x", in flash_stm32_xspi_init()
Dflash_stm32_ospi.c2438 LOG_DBG("%s: SFDP v %u.%u AP %x with %u PH", dev->name, in flash_stm32_ospi_init()
2448 LOG_DBG("PH%u: %04x rev %u.%u: %u DW @ %x", in flash_stm32_ospi_init()
/Zephyr-latest/dts/arm/raspberrypi/rpi_pico/
Drp2040.dtsi160 rosc_ph: rosc-ph {
Drp2350.dtsi156 rosc_ph: rosc-ph {
/Zephyr-latest/tests/lib/devicetree/api/src/
Dmain.c938 bool gpio_controller = DT_PROP_BY_PHANDLE(TEST_PH, ph, gpio_controller); in ZTEST()
943 zassert_true(DT_NODE_HAS_PROP(TEST_PH, ph), ""); in ZTEST()
944 zassert_true(DT_SAME_NODE(DT_PROP(TEST_PH, ph), in ZTEST()
946 zassert_equal(DT_PROP_LEN(TEST_PH, ph), 1, ""); in ZTEST()
947 zassert_true(DT_SAME_NODE(DT_PROP_BY_IDX(TEST_PH, ph, 0), in ZTEST()
1061 zassert_equal(DT_INST_PROP_BY_PHANDLE(0, ph, ngpios), 100, ""); in ZTEST()
1899 DT_FOREACH_PROP_ELEM(TEST_PH, ph, PATH_COMMA) in ZTEST()
1906 DT_FOREACH_PROP_ELEM(ZEPHYR_USER, ph, PATH_COMMA) in ZTEST()
/Zephyr-latest/include/zephyr/
Ddevicetree.h1489 * This is equivalent to DT_PROP_BY_PHANDLE_IDX(node_id, ph, 0, prop).
1492 * @param ph lowercase-and-underscores property of @p node_id
1497 #define DT_PROP_BY_PHANDLE(node_id, ph, prop) \ argument
1498 DT_PROP_BY_PHANDLE_IDX(node_id, ph, 0, prop)
1787 * @return a node identifier for the node pointed to by "ph"
4276 * @param ph lowercase-and-underscores property of @p inst
4281 #define DT_INST_PROP_BY_PHANDLE(inst, ph, prop) \ argument
4282 DT_INST_PROP_BY_PHANDLE_IDX(inst, ph, 0, prop)
4395 * @return a node identifier for the node pointed to by "ph"
/Zephyr-latest/scripts/dts/
Dgen_defines.py549 for idx, ph in enumerate(pinctrl.conf_nodes):
551 f"DT_{ph.z_path_id}")