hdl4se_mux4.c 7.7 KB
Newer Older
饶先宏's avatar
饶先宏 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
** HDL4SE: 软件Verilog综合仿真平台
** Copyright (C) 2021-2021, raoxianhong<raoxianhong@163.net>
** LCOM: 轻量级组件对象模型
** Copyright (C) 2021-2021, raoxianhong<raoxianhong@163.net>
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** * Redistributions of source code must retain the above copyright notice,
**   this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright notice,
**   this list of conditions and the following disclaimer in the documentation
**   and/or other materials provided with the distribution.
** * The name of the author may be used to endorse or promote products
**   derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
** THE POSSIBILITY OF SUCH DAMAGE.
*/

/*
* hdl4se_mux4.c
  修改记录:
	202105180851: rxh, initial version
饶先宏's avatar
饶先宏 已提交
36
	202105241522:rxh, 增加Detector接口
饶先宏's avatar
饶先宏 已提交
37 38 39
*/
#include "stdlib.h" 
#include "stdio.h"
饶先宏's avatar
饶先宏 已提交
40
#include "string.h"
饶先宏's avatar
饶先宏 已提交
41
#include "object.h"
饶先宏's avatar
饶先宏 已提交
42
#include "dlist.h"
饶先宏's avatar
饶先宏 已提交
43 44 45 46 47 48 49 50
#include "bignumber.h"
#include "hdl4secell.h"


/* 
HDL4SE_MUX4 
instance parameter: "8", width=8
*/
饶先宏's avatar
饶先宏 已提交
51 52 53 54

#define MUXSELW  2
#define MUXCOUNT (1 << MUXSELW)

饶先宏's avatar
饶先宏 已提交
55 56 57 58
typedef struct _sHDL4SEMux4 {
	OBJECT_HEADER
	INTERFACE_DECLARE(IHDL4SEUnit)
	HDL4SEUNIT_VARDECLARE
饶先宏's avatar
饶先宏 已提交
59 60
	INTERFACE_DECLARE(IHDL4SEDetector)
	HDL4SEDETECTOR_VARDECLARE
饶先宏's avatar
饶先宏 已提交
61 62
	DLIST_VARDECLARE
	
饶先宏's avatar
饶先宏 已提交
63 64 65 66 67
	IHDL4SEModule** parent;
	char* name;

	IHDL4SEUnit** sel;
	int sel_index;
饶先宏's avatar
饶先宏 已提交
68 69
	IHDL4SEUnit** in[MUXCOUNT];
	int in_index[MUXCOUNT];
饶先宏's avatar
饶先宏 已提交
70 71 72 73

	IBigNumber** in_sel;
	IBigNumber** out_data;

饶先宏's avatar
饶先宏 已提交
74
	int datavalid;
饶先宏's avatar
饶先宏 已提交
75 76 77 78 79
	int width;
}sHDL4SEMux4;

OBJECT_FUNCDECLARE(hdl4se_mux4, CLSID_HDL4SE_MUX4);
HDL4SEUNIT_FUNCDECLARE(hdl4se_mux4, CLSID_HDL4SE_MUX4, sHDL4SEMux4);
饶先宏's avatar
饶先宏 已提交
80
HDL4SEDETECTOR_FUNCDECLARE(hdl4se_mux4, CLSID_HDL4SE_MUX4, sHDL4SEMux4);
饶先宏's avatar
饶先宏 已提交
81
DLIST_FUNCIMPL(hdl4se_mux4, CLSID_HDL4SE_MUX4, sHDL4SEMux4);
饶先宏's avatar
饶先宏 已提交
82 83 84 85 86

OBJECT_FUNCIMPL(hdl4se_mux4, sHDL4SEMux4, CLSID_HDL4SE_MUX4);

QUERYINTERFACE_BEGIN(hdl4se_mux4, CLSID_HDL4SE_MUX4)
QUERYINTERFACE_ITEM(IID_HDL4SEUNIT, IHDL4SEUnit, sHDL4SEMux4)
饶先宏's avatar
饶先宏 已提交
87
QUERYINTERFACE_ITEM(IID_HDL4SEDETECTOR, IHDL4SEDetector, sHDL4SEMux4)
饶先宏's avatar
饶先宏 已提交
88
QUERYINTERFACE_ITEM(IID_DLIST, IDList, sHDL4SEMux4)
饶先宏's avatar
饶先宏 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
QUERYINTERFACE_END

static const char* hdl4se_mux4ModuleInfo()
{
	return "1.0.0-20210521.1415 HDL4Se Mux4 cell";
}

static int hdl4se_mux4Create(const PARAMITEM* pParams, int paramcount, HOBJECT* pObject)
{
	sHDL4SEMux4* pobj;
	int i;
	pobj = (sHDL4SEMux4*)malloc(sizeof(sHDL4SEMux4));
	if (pobj == NULL)
		return -1;
	*pObject = 0;
	HDL4SEUNIT_VARINIT(pobj, CLSID_HDL4SE_MUX4);
	INTERFACE_INIT(IHDL4SEUnit, pobj, hdl4se_mux4, hdl4se_unit);
饶先宏's avatar
饶先宏 已提交
106
	INTERFACE_INIT(IHDL4SEDetector, pobj, hdl4se_mux4, hdl4se_detector);
饶先宏's avatar
饶先宏 已提交
107 108
	DLIST_VARINIT(pobj, hdl4se_mux4);

饶先宏's avatar
饶先宏 已提交
109 110
	pobj->sel = NULL;
	pobj->sel_index = 0;
饶先宏's avatar
饶先宏 已提交
111
	for (i = 0; i < MUXCOUNT; i++) {
饶先宏's avatar
饶先宏 已提交
112 113 114 115 116 117 118 119 120
		pobj->in[i] = NULL;
		pobj->in_index[i] = 0;
	}
	pobj->in_sel = NULL;
	pobj->out_data = NULL;

	
	pobj->name = NULL;
	pobj->width = 8;
饶先宏's avatar
饶先宏 已提交
121
	pobj->datavalid = 0;
饶先宏's avatar
饶先宏 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	pobj->parent = NULL;

	for (i = 0; i < paramcount; i++) {
		if (pParams[i].name == PARAMID_HDL4SE_UNIT_NAME) {
			if (pobj->name != NULL)
				free(pobj->name);
			pobj->name = strdup(pParams[i].pvalue);
		} 
		else if (pParams[i].name == PARAMID_HDL4SE_UNIT_PARENT) {
			pobj->parent = (IHDL4SEModule **)pParams[i].pvalue;
		}
		else if (pParams[i].name == PARAMID_HDL4SE_UNIT_INSTANCE_PARAMETERS) {
			IBigNumber** temp = bigintegerCreate(32);
			if (temp != NULL) {
				const char* nstr;
				if (0 == objectCall2(temp, AssignStr, (const char*)pParams[i].pvalue, &nstr)) {
					objectCall1(temp, GetInt, &pobj->width);
				}
				objectRelease(temp);
			}
		}
	}

	if (pobj->width <= 0)
		return EIID_INVALIDPARAM;
饶先宏's avatar
饶先宏 已提交
147
	pobj->in_sel = bigintegerCreate(MUXSELW);
饶先宏's avatar
饶先宏 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
	pobj->out_data = bigintegerCreate(pobj->width);

	/* 返回生成的对象 */
	OBJECT_RETURN_GEN(hdl4se_mux4, pobj, pObject, CLSID_HDL4SE_MUX4);
	return EIID_OK;
}

static void hdl4se_mux4Destroy(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	int i;
	pobj = (sHDL4SEMux4*)objectThis(object);
	if (pobj->name != NULL)
		free(pobj->name);
	objectRelease(pobj->sel);
饶先宏's avatar
饶先宏 已提交
163
	for (i = 0; i < MUXCOUNT; i++) {
饶先宏's avatar
饶先宏 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
		objectRelease(pobj->in[i]);
	}
	objectRelease(pobj->in_sel);
	objectRelease(pobj->out_data);
	memset(pobj, 0, sizeof(sHDL4SEMux4));
	free(pobj);
}

static int hdl4se_mux4Valid(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	return 1;
}

static int hdl4se_mux4_hdl4se_unit_Connect(HOBJECT object, int index, HOBJECT from, int fromindex) 
{
	sHDL4SEMux4* pobj;
	IHDL4SEUnit** unit = NULL;
	pobj = (sHDL4SEMux4*)objectThis(object);
	if (index == 0) {
		if (0 == objectQueryInterface(from, IID_HDL4SEUNIT, (void**)&unit)) {
			objectRelease(pobj->sel);
			pobj->sel = unit;
			pobj->sel_index = fromindex;
		}
		else {
			return -2;
		}
	}
饶先宏's avatar
饶先宏 已提交
194
	else if (index >= 1 && index <= MUXCOUNT) {
饶先宏's avatar
饶先宏 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
		if (0 == objectQueryInterface(from, IID_HDL4SEUNIT, (void**)&unit)) {
			objectRelease(pobj->in[index-1]);
			pobj->in[index-1] = unit;
			pobj->in_index[index-1] = fromindex;
		}
		else {
			return -2;
		}
	}
	else {
		return -1;
	}
	return 0;
}

static int hdl4se_mux4_hdl4se_unit_GetValue(HOBJECT object, int index, int width, IBigNumber ** value)
{
	int i;
	int sel;
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
饶先宏's avatar
饶先宏 已提交
216
	if (pobj->datavalid == 0) {
饶先宏's avatar
饶先宏 已提交
217 218
		objectCall3(pobj->sel, GetValue, pobj->sel_index, MUXSELW, pobj->in_sel);
		objectCall2(pobj->in_sel, SetWidth, MUXSELW, 0);
饶先宏's avatar
饶先宏 已提交
219
		objectCall1(pobj->in_sel, GetInt, &sel);
饶先宏's avatar
饶先宏 已提交
220
		sel &= MUXCOUNT - 1;
饶先宏's avatar
饶先宏 已提交
221 222 223 224 225 226 227
		if (sel >= 0 && sel < MUXCOUNT) {
			objectCall3(pobj->in[sel], GetValue, pobj->in_index[sel], pobj->width, pobj->out_data);
		}
		else {
			return -2;
		}
		pobj->datavalid = 1;
饶先宏's avatar
饶先宏 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
	}
	objectCall1(value, Assign, pobj->out_data);
	return 0;
}


static int hdl4se_mux4_hdl4se_unit_ClkTick(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	return 0;
}

static int hdl4se_mux4_hdl4se_unit_Setup(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
饶先宏's avatar
饶先宏 已提交
245
	pobj->datavalid = 0;
饶先宏's avatar
饶先宏 已提交
246 247 248
	return 0;
}

饶先宏's avatar
饶先宏 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
static int hdl4se_mux4_hdl4se_detector_GetName(HOBJECT object, const char** pname)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	*pname = pobj->name;
	return 0;
}

static int hdl4se_mux4_hdl4se_detector_GetSignalCount(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	return 1;
}

饶先宏's avatar
饶先宏 已提交
264
static int hdl4se_mux4_hdl4se_detector_GetSignalInfo(HOBJECT object, int index, const char** pname, int * width)
饶先宏's avatar
饶先宏 已提交
265 266 267 268
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	*pname = "out";
饶先宏's avatar
饶先宏 已提交
269
	*width = pobj->width;
饶先宏's avatar
饶先宏 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	return 0;
}

static int hdl4se_mux4_hdl4se_detector_GetSignalValue(HOBJECT object, int index, IBigNumber** value)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	objectCall1(value, Assign, pobj->out_data);
	return 0;
}

static int hdl4se_mux4_hdl4se_detector_GetUnitCount(HOBJECT object)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	return 0;
}

static int hdl4se_mux4_hdl4se_detector_GetUnit(HOBJECT object, int index, HOBJECT* unit)
{
	sHDL4SEMux4* pobj;
	pobj = (sHDL4SEMux4*)objectThis(object);
	return 0;
}