/freebsd/lib/ofed/include/ |
H A D | Makefile | 9 OSM= ${SRCTOP}/contrib/ofed/opensm/include macro 54 ${OSM}/complib/cl_atomic.h \ 55 ${OSM}/complib/cl_atomic_osd.h \ 56 ${OSM}/complib/cl_byteswap.h \ 57 ${OSM}/complib/cl_byteswap_osd.h \ 58 ${OSM}/complib/cl_comppool.h \ 59 ${OSM}/complib/cl_debug.h \ 60 ${OSM}/complib/cl_debug_osd.h \ 61 ${OSM}/complib/cl_dispatcher.h \ 62 ${OSM}/complib/cl_event.h \ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/interconnect/ |
H A D | qcom,osm-l3.yaml | 4 $id: http://devicetree.org/schemas/interconnect/qcom,osm-l3.yaml# 7 title: Qualcomm Operating State Manager (OSM) L3 Interconnect Provider 13 L3 cache bandwidth requirements on Qualcomm SoCs is serviced by the OSM. 14 The OSM L3 interconnect provider aggregates the L3 bandwidth requests 15 from CPU/GPU and relays it to the OSM. 22 - qcom,sc7180-osm-l3 23 - qcom,sc8180x-osm-l3 24 - qcom,sdm670-osm-l3 25 - qcom,sdm845-osm-l3 26 - qcom,sm6350-osm [all...] |
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_dump.c | 555 osm_opensm_t *osm = cxt; in print_node_report() local 616 if (osm_physp_get_port_guid(p_physp) == osm->subn.sm_port_guid) in print_node_report() 693 static void print_report(osm_opensm_t * osm, FILE * file) in print_report() argument 699 dump_qmap(stdout, &osm->subn.node_guid_tbl, print_node_report, osm); in print_report() 702 void osm_dump_mcast_routes(osm_opensm_t * osm) in osm_dump_mcast_routes() argument 704 if (OSM_LOG_IS_ACTIVE_V2(&osm->log, OSM_LOG_ROUTING)) in osm_dump_mcast_routes() 706 osm_dump_qmap_to_file(osm, "opensm.mcfdbs", in osm_dump_mcast_routes() 707 &osm->subn.sw_guid_tbl, in osm_dump_mcast_routes() 708 dump_mcast_routes, osm); in osm_dump_mcast_routes() 711 void osm_dump_all(osm_opensm_t * osm) in osm_dump_all() argument [all …]
|
H A D | osm_opensm.c | 159 static void append_routing_engine(osm_opensm_t *osm, in append_routing_engine() argument 166 if (!osm->routing_engine_list) { in append_routing_engine() 167 osm->routing_engine_list = routing_engine; in append_routing_engine() 171 r = osm->routing_engine_list; in append_routing_engine() 178 static struct osm_routing_engine *setup_routing_engine(osm_opensm_t *osm, in setup_routing_engine() argument 185 osm->no_fallback_routing_engine = TRUE; in setup_routing_engine() 193 OSM_LOG(&osm->log, OSM_LOG_VERBOSE, in setup_routing_engine() 201 if (m->setup(re, osm)) { in setup_routing_engine() 202 OSM_LOG(&osm->log, OSM_LOG_VERBOSE, in setup_routing_engine() 208 OSM_LOG(&osm->log, OSM_LOG_DEBUG, in setup_routing_engine() [all …]
|
H A D | osm_event_plugin.c | 68 osm_epi_plugin_t *osm_epi_construct(osm_opensm_t *osm, char *plugin_name) in osm_epi_construct() argument 86 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct() 96 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct() 105 OSM_LOG(&osm->log, OSM_LOG_ERROR, "Error loading plugin: " in osm_epi_construct() 113 if (strcmp(rc->impl->osm_version, osm->osm_version)) { in osm_epi_construct() 114 OSM_LOG(&osm->log, OSM_LOG_ERROR, "Error loading plugin" in osm_epi_construct() 122 OSM_LOG(&osm->log, OSM_LOG_ERROR, in osm_epi_construct() 128 rc->plugin_data = rc->impl->create(osm); in osm_epi_construct()
|
H A D | osm_perfmgr.c | 255 cl_plock_acquire(&pm->osm->lock); in perfmgr_mad_send_err_callback() 258 cl_plock_release(&pm->osm->lock); in perfmgr_mad_send_err_callback() 271 cl_plock_release(&pm->osm->lock); in perfmgr_mad_send_err_callback() 709 cl_plock_acquire(&pm->osm->lock); in perfmgr_query_counters() 823 cl_plock_release(&pm->osm->lock); in perfmgr_query_counters() 1006 static int perfmgr_discovery(osm_opensm_t * osm) in perfmgr_discovery() argument 1010 CL_PLOCK_ACQUIRE(&osm->lock); in perfmgr_discovery() 1011 cl_qmap_apply_func(&osm->subn.node_guid_tbl, reset_node_count, NULL); in perfmgr_discovery() 1012 cl_qmap_apply_func(&osm->subn.port_guid_tbl, reset_port_count, NULL); in perfmgr_discovery() 1013 cl_qmap_apply_func(&osm->subn.sw_guid_tbl, reset_switch_count, NULL); in perfmgr_discovery() [all …]
|
H A D | osm_torus.c | 241 osm_opensm_t *osm; member 286 osm_opensm_t *osm; member 327 osm_opensm_t *osm; member 412 struct torus_context *torus_context_create(osm_opensm_t *osm) in torus_context_create() argument 418 ctx->osm = osm; in torus_context_create() 420 OSM_LOG(&osm->log, OSM_LOG_ERROR, in torus_context_create() 511 OSM_LOG(&f->osm->log, OSM_LOG_ERROR, in alloc_fswitch() 523 OSM_LOG(&f->osm->log, OSM_LOG_ERROR, in alloc_fswitch() 547 OSM_LOG(&f->osm->log, OSM_LOG_ERROR, in alloc_flink() 558 OSM_LOG(&f->osm->log, OSM_LOG_ERROR, in alloc_flink() [all …]
|
H A D | main.c | 515 static int daemonize(osm_opensm_t * osm) in daemonize() argument 605 osm_opensm_t osm; in main() local 1172 osm_vendor_set_debug(osm.p_vendor, vendor_debug); in main() 1182 daemonize(&osm); in main() 1187 status = osm_opensm_init(&osm, &opt); in main() 1204 opt.guid = get_port_guid(&osm, opt.guid); in main() 1209 status = osm_opensm_init_finish(&osm, &opt); in main() 1218 status = osm_opensm_bind(&osm, opt.guid); in main() 1228 osm_opensm_sweep(&osm); in main() 1233 osm_opensm_wait_for_subnet_up(&osm, in main() [all …]
|
H A D | osm_ucast_mgr.c | 1060 static int ucast_mgr_route(struct osm_routing_engine *r, osm_opensm_t * osm) in ucast_mgr_route() argument 1064 OSM_LOG(&osm->log, OSM_LOG_VERBOSE, in ucast_mgr_route() 1068 if (osm->subn.opt.scatter_ports) in ucast_mgr_route() 1069 srandom(osm->subn.opt.scatter_ports); in ucast_mgr_route() 1073 ret = osm_ucast_mgr_build_lid_matrices(&osm->sm.ucast_mgr); in ucast_mgr_route() 1076 OSM_LOG(&osm->log, OSM_LOG_ERROR, in ucast_mgr_route() 1083 ret = ucast_mgr_build_lfts(&osm->sm.ucast_mgr); in ucast_mgr_route() 1086 OSM_LOG(&osm->log, OSM_LOG_ERROR, in ucast_mgr_route() 1091 osm->routing_engine_used = r; in ucast_mgr_route() 1093 osm_ucast_mgr_set_fwd_tables(&osm->sm.ucast_mgr); in ucast_mgr_route() [all …]
|
H A D | osm_ucast_updn.c | 521 osm_opensm_t *osm = cxt; in update_id() local 526 sw = osm_get_switch_by_guid(&osm->subn, cl_hton64(guid)); in update_id() 528 OSM_LOG(&osm->log, OSM_LOG_VERBOSE, in update_id() 535 OSM_LOG(&osm->log, OSM_LOG_ERROR, in update_id() 540 OSM_LOG(&osm->log, OSM_LOG_DEBUG, in update_id() 661 int osm_ucast_updn_setup(struct osm_routing_engine *r, osm_opensm_t *osm) in osm_ucast_updn_setup() argument 670 updn->p_osm = osm; in osm_ucast_updn_setup()
|
H A D | osm_ucast_dnup.c | 480 int osm_ucast_dnup_setup(struct osm_routing_engine *r, osm_opensm_t *osm) in osm_ucast_dnup_setup() argument 484 OSM_LOG_ENTER(&osm->log); in osm_ucast_dnup_setup() 491 dnup->p_osm = osm; in osm_ucast_dnup_setup() 497 OSM_LOG_EXIT(&osm->log); in osm_ucast_dnup_setup()
|
/freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
H A D | imx93-kontron-osm-s.dtsi | 10 model = "Kontron OSM-S i.MX93"; 11 compatible = "kontron,imx93-osm-s", "fsl,imx93"; 62 &flexcan1 { /* OSM-S CAN_A */ 67 &flexcan2 { /* OSM-S CAN_B */ 210 &lpi2c2 { /* OSM-S I2C_A */ 215 &lpi2c3 { /* OSM-S I2C_B */ 220 &lpspi1 { /* OSM-S SPI_A */ 226 &lpspi8 { /* OSM-S SPI_B */ 232 &lpuart1 { /* OSM-S UART_CON */ 237 &lpuart2 { /* OSM-S UART_C */ [all …]
|
H A D | imx93-kontron-bl-osm-s.dts | 8 #include "imx93-kontron-osm-s.dtsi" 11 model = "Kontron BL i.MX93 OSM-S"; 12 compatible = "kontron,imx93-bl-osm-s", "kontron,imx93-osm-s", "fsl,imx93"; 44 &eqos { /* Second ethernet (OSM-S ETH_B) */ 65 &fec { /* First ethernet (OSM-S ETH_A) */
|
H A D | imx8mm-kontron-bl-osm-s.dts | 8 #include "imx8mm-kontron-osm-s.dtsi" 11 model = "Kontron BL i.MX8MM OSM-S (N802X S)"; 12 compatible = "kontron,imx8mm-bl-osm-s", "kontron,imx8mm-osm-s", "fsl,imx8mm";
|
/freebsd/contrib/ofed/opensm/include/opensm/ |
H A D | osm_congestion_control.h | 39 * OSM Congestion Control types and prototypes 77 struct osm_opensm *osm; member 118 int osm_congestion_control_setup(struct osm_opensm *osm); 120 int osm_congestion_control_wait_pending_transactions(struct osm_opensm *osm); 123 struct osm_opensm *osm,
|
H A D | osm_perfmgr.h | 135 struct osm_opensm *osm; member 289 struct osm_opensm *osm, 296 * osm
|
H A D | osm_event_plugin.h | 170 void *(*create) (struct osm_opensm *osm); 190 osm_epi_plugin_t *osm_epi_construct(struct osm_opensm *osm, char *plugin_name);
|
/freebsd/contrib/ofed/opensm/include/vendor/ |
H A D | osm_mtl_bind.h | 121 * OSM Callback function to be called on receive of MAD. 124 * OSM Callback to be called on send error. 127 * Points to the MAD pool used by OSM
|
H A D | osm_vendor_mtl_transaction_mgr.h | 175 * [in] Pointer to a Osm Vendor object. 195 * [in] Pointer to a Osm Vendor object. 243 * [in] Pointer to a Osm Vendor object. 266 * [in] Pointer to a Osm Vendor object.
|
H A D | osm_vendor_mlx_sender.h | 52 /****d* OSM Vendor/osmv_simple_send_madw 68 /****d* OSM Vendor/osmv_rmpp_send_madw
|
H A D | osm_vendor_ts.h | 123 * OSM Callback function to be called on receive of MAD. 126 * OSM Callback to be called on send error. 129 * Points to the MAD pool used by OSM
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | sgml | 32 # OpenStreetMap XML (.osm) 35 >>19 search/4096 \<osm OpenStreetMap XML data
|
H A D | pbf | 6 # OpenStreetMap Protocolbuffer Binary Format (.osm.pbf)
|
H A D | map | 215 # URL: http://www.pinns.co.uk/osm/net.html 252 # or OSM Street map 278 # Reference: http://www.pinns.co.uk/osm/typformat.html 293 # http://www.pinns.co.uk/osm/RGN.html
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | fsl.yaml | 952 - kontron,imx8mm-osm-s # i.MX8MM Kontron OSM-S (N802X) SOM 986 - description: Kontron BL i.MX8MM OSM-S (N802X S) Board 988 - const: kontron,imx8mm-bl-osm-s 989 - const: kontron,imx8mm-osm-s 1353 - description: Kontron OSM-S i.MX93 SoM based boards 1355 - const: kontron,imx93-bl-osm-s # Kontron BL i.MX93 OSM-S board 1356 - const: kontron,imx93-osm-s # Kontron OSM-S i.MX93 SoM
|