mirror of
https://github.com/holub/mame
synced 2025-10-04 16:34:53 +03:00

and paths consistently for devices, I/O ports, memory regions, memory banks, and memory shares. [Aaron Giles] NOTE: there are likely regressions lurking here, mostly due to devices not being properly found. I have temporarily added more logging to -verbose to help understand what's going on. Please let me know ASAP if anything that is being actively worked on got broken. As before, the driver device is the root device and all other devices are owned by it. Previously all devices were kept in a single master list, and the hierarchy was purely logical. With this change, each device owns its own list of subdevices, and the hierarchy is explicitly manifest. This means when a device is removed, all of its subdevices are automatically removed as well. A side effect of this is that walking the device list is no longer simple. To address this, a new set of iterator classes is provided, which walks the device tree in a depth first manner. There is a general device_iterator class for walking all devices, plus templates for a device_type_iterator and a device_interface_iterator which are used to build iterators for identifying only devices of a given type or with a given interface. Typedefs for commonly-used cases (e.g., screen_device_iterator, memory_interface_iterator) are provided. Iterators can also provide counts, and can perform indexed lookups. All device name lookups are now done relative to another device. The maching_config and running_machine classes now have a root_device() method to get the root of the hierarchy. The existing machine->device("name") is now equivalent to machine->root_device().subdevice("name"). A proper and normalized device path structure is now supported. Device names that start with a colon are treated as absolute paths from the root device. Device names can also use a caret (^) to refer to the owning device. Querying the device's tag() returns the device's full path from the root. A new method basetag() returns just the final tag. The new pathing system is built on top of the device_t::subtag() method, so anyone using that will automatically support the new pathing rules. Each device has its own internal map to cache successful lookups so that subsequent lookups should be very fast. Updated every place I could find that referenced devices, memory regions, I/O ports, memory banks and memory shares to leverage subtag/subdevice (or siblingtag/siblingdevice which are built on top). Removed the device_list class, as it doesn't apply any more. Moved some of its methods into running_machine instead. Simplified the device callback system since the new pathing can describe all of the special-case devices that were previously handled manually. Changed the core output function callbacks to be delegates. Completely rewrote the validity checking mechanism. The validity checker is now a proper C++ class, and temporarily takes over the error and warning outputs. All errors and warnings are collected during a session, and then output in a consistent manner, with an explicit driver and source file listed for each one, as well as additional device and/or I/O port contexts where appropriate. Validity checkers should no longer explicitly output this information, just the error, assuming that the context is provided. Rewrote the software_list_device as a modern device, getting rid of the software_list_config abstraction and simplifying things. Changed the way FLAC compiles so that it works like other external libraries, and also compiles successfully for MSVC builds.
565 lines
12 KiB
C
565 lines
12 KiB
C
/***************************************************************************
|
|
|
|
I2C Memory
|
|
|
|
Generic ram/rom/eeprom/flash on an i2c bus. Supports specifying the slave address,
|
|
the data size & the page size for writing.
|
|
|
|
inputs:
|
|
e0,e1,e2 lower 3 bits of the slave address
|
|
sda serial data
|
|
scl serial clock
|
|
wc write protect
|
|
|
|
outputs:
|
|
sda serial data
|
|
|
|
The memory address is only 8 bits, devices larger than this have multiple slave addresses.
|
|
The top five address bits are set at manufacture time, two values are standard.
|
|
Up to 4096 bytes can be addressed.
|
|
|
|
***************************************************************************/
|
|
|
|
#include "emu.h"
|
|
#include "machine/i2cmem.h"
|
|
|
|
#define STATE_IDLE ( 0 )
|
|
#define STATE_DEVSEL ( 1 )
|
|
#define STATE_BYTEADDR ( 2 )
|
|
#define STATE_DATAIN ( 3 )
|
|
#define STATE_DATAOUT ( 4 )
|
|
|
|
#define DEVSEL_RW ( 1 )
|
|
#define DEVSEL_ADDRESS ( 0xfe )
|
|
|
|
//**************************************************************************
|
|
// DEBUGGING
|
|
//**************************************************************************
|
|
|
|
#define VERBOSE_LEVEL ( 0 )
|
|
|
|
INLINE void ATTR_PRINTF( 3, 4 ) verboselog( device_t *device, int n_level, const char *s_fmt, ... )
|
|
{
|
|
if( VERBOSE_LEVEL >= n_level )
|
|
{
|
|
va_list v;
|
|
char buf[ 32768 ];
|
|
va_start( v, s_fmt );
|
|
vsprintf( buf, s_fmt, v );
|
|
va_end( v );
|
|
logerror( "%s: I2CMEM(%s) %s", device->machine().describe_context( ), device->tag(), buf );
|
|
}
|
|
}
|
|
|
|
//**************************************************************************
|
|
// GLOBAL VARIABLES
|
|
//**************************************************************************
|
|
|
|
// device type definition
|
|
const device_type I2CMEM = &device_creator<i2cmem_device>;
|
|
|
|
static ADDRESS_MAP_START( i2cmem_map8, AS_PROGRAM, 8 )
|
|
AM_RANGE(0x0000, 0x0fff) AM_RAM
|
|
ADDRESS_MAP_END
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// LIVE DEVICE
|
|
//**************************************************************************
|
|
|
|
//-------------------------------------------------
|
|
// i2cmem_device - constructor
|
|
//-------------------------------------------------
|
|
|
|
i2cmem_device::i2cmem_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
|
|
: device_t(mconfig, I2CMEM, "I2CMEM", tag, owner, clock),
|
|
device_memory_interface(mconfig, *this),
|
|
device_nvram_interface(mconfig, *this),
|
|
m_scl( 0 ),
|
|
m_sdaw( 0 ),
|
|
m_e0( 0 ),
|
|
m_e1( 0 ),
|
|
m_e2( 0 ),
|
|
m_wc( 0 ),
|
|
m_sdar( 1 ),
|
|
m_state( STATE_IDLE )
|
|
{
|
|
m_address_bits = 0;
|
|
|
|
int i = m_data_size - 1;
|
|
while( i > 0 )
|
|
{
|
|
m_address_bits++;
|
|
i >>= 1;
|
|
}
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// static_set_interface - set the device
|
|
// configuration
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::static_set_interface(device_t &device, const i2cmem_interface &interface)
|
|
{
|
|
i2cmem_device &i2cmem = downcast<i2cmem_device &>(device);
|
|
static_cast<i2cmem_interface &>(i2cmem) = interface;
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_config_complete - perform any
|
|
// operations now that the configuration is
|
|
// complete
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::device_config_complete()
|
|
{
|
|
m_space_config = address_space_config( "i2cmem", ENDIANNESS_BIG, 8, m_address_bits, 0, *ADDRESS_MAP_NAME( i2cmem_map8 ) );
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_validity_check - perform validity checks
|
|
// on this device
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::device_validity_check(validity_checker &valid) const
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_start - device-specific startup
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::device_start()
|
|
{
|
|
if( m_page_size > 0 )
|
|
{
|
|
m_page = auto_alloc_array( machine(), UINT8, m_page_size );
|
|
}
|
|
|
|
save_item( NAME(m_scl) );
|
|
save_item( NAME(m_sdaw) );
|
|
save_item( NAME(m_e0) );
|
|
save_item( NAME(m_e1) );
|
|
save_item( NAME(m_e2) );
|
|
save_item( NAME(m_wc) );
|
|
save_item( NAME(m_sdar) );
|
|
save_item( NAME(m_state) );
|
|
save_item( NAME(m_bits) );
|
|
save_item( NAME(m_shift) );
|
|
save_item( NAME(m_devsel) );
|
|
save_item( NAME(m_byteaddr) );
|
|
save_pointer( NAME(m_page), m_page_size );
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_reset - device-specific reset
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::device_reset()
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// memory_space_config - return a description of
|
|
// any address spaces owned by this device
|
|
//-------------------------------------------------
|
|
|
|
const address_space_config *i2cmem_device::memory_space_config( address_spacenum spacenum ) const
|
|
{
|
|
return ( spacenum == 0 ) ? &m_space_config : NULL;
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// nvram_default - called to initialize NVRAM to
|
|
// its default state
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::nvram_default()
|
|
{
|
|
int i2cmem_bytes = m_data_size;
|
|
|
|
UINT16 default_value = 0xff;
|
|
for( offs_t offs = 0; offs < i2cmem_bytes; offs++ )
|
|
{
|
|
m_addrspace[ 0 ]->write_byte( offs, default_value );
|
|
}
|
|
|
|
/* populate from a memory region if present */
|
|
if( m_region != NULL )
|
|
{
|
|
if( m_region->bytes() != i2cmem_bytes )
|
|
{
|
|
fatalerror( "i2cmem region '%s' wrong size (expected size = 0x%X)", tag(), i2cmem_bytes );
|
|
}
|
|
|
|
if( m_region->width() != 1 )
|
|
{
|
|
fatalerror( "i2cmem region '%s' needs to be an 8-bit region", tag() );
|
|
}
|
|
|
|
for( offs_t offs = 0; offs < i2cmem_bytes; offs++ )
|
|
{
|
|
m_addrspace[ 0 ]->write_byte( offs, m_region->u8( offs ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// nvram_read - called to read NVRAM from the
|
|
// .nv file
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::nvram_read( emu_file &file )
|
|
{
|
|
int i2cmem_bytes = m_data_size;
|
|
UINT8 *buffer = auto_alloc_array( machine(), UINT8, i2cmem_bytes );
|
|
|
|
file.read( buffer, i2cmem_bytes );
|
|
|
|
for( offs_t offs = 0; offs < i2cmem_bytes; offs++ )
|
|
{
|
|
m_addrspace[ 0 ]->write_byte( offs, buffer[ offs ] );
|
|
}
|
|
|
|
auto_free( machine(), buffer );
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// nvram_write - called to write NVRAM to the
|
|
// .nv file
|
|
//-------------------------------------------------
|
|
|
|
void i2cmem_device::nvram_write( emu_file &file )
|
|
{
|
|
int i2cmem_bytes = m_data_size;
|
|
UINT8 *buffer = auto_alloc_array( machine(), UINT8, i2cmem_bytes );
|
|
|
|
for( offs_t offs = 0; offs < i2cmem_bytes; offs++ )
|
|
{
|
|
buffer[ offs ] = m_addrspace[ 0 ]->read_byte( offs );
|
|
}
|
|
|
|
file.write( buffer, i2cmem_bytes );
|
|
|
|
auto_free( machine(), buffer );
|
|
}
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// READ/WRITE HANDLERS
|
|
//**************************************************************************
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_e0_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_e0_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_e0_line( int state )
|
|
{
|
|
state &= 1;
|
|
if( m_e0 != state )
|
|
{
|
|
verboselog( this, 2, "set e0 %d\n", state );
|
|
m_e0 = state;
|
|
}
|
|
}
|
|
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_e1_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_e1_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_e1_line( int state )
|
|
{
|
|
state &= 1;
|
|
if( m_e1 != state )
|
|
{
|
|
verboselog( this, 2, "set e1 %d\n", state );
|
|
m_e1 = state;
|
|
}
|
|
}
|
|
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_e2_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_e2_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_e2_line( int state )
|
|
{
|
|
state &= 1;
|
|
if( m_e2 != state )
|
|
{
|
|
verboselog( this, 2, "set e2 %d\n", state );
|
|
m_e2 = state;
|
|
}
|
|
}
|
|
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_sda_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_sda_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_sda_line( int state )
|
|
{
|
|
state &= 1;
|
|
if( m_sdaw != state )
|
|
{
|
|
verboselog( this, 2, "set sda %d\n", state );
|
|
m_sdaw = state;
|
|
|
|
if( m_scl )
|
|
{
|
|
if( m_sdaw )
|
|
{
|
|
verboselog( this, 1, "stop\n" );
|
|
m_state = STATE_IDLE;
|
|
}
|
|
else
|
|
{
|
|
verboselog( this, 2, "start\n" );
|
|
m_state = STATE_DEVSEL;
|
|
m_bits = 0;
|
|
}
|
|
|
|
m_sdar = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_scl_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_scl_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_scl_line( int state )
|
|
{
|
|
if( m_scl != state )
|
|
{
|
|
m_scl = state;
|
|
verboselog( this, 2, "set_scl_line %d\n", m_scl );
|
|
|
|
switch( m_state )
|
|
{
|
|
case STATE_DEVSEL:
|
|
case STATE_BYTEADDR:
|
|
case STATE_DATAIN:
|
|
if( m_bits < 8 )
|
|
{
|
|
if( m_scl )
|
|
{
|
|
m_shift = ( ( m_shift << 1 ) | m_sdaw ) & 0xff;
|
|
m_bits++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if( m_scl )
|
|
{
|
|
switch( m_state )
|
|
{
|
|
case STATE_DEVSEL:
|
|
m_devsel = m_shift;
|
|
|
|
if( !select_device() )
|
|
{
|
|
verboselog( this, 1, "devsel %02x: not this device\n", m_devsel );
|
|
m_state = STATE_IDLE;
|
|
}
|
|
else if( ( m_devsel & DEVSEL_RW ) == 0 )
|
|
{
|
|
verboselog( this, 1, "devsel %02x: write\n", m_devsel );
|
|
m_state = STATE_BYTEADDR;
|
|
}
|
|
else
|
|
{
|
|
verboselog( this, 1, "devsel %02x: read\n", m_devsel );
|
|
m_state = STATE_DATAOUT;
|
|
}
|
|
break;
|
|
|
|
case STATE_BYTEADDR:
|
|
m_byteaddr = m_shift;
|
|
m_page_offset = 0;
|
|
|
|
verboselog( this, 1, "byteaddr %02x\n", m_byteaddr );
|
|
|
|
m_state = STATE_DATAIN;
|
|
break;
|
|
|
|
case STATE_DATAIN:
|
|
if( m_wc )
|
|
{
|
|
verboselog( this, 0, "write not enabled\n" );
|
|
m_state = STATE_IDLE;
|
|
}
|
|
else if( m_page_size > 0 )
|
|
{
|
|
m_page[ m_page_offset ] = m_shift;
|
|
verboselog( this, 1, "page[ %04x ] <- %02x\n", m_page_offset, m_page[ m_page_offset ] );
|
|
|
|
m_page_offset++;
|
|
if( m_page_offset == m_page_size )
|
|
{
|
|
int offset = data_offset() & ~( m_page_size - 1 );
|
|
|
|
verboselog( this, 1, "data[ %04x to %04x ] = page\n", offset, offset + m_page_size - 1 );
|
|
|
|
for( int i = 0; i < m_page_size; i++ )
|
|
{
|
|
m_addrspace[ 0 ]->write_byte( offset + i, m_page[ i ] );
|
|
}
|
|
|
|
m_page_offset = 0;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int offset = data_offset();
|
|
|
|
verboselog( this, 1, "data[ %04x ] <- %02x\n", offset, m_shift );
|
|
m_addrspace[ 0 ]->write_byte( offset, m_shift );
|
|
|
|
m_byteaddr++;
|
|
}
|
|
break;
|
|
}
|
|
|
|
m_bits++;
|
|
}
|
|
else
|
|
{
|
|
if( m_bits == 8 )
|
|
{
|
|
m_sdar = 0;
|
|
}
|
|
else
|
|
{
|
|
m_bits = 0;
|
|
m_sdar = 1;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case STATE_DATAOUT:
|
|
if( m_bits < 8 )
|
|
{
|
|
if( m_scl )
|
|
{
|
|
if( m_bits == 0 )
|
|
{
|
|
int offset = data_offset();
|
|
|
|
m_shift = m_addrspace[ 0 ]->read_byte( offset );
|
|
verboselog( this, 1, "data[ %04x ] -> %02x\n", offset, m_shift );
|
|
m_byteaddr++;
|
|
}
|
|
|
|
m_sdar = ( m_shift >> 7 ) & 1;
|
|
|
|
m_shift = ( m_shift << 1 ) & 0xff;
|
|
m_bits++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if( m_scl )
|
|
{
|
|
if( m_sdaw )
|
|
{
|
|
verboselog( this, 1, "sleep\n" );
|
|
m_state = STATE_IDLE;
|
|
m_sdar = 0;
|
|
}
|
|
|
|
m_bits++;
|
|
}
|
|
else
|
|
{
|
|
if( m_bits == 8 )
|
|
{
|
|
m_sdar = 1;
|
|
}
|
|
else
|
|
{
|
|
m_bits = 0;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
WRITE_LINE_DEVICE_HANDLER( i2cmem_wc_write )
|
|
{
|
|
downcast<i2cmem_device *>( device )->set_wc_line( state );
|
|
}
|
|
|
|
void i2cmem_device::set_wc_line( int state )
|
|
{
|
|
state &= 1;
|
|
if( m_wc != state )
|
|
{
|
|
verboselog( this, 2, "set wc %d\n", state );
|
|
m_wc = state;
|
|
}
|
|
}
|
|
|
|
|
|
READ_LINE_DEVICE_HANDLER( i2cmem_sda_read )
|
|
{
|
|
return downcast<i2cmem_device *>( device )->read_sda_line();
|
|
}
|
|
|
|
int i2cmem_device::read_sda_line()
|
|
{
|
|
int res = m_sdar & 1;
|
|
|
|
verboselog( this, 2, "read sda %d\n", res );
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
//**************************************************************************
|
|
// INTERNAL HELPERS
|
|
//**************************************************************************
|
|
|
|
int i2cmem_device::address_mask()
|
|
{
|
|
return (m_data_size - 1);
|
|
}
|
|
|
|
int i2cmem_device::select_device()
|
|
{
|
|
int device = ( m_slave_address & 0xf0 ) | ( m_e2 << 3 ) | ( m_e1 << 2 ) | ( m_e0 << 1 );
|
|
int mask = DEVSEL_ADDRESS & ~( address_mask() >> 7 );
|
|
|
|
if( ( m_devsel & mask ) == ( device & mask ) )
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int i2cmem_device::data_offset()
|
|
{
|
|
return ( ( ( m_devsel << 7 ) & 0xff00 ) | ( m_byteaddr & 0xff ) ) & address_mask();
|
|
}
|