/openbmc/qemu/docs/system/devices/ |
H A D | keyboard.rst | 4 ---------------- 12 With the escc.chnA-sunkbd-layout driver property it is possible to select 15 -global escc.chnA-sunkbd-layout=de 17 Depending on type of keyboard, the keyboard can have 6 or 5 dip-switches to 24 -global escc.chnA-sunkbd-layout=0x2b 26 -global escc.chnA-sunkbd-layout=43 28 -global escc.chnA-sunkbd-layout=sv 30 The above 3 examples all select a swedish keyboard layout. Table 3-15 at 31 https://docs.oracle.com/cd/E19683-01/806-6642/new-43/index.html explains which 35 .. list-table:: Language selection values for escc.chnA-sunkbd-layout [all …]
|
/openbmc/linux/Documentation/bpf/libbpf/ |
H A D | libbpf_overview.rst | 1 .. SPDX-License-Identifier: GPL-2.0 7 libbpf is a C-based library containing a BPF loader that takes compiled BPF 13 The following are the high-level features supported by libbpf: 15 * Provides high-level and low-level APIs for user space programs to interact 16 with BPF programs. The low-level APIs wrap all the bpf system call 17 functionality, which is useful when users need more fine-grained control 21 global variables and work with BPF programs. 22 * Provides BPF-side APIS, including BPF helper definitions, BPF maps support, 24 * Supports BPF CO-RE mechanism, enabling BPF developers to write portable 36 completely independent), BPF maps, and global variables. The global [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/leds/ |
H A D | issi,is31fl319x.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Vincent Knecht <vincent.knecht@mailoo.org> 14 Previously known as Si-En SN319{0,1,3,6,9}. 26 - issi,is31fl3190 27 - issi,is31fl3191 28 - issi,is31fl3193 29 - issi,is31fl3196 30 - issi,is31fl3199 [all …]
|
H A D | awinic,aw200xx.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Martin Kurbanov <mmkurbanov@sberdevices.ru> 19 aw20036 - https://www.awinic.com/en/productDetail/AW20036QNR#tech-docs 20 aw20054 - https://www.awinic.com/en/productDetail/AW20054QNR#tech-docs 21 aw20072 - https://www.awinic.com/en/productDetail/AW20072QNR#tech-docs 26 - awinic,aw20036 27 - awinic,aw20054 28 - awinic,aw20072 [all …]
|
/openbmc/linux/sound/pci/au88x0/ |
H A D | au88x0.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 73 //#define VORTEX_IS_QUAD(x) (((x)->codec == NULL) ? 0 : ((x)->codec->ext_id&0x80)) 74 #define VORTEX_IS_QUAD(x) ((x)->isquad) 77 (x->rev == 0xfe && x->device == PCI_DEVICE_ID_AUREAL_VORTEX_2) || \ 78 (x->rev == 0xfe && x->device == PCI_DEVICE_ID_AUREAL_ADVANTAGE)) 89 #define MIX_CAPT(x) (vortex->mixcapt[x]) 90 #define MIX_PLAYB(x) (vortex->mixplayb[x]) 91 #define MIX_SPDIF(x) (vortex->mixspdif[x]) 147 /* Global resources */ 221 /* global stuff. */ [all …]
|
/openbmc/linux/drivers/gpu/drm/imx/dcss/ |
H A D | dcss-dtg.c | 1 // SPDX-License-Identifier: GPL-2.0 13 #include "dcss-dev.h" 100 if (!dtg->in_use) in dcss_dtg_write() 101 dcss_writel(val, dtg->base_reg + ofs); in dcss_dtg_write() 103 dcss_ctxld_write(dtg->ctxld, dtg->ctx_id, in dcss_dtg_write() 104 val, dtg->base_ofs + ofs); in dcss_dtg_write() 112 status = dcss_readl(dtg->base_reg + DCSS_DTG_INT_STATUS); in dcss_dtg_irq_handler() 117 dcss_ctxld_kick(dtg->ctxld); in dcss_dtg_irq_handler() 119 dcss_writel(status & LINE0_IRQ, dtg->base_reg + DCSS_DTG_INT_CONTROL); in dcss_dtg_irq_handler() 129 dtg->ctxld_kick_irq = platform_get_irq_byname(pdev, "ctxld_kick"); in dcss_dtg_irq_config() [all …]
|
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/ |
H A D | lowlevel.S | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 3 * (C) Copyright 2014-2015 Freescale Semiconductor 12 #include <asm/arch-fsl-layerscape/soc.h> 17 #include <asm/arch-fsl-layerscape/immap_lsch3.h> 19 #include <asm/u-boot.h> 88 /* Set Wuo bit for RN-I 20 */ 95 * Set forced-order mode in RNI-6, RNI-20 97 * LS2080A family does not support setting forced-order mode, 115 /* Add fully-coherent masters to DVM domain */ 121 /* Set all RN-I ports to QoS of 15 */ [all …]
|
/openbmc/webui-vue/docs/guide/guidelines/ |
H A D | internationalization.md | 3 The OpenBMC Web UI implements internationalization and separates the language- 8 - [Vue I18n](https://kazupon.github.io/vue-i18n/introduction.html) 14 - Page specific labels should be nested in an object with a key prefixed `page` 17 - e.g. `pageLocalUserManagement.editUser` 18 - Any 'major' child components should be nested inside page specific objects 20 - e.g. `pageEventLogs.table.eventType` 21 - Avoid any complex linked locale messages. 22 - Alphabetize object keys. This helps in locating the keys. 23 - We use the `$t()` function in markup and `this.$t` in scripts (which Vue I18n 28 - A new `src/i18n.js` file is added and it registers Vue I18n as a plugin to our [all …]
|
/openbmc/webui-vue/src/views/Login/ |
H A D | Login.vue | 2 <b-form class="login-form" novalidate @submit.prevent="login"> 3 <alert class="login-error mb-4" :show="authError" variant="danger"> 4 <p id="login-error-alert"> 8 <b-form-group label-for="language" :label="$t('pageLogin.language')"> 9 <b-form-select 11 v-model="userLocale" 13 data-test-id="login-select-language" 14 ></b-form-select> 15 </b-form-group> 16 <b-form-group label-for="username" :label="$t('pageLogin.username')"> [all …]
|
/openbmc/linux/arch/arm64/boot/dts/ti/ |
H A D | k3-am6528-iot2050-basic-pg2.dts | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) Siemens AG, 2018-2021 9 * AM6528-based (dual-core) IOT2050 Basic variant, Product Generation 2 13 * https://new.siemens.com/global/en/products/automation/pc-based/iot-gateways/simatic-iot2050.html 16 /dts-v1/; 18 #include "k3-am6528-iot2050-basic-common.dtsi" 19 #include "k3-am65-iot2050-common-pg2.dtsi" 22 compatible = "siemens,iot2050-basic-pg2", "ti,am654";
|
H A D | k3-am6548-iot2050-advanced.dts | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) Siemens AG, 2018-2021 9 * AM6548-based (quad-core) IOT2050 Advanced variant, Product Generation 1 10 * 2 GB RAM, 16 GB eMMC, USB-serial converter on connector X30 13 * https://new.siemens.com/global/en/products/automation/pc-based/iot-gateways/simatic-iot2050.html 16 /dts-v1/; 18 #include "k3-am6548-iot2050-advanced-common.dtsi" 19 #include "k3-am65-iot2050-common-pg1.dtsi" 22 compatible = "siemens,iot2050-advanced", "ti,am654";
|
H A D | k3-am6528-iot2050-basic.dts | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) Siemens AG, 2018-2021 9 * AM6528-based (dual-core) IOT2050 Basic variant, Product Generation 1 13 * https://new.siemens.com/global/en/products/automation/pc-based/iot-gateways/simatic-iot2050.html 16 /dts-v1/; 18 #include "k3-am6528-iot2050-basic-common.dtsi" 19 #include "k3-am65-iot2050-common-pg1.dtsi" 22 compatible = "siemens,iot2050-basic", "ti,am654";
|
H A D | k3-am6548-iot2050-advanced-pg2.dts | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) Siemens AG, 2018-2021 9 * AM6548-based (quad-core) IOT2050 Advanced variant, Product Generation 2 10 * 2 GB RAM, 16 GB eMMC, USB-serial converter on connector X30 13 * https://new.siemens.com/global/en/products/automation/pc-based/iot-gateways/simatic-iot2050.html 16 /dts-v1/; 18 #include "k3-am6548-iot2050-advanced-common.dtsi" 19 #include "k3-am65-iot2050-common-pg2.dtsi" 22 compatible = "siemens,iot2050-advanced-pg2", "ti,am654"; 27 /* lock-step mode not supported on this board */ [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | etalab-2.0 | 4 - Version 2.0 5 - Avril 2017 9 ------------------------------------------------------------------- 14 illimitée, dans les conditions exprimées ci-dessous. 18 - de la reproduire, la copier, 19 - de l’adapter, la modifier, l’extraire et la transformer, pour créer des 21 - de la communiquer, la diffuser, la redistribuer, la publier et la transmettre, 22 - de l’exploiter à titre commercial, par exemple en la combinant avec d’autres 23 informations, ou en l’incluant dans son propre produit ou application. 27 - mentionner la paternité de l’« Information » : sa source (au moins le nom du [all …]
|
/openbmc/linux/Documentation/translations/sp_SP/process/ |
H A D | coding-style.rst | 1 .. include:: ../disclaimer-sp.rst 3 :Original: :ref:`Documentation/process/coding-style.rst <submittingpatches>` 8 Estilo en el código del kernel Linux 11 Este es un breve documento que describe el estilo preferido en el código 17 En primer lugar, sugeriría imprimir una copia de los estándares de código 24 ----------- 33 buscando en su pantalla durante 20 horas seguidas, le resultará mucho más 37 el código se mueva demasiado a la derecha y dificulta la lectura en una 39 necesita más de 3 niveles de sangría, está en apuros de todos modos y 42 En resumen, las sangrías de 8 caracteres facilitan la lectura y tienen la [all …]
|
/openbmc/linux/drivers/net/ethernet/freescale/enetc/ |
H A D | enetc_hw.h | 1 /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ 2 /* Copyright 2017-2019 NXP */ 46 /* VF-PF Message passing */ 109 /** SI BDR sub-blocks, n = 0..7 */ 368 /** Global regs, offset: 2_0000h */ 381 /* IP global registers, PF only */ 382 void __iomem *global; member 387 /* MDIO issue workaround (on LS1028A) - 391 * To protect the MDIO accesses a readers-writers locking 400 * group together multiple non-MDIO register accesses to [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/iio/accel/ |
H A D | murata,sca3300.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 3-axis industrial accelerometer with digital SPI interface 11 https://www.murata.com/en-global/products/sensor/accel/sca3300 14 - Tomas Melin <tomas.melin@vaisala.com> 19 - murata,sca3300 20 - murata,scl3300 25 spi-max-frequency: 29 - compatible [all …]
|
/openbmc/openbmc/poky/documentation/ |
H A D | README | 9 poky/documentation - The directory within the poky Git repository containing 18 yocto-docs/documentation - The Git repository for the Yocto Project manuals. 25 git clone git://git.yoctoproject.org/yocto-docs 28 yocto-docs Git repository. Later, they make it 37 * brief-yoctoprojectqs - Yocto Project Quick Start 38 * overview-manual - Yocto Project Overview and Concepts Manual 39 * contributor-guide - Yocto Project and OpenEmbedded Contributor Guide 40 * ref-manual - Yocto Project Reference Manual 41 * bsp-guide - Yocto Project Board Support Package (BSP) Developer's Guide 42 * dev-manual - Yocto Project Development Tasks Manual [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
H A D | nv50.c | 35 return fb->func->ram_new(&fb->base, pram); in nv50_fb_ram_new() 67 { 0x0000000a, "GLOBAL" }, 138 struct nvkm_subdev *subdev = &fb->base.subdev; in nv50_fb_intr() 139 struct nvkm_device *device = subdev->device; in nv50_fb_intr() 141 const struct nvkm_enum *en, *re, *cl, *sc; in nv50_fb_intr() local 159 if (device->chipset < 0xa3 || in nv50_fb_intr() 160 device->chipset == 0xaa || device->chipset == 0xac) { in nv50_fb_intr() 173 en = nvkm_enum_find(vm_engine, st0); in nv50_fb_intr() 176 if (cl && cl->data) sc = nvkm_enum_find(cl->data, st3); in nv50_fb_intr() 177 else if (en && en->data) sc = nvkm_enum_find(en->data, st3); in nv50_fb_intr() [all …]
|
/openbmc/ipmitool/lib/ |
H A D | ipmi_mc.c | 22 * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. 52 /* ipmi_mc_reset - attempt to reset an MC 60 * returns -1 on error 68 if( !intf->opened ) in ipmi_mc_reset() 69 intf->open(intf); in ipmi_mc_reset() 77 intf->noanswer = 1; in ipmi_mc_reset() 79 rsp = intf->sendrecv(intf, &req); in ipmi_mc_reset() 82 intf->abort = 1; in ipmi_mc_reset() 88 return (-1); in ipmi_mc_reset() 89 } else if (rsp->ccode > 0) { in ipmi_mc_reset() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn20/ |
H A D | dcn20_dccg.c | 36 (dccg_dcn->regs->reg) 40 dccg_dcn->dccg_shift->field_name, dccg_dcn->dccg_mask->field_name 43 dccg_dcn->base.ctx 45 dccg->ctx->logger 51 if (dccg->ref_dppclk && req_dppclk) { in dccg2_update_dpp_dto() 52 int ref_dppclk = dccg->ref_dppclk; in dccg2_update_dpp_dto() 55 // phase / modulo = dpp pipe clk / dpp global clk in dccg2_update_dpp_dto() 57 phase = ((modulo * req_dppclk) + ref_dppclk - 1) / ref_dppclk; in dccg2_update_dpp_dto() 74 dccg->pipe_dppclk_khz[dpp_inst] = req_dppclk; in dccg2_update_dpp_dto() 88 // DCN20 has never been validated for non-xtalin as reference in dccg2_get_dccg_ref_freq() [all …]
|
/openbmc/linux/net/mpls/ |
H A D | mpls_iptunnel.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 30 static unsigned int mpls_encap_size(struct mpls_iptunnel_encap *en) in mpls_encap_size() argument 33 return en->labels * sizeof(struct mpls_shim_hdr); in mpls_encap_size() 55 out_dev = dst->dev; in mpls_xmit() 61 !dst->lwtstate || skb_warn_if_lro(skb)) in mpls_xmit() 66 tun_encap_info = mpls_lwtunnel_encap(dst->lwtstate); in mpls_xmit() 71 * - disabled => use default TTL value from LWT in mpls_xmit() 72 * - enabled => use TTL value from IPv4/IPv6 header in mpls_xmit() 73 * - default => in mpls_xmit() 74 * Global ttl propagation setting: in mpls_xmit() [all …]
|
/openbmc/linux/Documentation/kernel-hacking/ |
H A D | false-sharing.rst | 1 .. SPDX-License-Identifier: GPL-2.0 22 +-----------+ +-----------+ 24 +-----------+ +-----------+ 28 +----------------------+ +----------------------+ 30 +----------------------+ +----------------------+ 32 ---------------------------+------------------+----------------------------- 34 +----------------------+ 36 +----------------------+ 38 +----------------------+ 47 There are many real-world cases of performance regressions caused by [all …]
|
/openbmc/qemu/hw/i386/ |
H A D | trace-events | 3 # x86-iommu.c 4 x86_iommu_iec_notify(bool global, uint32_t index, uint32_t mask) "Notify IEC invalidation: global=%… 12 vtd_inv_desc_iotlb_global(void) "iotlb invalidate global" 32 …date bus 0x%"PRIx8" devfn 0x%"PRIx8" high 0x%"PRIx64" low 0x%"PRIx64" gen %"PRIu32" -> gen %"PRIu32 37 … start, uint64_t end) "walk (base=0x%"PRIx64", level=%"PRIu32") iova range 0x%"PRIx64" - 0x%"PRIx64 38 …uint64_t gpa, uint64_t mask, int perm) "domain 0x%"PRIx16" iova 0x%"PRIx64" -> gpa 0x%"PRIx64" mas… 41 vtd_page_walk_skip_read(uint64_t iova, uint64_t next) "Page walk skip iova 0x%"PRIx64" - 0x%"PRIx64… 42 vtd_page_walk_skip_reserve(uint64_t iova, uint64_t next) "Page walk skip iova 0x%"PRIx64" - 0x%"PRI… 56 …4_t iova, uint64_t gpa, uint64_t mask) "dev %02x:%02x.%02x iova 0x%"PRIx64" -> gpa 0x%"PRIx64" mas… 57 vtd_dmar_enable(bool en) "enable %d" [all …]
|
/openbmc/webui-vue/src/store/modules/ |
H A D | GlobalStore.js | 37 languagePreference: localStorage.getItem('storedLanguage') || 'en-US', 102 .get(`${await this.dispatch('global/getBmcPath')}`) 112 .get(`${await this.dispatch('global/getSystemPath')}`)
|