XWOS API  4.0
XWOS C/C++ API参考手册
载入中...
搜索中...
未找到
chip.c 文件参考

玄武设备栈:SOC 更多...

#include <xwcd/ds/standard.h>
#include <string.h>
#include <xwcd/ds/soc/chip.h>
chip.c 的引用(Include)关系图:

浏览源代码.

函数

static xwer_t xwds_soc_vop_probe (struct xwds_soc *soc)
 XWDS VOP:探测SOC
 
static xwer_t xwds_soc_vop_remove (struct xwds_soc *soc)
 XWDS VOP:移除SOC
 
static xwer_t xwds_soc_vop_start (struct xwds_soc *soc)
 XWDS VOP:启动SOC
 
static xwer_t xwds_soc_vop_stop (struct xwds_soc *soc)
 XWDS VOP:停止SOC
 
static xwer_t xwds_soc_vop_suspend (struct xwds_soc *soc)
 XWDS VOP:暂停SOC
 
static xwer_t xwds_soc_vop_resume (struct xwds_soc *soc)
 XWDS VOP:继续SOC
 
void xwds_soc_construct (struct xwds_soc *soc)
 XWDS API:SOC构造函数
 
void xwds_soc_destruct (struct xwds_soc *soc)
 XWDS API:SOC对象的析构函数
 
xwer_t xwds_soc_grab (struct xwds_soc *soc)
 XWDS API:增加对象的引用计数
 
xwer_t xwds_soc_put (struct xwds_soc *soc)
 XWDS API:减少对象的引用计数
 
xwer_t xwds_soc_get_reset_reason (struct xwds_soc *soc, xwu64_t *reason)
 XWDS API:获取复位原因
 

变量

const struct xwds_virtual_operation xwds_soc_vop
 

详细描述

玄武设备栈:SOC

作者

在文件 chip.c 中定义.

函数说明

◆ xwds_soc_vop_probe()

static xwer_t xwds_soc_vop_probe ( struct xwds_soc soc)
static

XWDS VOP:探测SOC

参数
[in]socSOC对象指针

在文件 chip.c113 行定义.

114{
115 xwer_t rc;
116
117 XWDS_VALIDATE(soc->xwccfg, "nullptr", -EFAULT);
118
119 rc = xwds_device_vop_probe(&soc->dev);
120 return rc;
121}
xwer_t xwds_device_vop_probe(struct xwds_device *dev)
设备基本操作函数:探测设备
Definition device.c:67
#define XWDS_VALIDATE(exp, errstr,...)
Definition standard.h:51
#define EFAULT
Bad address
Definition errno.h:44
signed long xwer_t
Definition type.h:554
struct xwds_device dev
Definition chip.h:162
const void * xwccfg
Definition chip.h:165
函数调用图:

◆ xwds_soc_vop_remove()

static xwer_t xwds_soc_vop_remove ( struct xwds_soc soc)
static

XWDS VOP:移除SOC

参数
[in]socSOC对象指针

在文件 chip.c128 行定义.

129{
130 xwer_t rc;
131
132 rc = xwds_device_vop_remove(&soc->dev);
133 return rc;
134}
xwer_t xwds_device_vop_remove(struct xwds_device *dev)
设备基本操作函数:删除设备
Definition device.c:86
函数调用图:

◆ xwds_soc_vop_resume()

static xwer_t xwds_soc_vop_resume ( struct xwds_soc soc)
static

XWDS VOP:继续SOC

参数
[in]socSOC对象指针

在文件 chip.c182 行定义.

183{
184 xwer_t rc;
185
186 rc = xwds_device_vop_resume(&soc->dev);
187 return rc;
188}
xwer_t xwds_device_vop_resume(struct xwds_device *dev)
设备基本操作函数:继续设备
Definition device.c:163
函数调用图:

◆ xwds_soc_vop_start()

static xwer_t xwds_soc_vop_start ( struct xwds_soc soc)
static

XWDS VOP:启动SOC

参数
[in]socSOC对象指针

在文件 chip.c141 行定义.

142{
143 xwer_t rc;
144
145 rc = xwds_device_vop_start(&soc->dev);
146 return rc;
147}
xwer_t xwds_device_vop_start(struct xwds_device *dev)
设备基本操作函数:启动设备
Definition device.c:105
函数调用图:

◆ xwds_soc_vop_stop()

static xwer_t xwds_soc_vop_stop ( struct xwds_soc soc)
static

XWDS VOP:停止SOC

参数
[in]socSOC对象指针

在文件 chip.c154 行定义.

155{
156 xwer_t rc;
157
158 rc = xwds_device_vop_stop(&soc->dev);
159 return rc;
160}
xwer_t xwds_device_vop_stop(struct xwds_device *dev)
设备基本操作函数:停止设备
Definition device.c:124
函数调用图:

◆ xwds_soc_vop_suspend()

static xwer_t xwds_soc_vop_suspend ( struct xwds_soc soc)
static

XWDS VOP:暂停SOC

参数
[in]socSOC对象指针

在文件 chip.c169 行定义.

170{
171 xwer_t rc;
172
173 rc = xwds_device_vop_suspend(&soc->dev);
174 return rc;
175}
xwer_t xwds_device_vop_suspend(struct xwds_device *dev)
设备基本操作函数:暂停设备
Definition device.c:144
函数调用图:

变量说明

◆ xwds_soc_vop

const struct xwds_virtual_operation xwds_soc_vop
初始值:
= {
.probe = (void *)xwds_soc_vop_probe,
.remove = (void *)xwds_soc_vop_remove,
.start = (void *)xwds_soc_vop_start,
.stop = (void *)xwds_soc_vop_stop,
.suspend = (void *)xwds_soc_vop_suspend,
.resume = (void *)xwds_soc_vop_resume,
}
static xwer_t xwds_soc_vop_stop(struct xwds_soc *soc)
XWDS VOP:停止SOC
Definition chip.c:154
static xwer_t xwds_soc_vop_probe(struct xwds_soc *soc)
XWDS VOP:探测SOC
Definition chip.c:113
static xwer_t xwds_soc_vop_start(struct xwds_soc *soc)
XWDS VOP:启动SOC
Definition chip.c:141
static xwer_t xwds_soc_vop_resume(struct xwds_soc *soc)
XWDS VOP:继续SOC
Definition chip.c:182
static xwer_t xwds_soc_vop_remove(struct xwds_soc *soc)
XWDS VOP:移除SOC
Definition chip.c:128
static xwer_t xwds_soc_vop_suspend(struct xwds_soc *soc)
XWDS VOP:暂停SOC
Definition chip.c:169

在文件 chip.c45 行定义.