Searched +full:srom +full:- +full:page +full:- +full:mode (Results 1 – 16 of 16) sorted by relevance
/openbmc/linux/Documentation/devicetree/bindings/memory-controllers/ |
H A D | exynos-srom.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/memory-controllers/exynos-srom.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Samsung Exynos SoC SROM Controller driver 10 - Krzysztof Kozlowski <krzk@kernel.org> 13 The SROM controller can be used to attach external peripherals. In this case 19 - const: samsung,exynos4210-srom 24 "#address-cells": 27 "#size-cells": [all …]
|
/openbmc/linux/drivers/memory/samsung/ |
H A D | exynos-srom.c | 1 // SPDX-License-Identifier: GPL-2.0 6 // Exynos - SROM Controller support 17 #include "exynos-srom.h" 20 /* SROM side */ 29 * struct exynos_srom_reg_dump: register dump of SROM Controller registers. 30 * @offset: srom register offset from the controller base address. 39 * struct exynos_srom: platform data for exynos srom controller driver. 41 * @reg_base: srom base address 67 static int exynos_srom_configure_bank(struct exynos_srom *srom, in exynos_srom_configure_bank() argument 75 return -EINVAL; in exynos_srom_configure_bank() [all …]
|
/openbmc/linux/arch/arm/boot/dts/samsung/ |
H A D | exynos5410-smdk5410.dts | 1 // SPDX-License-Identifier: GPL-2.0 9 /dts-v1/; 11 #include <dt-bindings/interrupt-controller/irq.h> 27 stdout-path = "serial2:115200n8"; 31 compatible = "fixed-clock"; 32 clock-frequency = <24000000>; 33 clock-output-names = "fin_pll"; 34 #clock-cells = <0>; 37 pmic_ap_clk: pmic-ap-clk { 39 compatible = "fixed-clock"; [all …]
|
/openbmc/u-boot/arch/arm/mach-s5pc1xx/include/mach/ |
H A D | sromc.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 7 * (SROM, NAND Flash, OneNand, DDR, OneDRAM) on S5PC1XX. 16 #define SMC_BYTE_ADDR_MODE(x) (1<<((x*4)+1)) /* 0-> Half-word base address*/ 17 /* 1-> Byte base address*/ 21 #define SMC_BC_TACS(x) (x << 28) /* 0clk address set-up */ 22 #define SMC_BC_TCOS(x) (x << 24) /* 4clk chip selection set-up */ 26 #define SMC_BC_TACP(x) (x << 4) /* 6clk page mode access cycle */ 27 #define SMC_BC_PMC(x) (x << 0) /* normal(1data)page mode configuration */
|
/openbmc/u-boot/arch/arm/mach-exynos/include/mach/ |
H A D | sromc.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 13 #define SROMC_BYTE_ADDR_MODE(x) (1<<((x*4)+1)) /* 0-> Half-word base address*/ 14 /* 1-> Byte base address*/ 18 #define SROMC_BC_TACS(x) (x << 28) /* address set-up */ 19 #define SROMC_BC_TCOS(x) (x << 24) /* chip selection set-up */ 23 #define SROMC_BC_TACP(x) (x << 4) /* page mode access cycle */ 24 #define SROMC_BC_PMC(x) (x << 0) /* normal(1data)page mode configuration */ 49 u8 bank; /* srom bank number */
|
/openbmc/u-boot/drivers/net/ |
H A D | dm9000x.c | 1 // SPDX-License-Identifier: GPL-2.0+ 8 (C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved. 15 E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200 21 v1.1 11/09/2001 fix force mode bug 25 Added tx/rx 32 bit mode. 28 -------------------------------------- 30 12/15/2003 Initial port to u-boot by 34 - Fixed the driver to work with DM9000A. 38 - Added autodetect of databus width. 39 - Made debug code compile again. [all …]
|
/openbmc/u-boot/ |
H A D | README | 1 # SPDX-License-Identifier: GPL-2.0+ 3 # (C) Copyright 2000 - 2013 9 This directory contains the source code for U-Boot, a boot loader for 15 The development of U-Boot is closely related to Linux: some parts of 37 scattered throughout the U-Boot source identifying the people or 41 actual U-Boot source tree; however, it can be created dynamically 51 U-Boot, you should send a message to the U-Boot mailing list at 52 <u-boot@lists.denx.de>. There is also an archive of previous traffic 53 on the mailing list - please search the archive before asking FAQ's. 54 Please see http://lists.denx.de/pipermail/u-boot and [all …]
|
/openbmc/u-boot/doc/ |
H A D | README.fsl-ddr | 1 Table of interleaving 2-4 controllers 3 +--------------+-----------------------------------------------------------+ 6 |--------------+--------------+--------------+-----------------------------+ 8 | complexes +--------------+--------------+ | 9 | | 2-way Intlv'ed | | 10 |--------------+--------------+--------------+--------------+ | 12 | Three memory +--------------+--------------+--------------+ | 13 | complexes | 2-way Intlv'ed | Not Intlv'ed | | 14 | +-----------------------------+--------------+ | 15 | | 3-way Intlv'ed | | [all …]
|
/openbmc/linux/drivers/net/ethernet/davicom/ |
H A D | dm9000.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 6 * (C) Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved. 39 /* Board/System/Debug information/definition ---------------- */ 57 MODULE_PARM_DESC(debug, "dm9000 debug level (0-6)"); 87 /* Structure/enum declaration ------------------------------- */ 143 dev_dbg(db->dev, msg); \ 152 /* DM9000 network board routine ---------------------------- */ 160 writeb(reg, db->io_addr); in ior() 161 return readb(db->io_data); in ior() 171 writeb(reg, db->io_addr); in iow() [all …]
|
/openbmc/linux/drivers/net/ethernet/apple/ |
H A D | bmac.c | 1 // SPDX-License-Identifier: GPL-2.0-only 30 #include <asm/page.h> 38 #define trunc_page(x) ((void *)(((unsigned long)(x)) & ~((unsigned long)(PAGE_SIZE - 1)))) 39 #define round_page(x) trunc_page(((unsigned long)(x)) + ((unsigned long)(PAGE_SIZE - 1))) 180 dbdma_st32(&dmap->control, in dbdma_continue() 188 dbdma_st32(&dmap->control, in dbdma_reset() 191 while (dbdma_ld32(&dmap->status) & RUN) in dbdma_reset() 200 out_le16(&cp->command, cmd); in dbdma_setcmd() 201 out_le16(&cp->req_count, count); in dbdma_setcmd() 202 out_le32(&cp->phy_addr, addr); in dbdma_setcmd() [all …]
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
H A D | main.c | 3 * Copyright (c) 2013 Hauke Mehrtens <hauke@hauke-m.de> 50 /* n-mode support capability */ 82 #define EDCF_ECW2CW(exp) ((1 << (exp)) - 1) 133 /* Per-AC retry limit register definitions; uses defs.h bitfield macros */ 167 #define BRCMS_PLCP_AUTO -1 172 #define BRCMS_PROTECTION_AUTO -1 199 /* MSC in use,indicates b0-6 holds an mcs */ 203 /* stf mode mask: siso, cdd, stbc, sdm */ 205 /* stf mode shift */ 209 #define NRATE_SGI_MASK 0x00800000 /* sgi mode */ [all …]
|
/openbmc/linux/ |
H A D | opengrok1.0.log | 1 2024-12-28 20:07:11.902-0600 FINER t583 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' 2 2024-12-28 20:07:11.913-0600 FINEST t583 Statistics.logIt: Added: '/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' (CAnalyzer) (took 116 ms) 3 2024-12-28 20:07:11.899-0600 FINER t593 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/tools/testing/selftests/powerpc/tm/tm-signa [all...] |
H A D | opengrok0.0.log | 1 2024-12-28 20:09:05.996-0600 FINEST t1171 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/linux/drivers/staging/media/av7110/video-continue.rst.gz' 2 2024-12-28 20:09:05.942-0600 FINEST t1149 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/u-boot/arch/sh/config.mk.gz' 3 2024-12-2 [all...] |
H A D | opengrok2.0.log | 1 2024-12-28 20:05:26.116-0600 FINEST t586 Statistics.logIt: Added: '/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/rtnetlink.sh' (ShAnalyzer) (took 79 ms) 2 2024-12-28 20:05:26.112-0600 FINER t592 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/qemu',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/qemu/chardev/spice.c' 3 2024-12-28 20:05:26.116-0600 FINEST t592 Statistics.logIt: Added: '/openbmc/qemu/chardev/spice.c' (CAnalyzer) (took 33 ms) 4 2024-1 [all...] |
/openbmc/ |
D | opengrok1.0.log | 1 2025-01-08 03:00:39.311-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-01-08 03:00:39.421-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |
D | opengrok2.0.log | 1 2025-01-07 03:00:34.968-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-01-07 03:00:35.081-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |