HomeSort by relevance Sort by last modified time
    Searched refs:Port (Results 1 - 25 of 438) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libmojo/mojo/edk/system/ports/
port.cc 5 #include "mojo/edk/system/ports/port.h"
11 Port::Port(uint64_t next_sequence_num_to_send,
20 Port::~Port() {}
port_ref.h 15 class Port;
22 PortRef(const PortName& name, scoped_refptr<Port> port);
31 Port* port() const { return port_.get(); } function in class:mojo::edk::ports::PortRef
34 scoped_refptr<Port> port_;
port.h 23 class Port : public base::RefCountedThreadSafe<Port> {
45 Port(uint64_t next_sequence_num_to_send,
49 friend class base::RefCountedThreadSafe<Port>;
51 ~Port();
53 DISALLOW_COPY_AND_ASSIGN(Port);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibGcc.c 28 Reads an 8-bit I/O port.
30 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
34 If 8-bit I/O port operations are not supported, then ASSERT().
36 @param Port The I/O port to read.
45 IN UINTN Port
50 __asm__ __volatile__ ("inb %w1,%b0" : "=a" (Data) : "d" ((UINT16)Port));
55 Writes an 8-bit I/O port.
57 Writes the 8-bit I/O port specified by Port with the value specified by Value
    [all...]
IoLibIcc.c 19 Reads an 8-bit I/O port.
21 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
25 If 8-bit I/O port operations are not supported, then ASSERT().
27 @param Port The I/O port to read.
35 IN UINTN Port
41 mov dx, word ptr [Port]
50 Writes an 8-bit I/O port.
52 Writes the 8-bit I/O port specified by Port with the value specified by Value
    [all...]
IoLibMsc.c 30 int _inp (unsigned short port);
31 unsigned short _inpw (unsigned short port);
32 unsigned long _inpd (unsigned short port);
33 int _outp (unsigned short port, int databyte );
34 unsigned short _outpw (unsigned short port, unsigned short dataword );
35 unsigned long _outpd (unsigned short port, unsigned long dataword );
55 Reads an 8-bit I/O port.
57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
61 If 8-bit I/O port operations are not supported, then ASSERT().
    [all...]
IoLibEbc.c 4 EBC does not support port I/O. All APIs in this file ASSERT().
20 Reads an 8-bit I/O port.
22 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
26 If 8-bit I/O port operations are not supported, then ASSERT().
28 @param Port The I/O port to read.
36 IN UINTN Port
44 Writes an 8-bit I/O port.
46 Writes the 8-bit I/O port specified by Port with the value specified by Value
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/I2CLib/
I2CLibInternal.h 22 UINTN GetI2cBase (UINT32 Socket, UINT8 Port);
25 I2cLibRuntimeSetup (UINT32 Socket, UINT8 Port);
I2CLibCommon.c 24 UINTN GetI2cBase (UINT32 Socket, UINT8 Port)
26 return PlatformGetI2cBase(Socket, Port);
30 I2cLibRuntimeSetup (UINT32 Socket, UINT8 Port)
I2CLibRuntime.c 32 UINTN GetI2cBase (UINT32 Socket, UINT8 Port)
34 if (gI2cBase[Socket][Port] == 0) {
35 gI2cBase[Socket][Port] = PlatformGetI2cBase(Socket, Port);
38 return gI2cBase[Socket][Port];
49 UINT8 Port;
54 for (Port = 0; Port < I2C_PORT_MAX; Port++) {
55 if (gI2cBase[Socket][Port] != 0) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/
IoLib.c 26 Reads a 64-bit I/O port.
28 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
32 If 64-bit I/O port operations are not supported, then ASSERT().
34 @param Port The I/O port to read.
42 IN UINTN Port
50 Writes a 64-bit I/O port.
52 Writes the 64-bit I/O port specified by Port with the value specified by Value
    [all...]
IoLibGcc.c 218 Reads an 8-bit I/O port.
220 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
224 If 8-bit I/O port operations are not supported, then ASSERT().
226 @param Port The I/O port to read.
235 IN UINTN Port
240 __asm__ __volatile__ ("inb %w1,%b0" : "=a" (Data) : "d" ((UINT16)Port));
245 Writes an 8-bit I/O port.
247 Writes the 8-bit I/O port specified by Port with the value specified by Value
    [all...]
IoHighLevel.c 35 Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the
36 result back to the 8-bit I/O port.
38 Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR
40 result to the 8-bit I/O port specified by Port. The value written to the I/O
41 port is returned. This function must guarantee that all I/O read and write
44 If 8-bit I/O port operations are not supported, then ASSERT().
46 @param Port The I/O port to write.
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/PcieInitDxe/
PcieInitLib.c 29 #define PCIE_REG_BASE(HostBridgeNum,port) (PCIE_APB_SLVAE_BASE[HostBridgeNum] + (UINT32)(port * 0x10000))
41 VOID PcieRegWrite(UINT32 Port, UINTN Offset, UINT32 Value)
43 RegWrite((UINT64)mPcieIntCfg.RegResource[Port] + Offset, Value);
47 UINT32 PcieRegRead(UINT32 Port, UINTN Offset)
51 RegRead((UINT64)mPcieIntCfg.RegResource[Port] + Offset, Value);
55 VOID PcieMmioWrite(UINT32 Port, UINTN Offset0, UINTN Offset1, UINT32 Value)
57 RegWrite((UINT64)mPcieIntCfg.CfgResource[Port] + Offset0 + Offset1, Value);
60 UINT32 PcieMmioRead(UINT32 Port, UINTN Offset0, UINTN Offset1)
63 RegRead((UINT64)mPcieIntCfg.CfgResource[Port] + Offset0 + Offset1, Value);
    [all...]
PcieInit.c 21 extern VOID PcieRegWrite(UINT32 Port, UINTN Offset, UINT32 Value);
22 extern EFI_STATUS PciePortReset(UINT32 HostBridgeNum, UINT32 Port);
27 //Port 0
39 //Port 1
50 //Port 2
61 //Port 3
80 UINT32 Port;
86 for (Port = 0; Port < PCIE_MAX_PORT_NUM; Port++)
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/Library/
QNCAccessLib.h 2 Library functions for Setting QNC internal network port
21 #define MESSAGE_READ_DW(Port, Reg) \
22 (UINT32)((QUARK_OPCODE_READ << QNC_MCR_OP_OFFSET) | ((Port << QNC_MCR_PORT_OFFSET) & 0xFF0000) | ((Reg << QNC_MCR_REG_OFFSET) & 0xFF00) | 0xF0)
24 #define MESSAGE_WRITE_DW(Port, Reg) \
25 (UINT32)((QUARK_OPCODE_WRITE << QNC_MCR_OP_OFFSET) | ((Port << QNC_MCR_PORT_OFFSET) & 0xFF0000) | ((Reg << QNC_MCR_REG_OFFSET) & 0xFF00) | 0xF0)
27 #define ALT_MESSAGE_READ_DW(Port, Reg) \
28 (UINT32)((QUARK_ALT_OPCODE_READ << QNC_MCR_OP_OFFSET) | ((Port << QNC_MCR_PORT_OFFSET) & 0xFF0000) | ((Reg << QNC_MCR_REG_OFFSET) & 0xFF00) | 0xF0)
30 #define ALT_MESSAGE_WRITE_DW(Port, Reg) \
31 (UINT32)((QUARK_ALT_OPCODE_WRITE << QNC_MCR_OP_OFFSET) | ((Port << QNC_MCR_PORT_OFFSET) & 0xFF0000) | ((Reg << QNC_MCR_REG_OFFSET) & 0xFF00) | 0xF0)
33 #define MESSAGE_IO_READ_DW(Port, Reg) \
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
HwIoDebug.c 49 UINTN Port;
56 Port = AsciiStrHexToUintn (Argv[1]);
60 Data = IoRead8 (Port);
62 Data = IoRead16 (Port);
64 Data = IoRead32 (Port);
69 AsciiPrint ("0x%04x = 0x%x", Port, Data);
100 UINTN Port;
107 Port = AsciiStrHexToUintn (Argv[1]);
112 IoWrite8 (Port, (UINT8)Data);
114 IoWrite16 (Port, (UINT16)Data);
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Drivers/PcieInit1610/
PcieInitLib.c 31 #define PCIE_REG_BASE(HostBridgeNum,port) (PCIE_APB_SLVAE_BASE[HostBridgeNum] + (UINT32)(port * 0x10000))
42 VOID PcieRegWrite(UINT32 Port, UINTN Offset, UINT32 Value)
44 RegWrite((UINT64)mPcieIntCfg.RegResource[Port] + Offset, Value);
48 UINT32 PcieRegRead(UINT32 Port, UINTN Offset)
52 RegRead((UINT64)mPcieIntCfg.RegResource[Port] + Offset, Value);
56 VOID PcieMmioWrite(UINT32 Port, UINTN Offset0, UINTN Offset1, UINT32 Value)
58 RegWrite((UINT64)mPcieIntCfg.CfgResource[Port] + Offset0 + Offset1, Value);
61 UINT32 PcieMmioRead(UINT32 Port, UINTN Offset0, UINTN Offset1)
64 RegRead((UINT64)mPcieIntCfg.CfgResource[Port] + Offset0 + Offset1, Value);
    [all...]
PcieInit.c 23 extern VOID PcieRegWrite(UINT32 Port, UINTN Offset, UINT32 Value);
24 extern EFI_STATUS PciePortReset(UINT32 HostBridgeNum, UINT32 Port);
29 //Port 0
41 //Port 1
52 //Port 2
63 //Port 3
73 //Port 4
83 //Port 5
93 //Port 6
103 //Port 7
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/Pp2Dxe/
Mvpp2Lib.h 41 /* number of RXQs used by single Port */
43 /* number of TXQs used by single Port */
89 IN PP2DXE_PORT *Port
99 IN PP2DXE_PORT *Port
104 IN PP2DXE_PORT *Port
135 IN PP2DXE_PORT *Port,
142 IN PP2DXE_PORT *Port,
149 IN PP2DXE_PORT *Port,
158 IN PP2DXE_PORT *Port,
183 IN PP2DXE_PORT *Port
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/
IoLib.c 22 Reads the I/O port specified by Port with registers width specified by Width.
26 @param Port The base address of the I/O operation.
36 IN UINTN Port,
43 Status = gSmst->SmmIo.Io.Read (&gSmst->SmmIo, Width, Port, 1, &Data);
52 Writes the I/O port specified by Port with registers width and value specified by Width
56 @param Port The base address of the I/O operation.
59 @param Data The value to write to the I/O port.
67 IN UINTN Port,
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Dxe/
IoFifo.h 20 Reads an 8-bit I/O port fifo into a block of memory.
22 Reads the 8-bit I/O fifo port specified by Port.
24 The port is read Count times, and the read data is
30 If 8-bit I/O port operations are not supported, then ASSERT().
32 @param Port The I/O port to read.
33 @param Count The number of times to read I/O port.
40 IN UINTN Port,
46 Reads a 16-bit I/O port fifo into a block of memory.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
EventChannel.h 23 Send an event to the remote end of the channel whose local endpoint is Port.
26 @param Port The port to notify.
33 IN evtchn_port_t Port
41 Allocate a port that can be bind from domain DomainId.
44 @param DomainId The domain ID that can bind the newly allocated port.
45 @param Port A pointer to a evtchn_port_t that will contain the newly
46 allocated port.
55 OUT evtchn_port_t *Port
59 Send an event to the remote end of the channel whose local endpoint is Port.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeIoLibCpuIo/
IoHighLevel.c 26 Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the
27 result back to the 8-bit I/O port.
29 Reads the 8-bit I/O port specified by Port, performs a bitwise inclusive OR
31 result to the 8-bit I/O port specified by Port. The value written to the I/O
32 port is returned. This function must guarantee that all I/O read and write
35 If 8-bit I/O port operations are not supported, then ASSERT().
37 @param Port The I/O port to write.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeIoLibCpuIo/
IoHighLevel.c 30 Reads an 8-bit I/O port, performs a bitwise OR, and writes the
31 result back to the 8-bit I/O port.
33 Reads the 8-bit I/O port specified by Port, performs a bitwise OR
35 result to the 8-bit I/O port specified by Port. The value written to the I/O
36 port is returned. This function must guarantee that all I/O read and write
39 If 8-bit I/O port operations are not supported, then ASSERT().
41 @param Port The I/O port to write.
    [all...]

Completed in 1266 milliseconds

1 2 3 4 5 6 7 8 91011>>