Home
last modified time | relevance | path

Searched refs:php (Results 1 – 25 of 47) sorted by relevance

12

/Zephyr-Core-3.6.0/samples/drivers/jesd216/src/
Dmain.c32 typedef void (*dw_extractor)(const struct jesd216_param_header *php,
49 static void summarize_dw1(const struct jesd216_param_header *php, in summarize_dw1() argument
82 int rc = jesd216_bfp_read_support(php, bfp, in summarize_dw1()
96 static void summarize_dw2(const struct jesd216_param_header *php, in summarize_dw2() argument
102 static void summarize_dw89(const struct jesd216_param_header *php, in summarize_dw89() argument
111 typ_max_mul = jesd216_bfp_erase_type_times(php, bfp, in summarize_dw89()
125 static void summarize_dw11(const struct jesd216_param_header *php, in summarize_dw11() argument
130 if (jesd216_bfp_decode_dw11(php, bfp, &dw11) != 0) { in summarize_dw11()
149 static void summarize_dw12(const struct jesd216_param_header *php, in summarize_dw12() argument
174 static void summarize_dw14(const struct jesd216_param_header *php, in summarize_dw14() argument
[all …]
/Zephyr-Core-3.6.0/drivers/flash/
Djesd216.c26 int jesd216_bfp_read_support(const struct jesd216_param_header *php, in jesd216_bfp_read_support() argument
35 if ((php->len_dw >= 15) in jesd216_bfp_read_support()
41 if ((php->len_dw >= 19) in jesd216_bfp_read_support()
64 if (php->len_dw >= 17) { in jesd216_bfp_read_support()
87 if (php->len_dw >= 17) { in jesd216_bfp_read_support()
150 int jesd216_bfp_erase_type_times(const struct jesd216_param_header *php, in jesd216_bfp_erase_type_times() argument
158 if (php->len_dw < 10) { in jesd216_bfp_erase_type_times()
194 int jesd216_bfp_decode_dw11(const struct jesd216_param_header *php, in jesd216_bfp_decode_dw11() argument
199 if (php->len_dw < 11) { in jesd216_bfp_decode_dw11()
248 int jesd216_bfp_decode_dw14(const struct jesd216_param_header *php, in jesd216_bfp_decode_dw14() argument
[all …]
Djesd216.h282 int jesd216_bfp_read_support(const struct jesd216_param_header *php,
336 int jesd216_bfp_erase_type_times(const struct jesd216_param_header *php,
350 static inline uint32_t jesd216_bfp_page_size(const struct jesd216_param_header *php, in jesd216_bfp_page_size() argument
354 if (php->len_dw < 11) { in jesd216_bfp_page_size()
398 int jesd216_bfp_decode_dw11(const struct jesd216_param_header *php,
430 int jesd216_bfp_decode_dw14(const struct jesd216_param_header *php,
490 int jesd216_bfp_decode_dw15(const struct jesd216_param_header *php,
528 int jesd216_bfp_decode_dw16(const struct jesd216_param_header *php,
Dflash_andes_qspi.c506 const struct jesd216_param_header *php, in spi_nor_process_bfp() argument
527 dev_data->page_size = jesd216_bfp_page_size(php, bfp); in spi_nor_process_bfp()
570 const struct jesd216_param_header *php = hp->phdr; in spi_nor_process_sfdp() local
572 php + MIN(decl_nph, 1 + hp->nph); in spi_nor_process_sfdp()
574 while (php != phpe) { in spi_nor_process_sfdp()
575 uint16_t id = jesd216_param_id(php); in spi_nor_process_sfdp()
578 (php - hp->phdr), id, php->rev_major, php->rev_minor, in spi_nor_process_sfdp()
579 php->len_dw, jesd216_param_addr(php)); in spi_nor_process_sfdp()
583 uint32_t dw[MIN(php->len_dw, 20)]; in spi_nor_process_sfdp()
589 jesd216_param_addr(php), u.dw, sizeof(u.dw)); in spi_nor_process_sfdp()
[all …]
Dspi_nor.c1016 const struct jesd216_param_header *php, in spi_nor_process_bfp() argument
1036 data->page_size = jesd216_bfp_page_size(php, bfp); in spi_nor_process_bfp()
1053 if (jesd216_bfp_decode_dw16(php, bfp, &dw16) == 0) { in spi_nor_process_bfp()
1097 const struct jesd216_param_header *php = hp->phdr; in spi_nor_process_sfdp() local
1098 const struct jesd216_param_header *phpe = php + MIN(decl_nph, 1 + hp->nph); in spi_nor_process_sfdp()
1100 while (php != phpe) { in spi_nor_process_sfdp()
1101 uint16_t id = jesd216_param_id(php); in spi_nor_process_sfdp()
1104 (php - hp->phdr), id, php->rev_major, php->rev_minor, in spi_nor_process_sfdp()
1105 php->len_dw, jesd216_param_addr(php)); in spi_nor_process_sfdp()
1109 uint32_t dw[MIN(php->len_dw, 20)]; in spi_nor_process_sfdp()
[all …]
Dflash_stm32_qspi.c1014 const struct jesd216_param_header *php, in spi_nor_process_bfp() argument
1042 data->page_size = jesd216_bfp_page_size(php, bfp); in spi_nor_process_bfp()
1051 if (jesd216_bfp_decode_dw16(php, bfp, &dw16) == 0) { in spi_nor_process_bfp()
1091 rc = jesd216_bfp_read_support(php, bfp, supported_modes[i], &res); in spi_nor_process_bfp()
1115 rc = jesd216_bfp_decode_dw15(php, bfp, &dw15); in spi_nor_process_bfp()
1329 const struct jesd216_param_header *php = hp->phdr; in flash_stm32_qspi_init() local
1330 const struct jesd216_param_header *phpe = php + in flash_stm32_qspi_init()
1333 while (php != phpe) { in flash_stm32_qspi_init()
1334 uint16_t id = jesd216_param_id(php); in flash_stm32_qspi_init()
1337 (php - hp->phdr), id, php->rev_major, php->rev_minor, in flash_stm32_qspi_init()
[all …]
Dflash_stm32_ospi.c1742 const struct jesd216_param_header *php, in spi_nor_process_bfp() argument
1812 if (jesd216_bfp_read_support(php, bfp, supported_read_modes[idx], in spi_nor_process_bfp()
1839 if (jesd216_bfp_decode_dw15(php, bfp, &dw15) < 0) { in spi_nor_process_bfp()
1858 data->page_size = jesd216_bfp_page_size(php, bfp); in spi_nor_process_bfp()
2200 const struct jesd216_param_header *php = hp->phdr; in flash_stm32_ospi_init() local
2201 const struct jesd216_param_header *phpe = php + in flash_stm32_ospi_init()
2204 while (php != phpe) { in flash_stm32_ospi_init()
2205 uint16_t id = jesd216_param_id(php); in flash_stm32_ospi_init()
2208 (php - hp->phdr), id, php->rev_major, php->rev_minor, in flash_stm32_ospi_init()
2209 php->len_dw, jesd216_param_addr(php)); in flash_stm32_ospi_init()
[all …]
/Zephyr-Core-3.6.0/boards/sparc/generic_leon3/doc/
Dindex.rst122 * `GRLIB IP Library and LEON3, GPL version <https://www.gaisler.com/index.php/downloads/leongrlib>`_
123 * `TSIM3 LEON3 simulator <https://www.gaisler.com/index.php/products/simulators/tsim3/tsim3-leon3>`_
124 * `GRMON3 debug monitor <https://www.gaisler.com/index.php/products/debug-tools/grmon3>`_
/Zephyr-Core-3.6.0/samples/net/mqtt_sn_publisher/
DREADME.rst25 .. _MQTT-SN v1.2 spec: https://www.oasis-open.org/committees/download.php/66091/MQTT-SN_spec_v1.2.p…
51 …-SN Gateway: https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparent-gateway/in…
/Zephyr-Core-3.6.0/doc/connectivity/networking/api/
Dmqtt_sn.rst28 https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparent-gateway/index.php
31 https://www.oasis-open.org/committees/download.php/66091/MQTT-SN_spec_v1.2.pdf
/Zephyr-Core-3.6.0/doc/develop/toolchains/
Ddesignware_arc_mwdt.rst6 #. You need to have `ARC MWDT <https://www.synopsys.com/dw/ipdir.php?ds=sw_metaware>`_ installed on
/Zephyr-Core-3.6.0/doc/services/modbus/
Dindex.rst39 .. _`MODBUS Protocol Specifications`: https://www.modbus.org/specs.php
/Zephyr-Core-3.6.0/boards/arm/ronoth_lodev/doc/
Dindex.rst156 .. _AcSIP S76S: http://www.acsip.com.tw/index.php?action=products-detail&fid1=11&fid2=29&fid3=27&id…
158 .. _AcSIP S76S Product Information Brief: https://www.acsip.com.tw/index.php?action=download_pro&pe…
Ds76s.rst232 .. _AcSIP S76S: http://www.acsip.com.tw/index.php?action=products-detail&fid1=11&fid2=29&fid3=27&id…
234 .. _AcSIP S76S Product Information Brief: https://www.acsip.com.tw/index.php?action=download_pro&pe…
236 .. _AcSIP Product Data Download: http://www.acsip.com.tw/index.php?action=technical
/Zephyr-Core-3.6.0/doc/security/
Dsecurity-citations.rst46 Available: https://www.owasp.org/index.php/Application_Threat_Modeling.
/Zephyr-Core-3.6.0/boards/sparc/gr716a_mini/doc/
Dindex.rst213 * `GR716 Evaluation and Development Boards <https://www.gaisler.com/index.php/products/boards/gr716…
214 * `TSIM3 LEON3 simulator <https://www.gaisler.com/index.php/products/simulators/tsim3/tsim3-leon3>`_
215 * `GRMON3 debug monitor <https://www.gaisler.com/index.php/products/debug-tools/grmon3>`_
/Zephyr-Core-3.6.0/boards/arm/msp_exp432p401r_launchxl/doc/
Dindex.rst146 http://processors.wiki.ti.com/index.php/UniFlash_v4_Quick_Guide#Command_Line_Interface
152 …http://processors.wiki.ti.com/index.php/XDS_Emulation_Software_Package#XDS_Emulation_Software_.28e…
/Zephyr-Core-3.6.0/boards/arm/pinetime_devkit0/doc/
Dindex.rst206 https://wiki.pine64.org/index.php/PineTime
215 https://wiki.pine64.org/index.php/Reprogramming_the_PineTime
/Zephyr-Core-3.6.0/boards/arc/qemu_arc/doc/
Dindex.rst102 …<https://www.synopsys.com/dw/doc.php/iip/dwc_arc_hs4xd/latest/doc/ARC_V2_PublicProgrammers_Referen…
/Zephyr-Core-3.6.0/boards/riscv/longan_nano/doc/
Dindex.rst20 - `Nuclei website <https://www.nucleisys.com/download.php>`_
/Zephyr-Core-3.6.0/boards/arc/iotdk/doc/
Dindex.rst22 (IoTDK) <https://www.synopsys.com/dw/ipdir.php?ds=arc_iot_development_kit>`__
194 .. _Designware ARC IoT Development Kit website: <https://www.synopsys.com/dw/ipdir.php?ds=arc_iot_d…
/Zephyr-Core-3.6.0/boards/arm/raytac_mdbt50q_db_40_nrf52840/doc/
Dindex.rst209 https://www.raytac.com/product/ins.php?index_id=81
211 https://www.raytac.com/download/index.php?index_id=43
/Zephyr-Core-3.6.0/boards/arm/raytac_mdbt50q_db_33_nrf52833/doc/
Dindex.rst207 https://www.raytac.com/product/ins.php?index_id=97
209 https://www.raytac.com/download/index.php?index_id=46
/Zephyr-Core-3.6.0/boards/arm/cc3220sf_launchxl/doc/
Dindex.rst298 http://processors.wiki.ti.com/index.php/CC31xx_%26_CC32xx
313 http://processors.wiki.ti.com/index.php/Category:CCS_UniFlash
322 …http://processors.wiki.ti.com/index.php/XDS_Emulation_Software_Package#XDS_Emulation_Software_.28e…
/Zephyr-Core-3.6.0/boards/arm/raytac_mdbt53v_db_40_nrf5340/doc/
Dindex.rst255 https://www.raytac.com/product/ins.php?index_id=140
257 https://www.raytac.com/download/index.php?index_id=62

12