URL
https://opencores.org/ocsvn/soc_maker/soc_maker/trunk
Subversion Repositories soc_maker
[/] [soc_maker/] [trunk/] [lib/] [soc_maker/] [core_def.rb] - Rev 9
Go to most recent revision | Compare with Previous | Blame | View Log
###############################################################
#
# File: core_def.rb
#
# Author: Christian Hättich
#
# Project: System-On-Chip Maker
#
# Target: Linux / Windows / Mac
#
# Language: ruby
#
#
###############################################################
#
#
# Copyright (C) 2014 Christian Hättich - feddischson [ at ] opencores.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
###############################################################
#
# Description:
#
########
#
# TODO
#
#
###############################################################
module SOCMaker
#########
#
# This class represents a core definition.
# It is one of the central classes and holds data,
# which is used to describe and instanciate this core.
# In general, instances of this class desribe a core,
# it's interface and parameters as well as the files,
# which are required for synthesis/simulation.
#
# In addition to this core, there exist SOCMaker::CoreInst,
# which represents a concret instanciation of a definition.
#
class CoreDef < Component
include ERR
include YAML_EXT
attr_accessor :hdlfiles
def initialize( name, version, hdl_files, toplevel, optional = {} )
init_with( { 'name' => name,
'version' => version,
'hdlfiles' => hdl_files,
'toplevel' => toplevel }.merge( optional ) )
end
def encode_with( coder )
super coder
coder[ 'hdlfiles' ] = @hdlfiles
end
def init_with( coder )
super( coder )
@hdlfiles = coder[ 'hdlfiles' ] || {}
serr_if( !@hdlfiles.is_a?( Hash ),
'HDL file def. != Hash',
instance: @name,
field: 'hdlfiles' )
@hdlfiles.each do |file_name, defn |
serr_if( defn == nil,
'HDL file not defined',
instance: @name+":"+file_name.to_s )
serr_if( !defn.is_a?( SOCMaker::HDLFile ),
'HDL file not SOCMaker::HDLFile (use SOCM_HDL_FILE)',
instance: @name+":"+file_name.to_s )
end
end
def generics
@inst_parameters.each_with_index do |(name, val), i|
yield( name.to_s, val.type, val.default, i == @inst_parameters.size-1 )
end
end
# this is a core_def and doesn't have
# sub-cores
def get_core_def( inst )
return nil
end
def consistency_check
super
end
def param_ok?( param_name, param_value )
param = inst_parameters[ param_name.to_sym ]
param = static_parameters[ param_name.to_sym ] if param == nil
return false if param == nil
end
def ==(o)
o.class == self.class &&
o.hdlfiles == self.hdlfiles &&
super( o )
end
end # class CoreDef
end # module SOCMaker
# vim: noai:ts=2:sw=2
Go to most recent revision | Compare with Previous | Blame | View Log