Home
last modified time | relevance | path

Searched +full:exported +full:- +full:sram (Results 1 – 25 of 27) sorted by relevance

12

/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sram/
H A Dsram.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/sram/sram.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Generic on-chip SRAM
10 - Rob Herring <robh@kernel.org>
15 Each child of the sram node specifies a region of reserved memory. Each
19 Following the generic-names recommended practice, node names should
25 pattern: "^sram(@.*)?"
30 - mmio-sram
[all …]
/OK3568_Linux_fs/kernel/drivers/misc/
H A Dsram.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Generic on-chip SRAM allocation driver
19 #include <soc/at91/atmel-secumod.h>
21 #include "sram.h"
33 mutex_lock(&part->lock); in sram_read()
34 memcpy_fromio(buf, part->base + pos, count); in sram_read()
35 mutex_unlock(&part->lock); in sram_read()
48 mutex_lock(&part->lock); in sram_write()
49 memcpy_toio(part->base + pos, buf, count); in sram_write()
50 mutex_unlock(&part->lock); in sram_write()
[all …]
H A DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
44 See Documentation/misc-devices/ad525x_dpot.rst for the
57 module will be called ad525x_dpot-i2c.
68 module will be called ad525x_dpot-spi.
90 This option enables device driver support for in-band access to the
103 website <https://www-03.ibm.com/systems/info/x86servers/serverproven/compat/us/>
142 an Intel Atom (non-netbook) mobile device containing a MIPI
218 tristate "CS5535/CS5536 Geode Multi-Function General Purpose Timer (MFGPT) support"
225 than the generic PIT, and are suitable for use as high-res timers.
241 tristate "CS5535/CS5536 high-res timer (MFGPT) events"
[all …]
/OK3568_Linux_fs/kernel/drivers/media/common/b2c2/
H A Dflexcop-common.h1 /* SPDX-License-Identifier: GPL-2.0 */
4 * flexcop-common.h - common header file for device-specific source files
14 #include "flexcop-reg.h"
25 #define FC_LOG_PREFIX "b2c2-undef"
58 * the B2C2-based PCI and USB devices.
108 /* exported prototypes */
121 /* from flexcop-dma.c */
138 /* from flexcop-eeprom.c */
142 /* from flexcop-i2c.c */
144 * one. We have it in flexcop-i2c.c, because it is going via the actual
[all …]
/OK3568_Linux_fs/kernel/arch/arm/mach-omap2/
H A Dsleep34xx.S1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Karthik Dasu <karthik-dp@ti.com>
9 * Richard Woodruff <r-woodruff2@ti.com>
20 #include "sram.h"
57 * with non-Thumb-2-capable firmware.
86 .arch armv7-a
89 stmfd sp!, {r4 - r11, lr} @ save registers on stack
103 ldmfd sp!, {r4 - r11, pc}
115 * omap34xx_cpu_suspend() - This bit of code saves the CPU context if needed
121 * - only the minimum set of functions gets copied to internal SRAM at boot
[all …]
/OK3568_Linux_fs/u-boot/drivers/net/
H A Dcs8900.h10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
15 * This program is loaded into SRAM in bootstrap mode, where it waits
18 * target board. Anything with a CL-PS7111 or EP7211 should be able to run
22 * SPDX-License-Identifier: GPL-2.0+
29 /* although the registers are 16 bit, they are 32-bit aligned on the
30 EDB7111. so we have to read them as 32-bit registers and ignore the
31 upper 16-bits. i'm not sure if this holds for the EDB7211. */
67 #define PP_ChipID 0x0000 /* Chip identifier - must be 0x630E */
137 #define PP_LineCTL_2partDefDis 0x2000 /* Disable two-part defferal */
141 #define PP_SelfCTL_Reset 0x0040 /* Self-clearing reset */
[all …]
H A Dax88180.c2 * ax88180: ASIX AX88180 Non-PCI Gigabit Ethernet u-boot driver
13 * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307,
19 * ASIX AX88180 Non-PCI 16/32-bit Gigabit Ethernet Linux Driver
23 * SRAM and supports both 16-bit and 32-bit SRAM-Like interfaces for any
33 * Date : 2008-07-07
73 while (--us_cnt) { in ax88180_mdio_check_complete()
85 struct ax88180_private *priv = (struct ax88180_private *)dev->priv; in ax88180_mdio_read()
88 OUTW (dev, (READ_PHY | (regaddr << 8) | priv->PhyAddr), MDIOCTRL); in ax88180_mdio_read()
102 struct ax88180_private *priv = (struct ax88180_private *)dev->priv; in ax88180_mdio_write()
106 OUTW (dev, (WRITE_PHY | (regaddr << 8) | priv->PhyAddr), MDIOCTRL); in ax88180_mdio_write()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/mmp/hw/
H A Dmmp_ctrl.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
16 /* ------------< LCD register >------------ */
150 #define LCD_SCLK(path) ((PATH_PN == path->id) ? LCD_CFG_SCLK_DIV :\
151 ((PATH_TV == path->id) ? LCD_TCLK_DIV : LCD_PN2_SCLK_DIV))
344 /* HWC SRAM Read Data Register */
347 /* Gamma Table SRAM Read Data Register */
351 /* Palette Table SRAM Read Data Register */
386 #define CFG_RXBITS(rx) (((rx) - 1)<<16) /* 0x1F~0x1 */
388 #define CFG_TXBITS(tx) (((tx) - 1)<<8) /* 0x1F~0x1 */
411 1. Smart Pannel 8-bit Bus Control Register.
[all …]
/OK3568_Linux_fs/kernel/Documentation/arm/omap/
H A Ddss.rst7 TV-out and multiple display support, but there are lots of small improvements
10 The DSS2 driver (omapdss module) is in arch/arm/plat-omap/dss/, and the FB,
15 --------
19 - MIPI DPI (parallel) output
20 - MIPI DSI output in command mode
21 - MIPI DBI (RFBI) output
22 - SDI output
23 - TV output
24 - All pieces can be compiled as a module or inside kernel
25 - Use DISPC to update any of the outputs
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/pcie/
H A Dinternal.h8 * Copyright(c) 2003 - 2015 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11 * Copyright(c) 2018 - 2019 Intel Corporation
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 * Copyright(c) 2003 - 2015 Intel Corporation. All rights reserved.
32 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34 * Copyright(c) 2018 - 2019 Intel Corporation
75 #include "iwl-fh.h"
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_gram.y20 * 3. Neither the names of the above-listed copyright holders nor the names
225 %left '+' '-'
313 if ($1->type != UNINITIALIZED) {
318 cur_symbol->type = cur_symtype;
328 if (cur_symbol->info.rinfo->valid_bitmask == 0)
329 cur_symbol->info.rinfo->valid_bitmask = 0xFF;
331 if (cur_symbol->info.rinfo->size == 0)
332 cur_symbol->info.rinfo->size = 1;
337 if (cur_symbol->type != REGISTER) {
338 if (cur_symbol->info.rinfo->address == 0)
[all …]
/OK3568_Linux_fs/kernel/drivers/bus/
H A Dmvebu-mbus.c14 * - One to configure the access of the CPU to the devices. Depending
20 * - One to configure the access to the CPU to the SDRAM. There are
26 * - Reads out the SDRAM address decoding windows at initialization
28 * informations. The exported function mv_mbus_dram_info() allow
33 * devices have to configure those device -> SDRAM windows to ensure
36 * - Provides an API for platform code or device drivers to
37 * dynamically add or remove address decoding windows for the CPU ->
42 * - Provides a debugfs interface in /sys/kernel/debug/mvebu-mbus/ to
43 * see the list of CPU -> SDRAM windows and their configuration
44 * (file 'sdram') and the list of CPU -> devices windows and their
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/amd/
H A Dnmclan_cs.c1 /* ----------------------------------------------------------------------------
23 Am79C90 (C-LANCE) Data Sheet, 1994
47 -------------------------------------------------------------------------------
49 -------------------------------------------------------------------------------
63 4. There is a bad slow-down problem in this driver.
68 -------------------------------------------------------------------------------
70 -------------------------------------------------------------------------------
72 * 2.5.75-ac1 2003/07/11 Alan Cox <alan@lxorguk.ukuu.org.uk>
80 * Re-implement MULTI_TX dev->tbusy handling.
106 Bug fix: Make all non-exported functions private by using
[all …]
/OK3568_Linux_fs/kernel/sound/pci/asihpi/
H A Dhpi6000.c1 // SPDX-License-Identifier: GPL-2.0-only
5 Copyright (C) 1997-2011 AudioScience Inc. <support@audioscience.com>
11 Exported functions:
18 (C) Copyright AudioScience Inc. 1998-2003
78 /* can't access SDRAM - test#1 */
80 /* can't access SDRAM - test#2 */
210 switch (phm->function) { in subsys_message()
215 phr->error = HPI_ERROR_INVALID_FUNC; in subsys_message()
223 struct hpi_hw_obj *phw = pao->priv; in control_message()
225 switch (phm->function) { in control_message()
[all …]
/OK3568_Linux_fs/u-boot/
H A DMakefile2 # SPDX-License-Identifier: GPL-2.0+
17 # o Do not use make's built-in rules and variables
18 # (this increases performance and avoids hard-to-debug behaviour);
20 MAKEFLAGS += -rR --include-dir=$(CURDIR)
34 # Most importantly: sub-Makefiles should only ever modify files in
37 # unavoidable when linking the built-in.o targets which finally
48 # ---------------------------------------------------------------------------
55 # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
62 # A simple variant is to prefix commands with $(Q) - that's useful
63 # for commands that shall be hidden in non-verbose mode.
[all …]
H A DREADME2 # (C) Copyright 2000 - 2013
5 # SPDX-License-Identifier: GPL-2.0+
11 This directory contains the source code for U-Boot, a boot loader for
17 The development of U-Boot is closely related to Linux: some parts of
39 scattered throughout the U-Boot source identifying the people or
43 actual U-Boot source tree; however, it can be created dynamically
53 U-Boot, you should send a message to the U-Boot mailing list at
54 <u-boot@lists.denx.de>. There is also an archive of previous traffic
55 on the mailing list - please search the archive before asking FAQ's.
56 Please see http://lists.denx.de/pipermail/u-boot and
[all …]
/OK3568_Linux_fs/kernel/drivers/usb/core/
H A Dhcd.c1 // SPDX-License-Identifier: GPL-2.0+
4 * (C) Copyright Johannes Erdfelt 1999-2001
9 * (C) Copyright David Brownell 2000-2002
23 #include <linux/dma-mapping.h>
45 /*-------------------------------------------------------------------------*/
51 * HCD-specific behaviors/bugs.
70 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
73 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
75 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
78 /*-------------------------------------------------------------------------*/
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dbfd.info5 Copyright (C) 1991-2021 Free Software Foundation, Inc.
11 Software", the Front-Cover texts being (a) (see below), and with the
12 Back-Cover Texts being (b) (see below). A copy of the license is
15 (a) The FSF's Front-Cover Text is:
19 (b) The FSF's Back-Cover Text is:
24 INFO-DIR-SECTION Software development
25 START-INFO-DIR-ENTRY
27 END-INFO-DIR-ENTRY
82 hard--David said "BFD". Stallman was right, but the name stuck.
85 different object file formats: IEEE-695, Oasys, Srecords, a.out and 68k
[all …]
H A Dgcc.info3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
8 Invariant Sections being "Funding Free Software", the Front-Cover Texts
9 being (a) (see below), and with the Back-Cover Texts being (b) (see
13 (a) The FSF's Front-Cover Text is:
17 (b) The FSF's Back-Cover Text is:
22 INFO-DIR-SECTION Software development
23 START-INFO-DIR-ENTRY
26 * gcov: (gcc) Gcov. 'gcov'--a test coverage program.
27 * gcov-tool: (gcc) Gcov-tool. 'gcov-tool'--an offline gcda profile processing program.
28 * gcov-dump: (gcc) Gcov-dump. 'gcov-dump'--an offline gcda and gcno profile dump tool.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dbfd.info5 Copyright (C) 1991-2021 Free Software Foundation, Inc.
11 Software", the Front-Cover texts being (a) (see below), and with the
12 Back-Cover Texts being (b) (see below). A copy of the license is
15 (a) The FSF's Front-Cover Text is:
19 (b) The FSF's Back-Cover Text is:
24 INFO-DIR-SECTION Software development
25 START-INFO-DIR-ENTRY
27 END-INFO-DIR-ENTRY
82 hard--David said "BFD". Stallman was right, but the name stuck.
85 different object file formats: IEEE-695, Oasys, Srecords, a.out and 68k
[all …]
H A Dgcc.info3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
8 Invariant Sections being "Funding Free Software", the Front-Cover Texts
9 being (a) (see below), and with the Back-Cover Texts being (b) (see
13 (a) The FSF's Front-Cover Text is:
17 (b) The FSF's Back-Cover Text is:
22 INFO-DIR-SECTION Software development
23 START-INFO-DIR-ENTRY
26 * gcov: (gcc) Gcov. 'gcov'--a test coverage program.
27 * gcov-tool: (gcc) Gcov-tool. 'gcov-tool'--an offline gcda profile processing program.
28 * gcov-dump: (gcc) Gcov-dump. 'gcov-dump'--an offline gcda and gcno profile dump tool.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/man/man1/
H A Daarch64-none-linux-gnu-gcc.118 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
73 .\" Fear. Run. Save yourself. No user-serviceable parts.
83 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
99 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
100 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]
H A Daarch64-none-linux-gnu-g++.118 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
73 .\" Fear. Run. Save yourself. No user-serviceable parts.
83 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
99 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
100 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/man/man1/
H A Darm-none-linux-gnueabihf-gcc.118 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
73 .\" Fear. Run. Save yourself. No user-serviceable parts.
83 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
99 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
100 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]
H A Darm-none-linux-gnueabihf-g++.118 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
73 .\" Fear. Run. Save yourself. No user-serviceable parts.
83 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
99 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
100 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]

12