[ 1585617 ] support for the Magnachip h7202 cpu

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@735 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 17 years ago
parent e401cfa1f5
commit 035ff9ad5d

@ -44,6 +44,7 @@ libbus_a_SOURCES = \
sh7727.c \
sh7750r.c \
sh7751r.c \
h7202.c \
slsup3.c \
tx4925.c \
jopcyc.c

@ -39,7 +39,7 @@ const bus_driver_t *bus_drivers[] = {
&mpc824x_bus,
&mpc5200_bus,
&ppc440gx_ebc8_bus,
&ppc405ep_bus,
&ppc405ep_bus,
&pxa2x0_bus,
&pxa27x_bus,
&s3c4510_bus,
@ -47,6 +47,7 @@ const bus_driver_t *bus_drivers[] = {
&sh7727_bus,
&sh7750r_bus,
&sh7751r_bus,
&h7202_bus,
&slsup3_bus,
&tx4925_bus,
&jopcyc_bus,

@ -42,6 +42,7 @@ extern const bus_driver_t sa1110_bus;
extern const bus_driver_t sh7727_bus;
extern const bus_driver_t sh7750r_bus;
extern const bus_driver_t sh7751r_bus;
extern const bus_driver_t h7202_bus;
extern const bus_driver_t slsup3_bus;
extern const bus_driver_t tx4925_bus;
extern const bus_driver_t jopcyc_bus;

@ -0,0 +1,331 @@
/*
* Copyright (C) 2005, Raphael Mack
* Work heavily based on file sa1110.c
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Written by Raphael Mack <mail AT raphael-mack DOT de>
*
* Documentation:
* [1] MagnaChip Semiconductor Ltd. "HMS30C7202"
*
*/
//#include "sysdep.h"
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "part.h"
#include "bus.h"
#include "chain.h"
#include "bssignal.h"
#include "jtag.h"
#include "buses.h"
typedef struct {
chain_t *chain;
part_t *part;
signal_t *a[25];
signal_t *d[32];
signal_t *nRCS[4];
signal_t *nRWE[4];
signal_t *nROE;
} bus_params_t;
#define CHAIN ((bus_params_t *) bus->params)->chain
#define PART ((bus_params_t *) bus->params)->part
#define A ((bus_params_t *) bus->params)->a
#define D ((bus_params_t *) bus->params)->d
#define nRCS ((bus_params_t *) bus->params)->nRCS
#define nRWE ((bus_params_t *) bus->params)->nRWE
#define nROE ((bus_params_t *) bus->params)->nROE
static void
setup_address( bus_t *bus, uint32_t a )
{
int i;
part_t *p = PART;
for (i = 0; i < 26; i++)
part_set_signal( p, A[i], 1, (a >> i) & 1 );
}
static int h7202_bus_area( bus_t *bus, uint32_t adr, bus_area_t *area );
static void
set_data_in( bus_t *bus )
{
int i;
part_t *p = PART;
bus_area_t area;
h7202_bus_area( bus, 0, &area );
for (i = 0; i < area.width; i++)
part_set_signal( p, D[i], 0, 0 );
}
static void
setup_data( bus_t *bus, uint32_t d )
{
int i;
part_t *p = PART;
bus_area_t area;
h7202_bus_area( bus, 0, &area );
for (i = 0; i < area.width; i++)
part_set_signal( p, D[i], 1, (d >> i) & 1 );
}
static void
h7202_bus_printinfo( bus_t *bus )
{
int i;
for (i = 0; i < CHAIN->parts->len; i++)
if (PART == CHAIN->parts->parts[i])
break;
printf( "H7202 compatible bus driver via BSR (JTAG part No. %d)\n", i );
}
static void
h7202_bus_prepare( bus_t *bus )
{
part_set_instruction( PART, "EXTEST" );
chain_shift_instructions( CHAIN );
}
static void
h7202_bus_read_start( bus_t *bus, uint32_t adr )
{
/* see Figure 10-12 in [1] */
part_t *p = PART;
chain_t *chain = CHAIN;
part_set_signal( p, nRCS[0], 1, 0 );
part_set_signal( p, nRCS[1], 1, 1 );
part_set_signal( p, nRCS[2], 1, 1 );
part_set_signal( p, nRCS[3], 1, 1 );
part_set_signal( p, nRWE[0], 1, 1 );
part_set_signal( p, nROE, 1, 0 );
setup_address( bus, adr );
set_data_in( bus );
chain_shift_data_registers( chain, 0 );
}
static uint32_t
h7202_bus_read_next( bus_t *bus, uint32_t adr )
{
/* see Figure 10-12 in [1] */
part_t *p = PART;
chain_t *chain = CHAIN;
int i;
uint32_t d = 0;
bus_area_t area;
h7202_bus_area( bus, adr, &area );
setup_address( bus, adr );
chain_shift_data_registers( chain, 1 );
for (i = 0; i < area.width; i++)
d |= (uint32_t) (part_get_signal( p, D[i] ) << i);
return d;
}
static uint32_t
h7202_bus_read_end( bus_t *bus )
{
/* see Figure 10-12 in [1] */
part_t *p = PART;
chain_t *chain = CHAIN;
int i;
uint32_t d = 0;
bus_area_t area;
h7202_bus_area( bus, 0, &area );
part_set_signal( p, nRCS[0], 1, 1 );
part_set_signal( p, nRCS[1], 1, 1 );
part_set_signal( p, nRCS[2], 1, 1 );
part_set_signal( p, nRCS[3], 1, 1 );
part_set_signal( p, nROE, 1, 1 );
chain_shift_data_registers( chain, 1 );
for (i = 0; i < area.width; i++)
d |= (uint32_t) (part_get_signal( p, D[i] ) << i);
return d;
}
static uint32_t
h7202_bus_read( bus_t *bus, uint32_t adr )
{
h7202_bus_read_start( bus, adr );
return h7202_bus_read_end( bus );
}
static void
h7202_bus_write( bus_t *bus, uint32_t adr, uint32_t data )
{
/* see Figure 10-16 in [1] */
part_t *p = PART;
chain_t *chain = CHAIN;
// part_set_signal( p, nRCS[0], 1, (adr >> 27) != 0 );
//part_set_signal( p, nRCS[1], 1, (adr >> 27) != 1 );
//part_set_signal( p, nRCS[2], 1, (adr >> 27) != 2 );
//part_set_signal( p, nRCS[3], 1, (adr >> 27) != 3 );
part_set_signal( p, nRCS[0], 1, 0 );
part_set_signal( p, nRCS[1], 1, 1 );
part_set_signal( p, nRCS[2], 1, 1 );
part_set_signal( p, nRCS[3], 1, 1 );
part_set_signal( p, nRWE[0], 1, 0 );
part_set_signal( p, nRWE[1], 1, 1 );
part_set_signal( p, nRWE[2], 1, 1 );
part_set_signal( p, nRWE[3], 1, 1 );
part_set_signal( p, nROE, 1, 1 );
setup_address( bus, adr );
setup_data( bus, data );
chain_shift_data_registers( chain, 0 );
part_set_signal( p, nRWE[0], 1, 1 );
part_set_signal( p, nRCS[0], 1, 1 );
part_set_signal( p, nRCS[1], 1, 1 );
part_set_signal( p, nRCS[2], 1, 1 );
part_set_signal( p, nRCS[3], 1, 1 );
chain_shift_data_registers( chain, 0 );
}
static int
h7202_bus_area( bus_t *bus, uint32_t adr, bus_area_t *area )
{
area->description = NULL;
area->start = UINT32_C(0x00000000);
area->length = UINT64_C(0x100000000);
area->width = 16; //part_get_signal( PART, part_find_signal( PART, "ROM_SEL" ) ) ? 32 : 16;
return 0;
}
static void
h7202_bus_free( bus_t *bus )
{
free( bus->params );
free( bus );
}
static bus_t *h7202_bus_new( void );
const bus_driver_t h7202_bus = {
"h7202",
"H7202 compatible bus driver via BSR",
h7202_bus_new,
h7202_bus_free,
h7202_bus_printinfo,
h7202_bus_prepare,
h7202_bus_area,
h7202_bus_read_start,
h7202_bus_read_next,
h7202_bus_read_end,
h7202_bus_read,
h7202_bus_write
};
static bus_t *
h7202_bus_new( void )
{
bus_t *bus;
char buff[10];
int i;
int failed = 0;
if (!chain || !chain->parts || chain->parts->len <= chain->active_part || chain->active_part < 0)
return NULL;
bus = malloc( sizeof (bus_t) );
if (!bus)
return NULL;
bus->driver = &h7202_bus;
bus->params = malloc( sizeof (bus_params_t) );
if (!bus->params) {
free( bus );
return NULL;
}
CHAIN = chain;
PART = chain->parts->parts[chain->active_part];
for (i = 0; i < 25; i++) {
sprintf( buff, "RA%d", i );
A[i] = part_find_signal( PART, buff );
if (!A[i]) {
printf( "signal '%s' not found\n", buff );
failed = 1;
break;
}
}
for (i = 0; i < 32; i++) {
sprintf( buff, "RD%d", i );
D[i] = part_find_signal( PART, buff );
if (!D[i]) {
printf( "signal '%s' not found\n", buff );
failed = 1;
break;
}
}
for (i = 0; i < 4; i++) {
sprintf( buff, "nRCS%d", i );
nRCS[i] = part_find_signal( PART, buff );
if (!nRCS[i]) {
printf( "signal '%s' not found\n", buff );
failed = 1;
break;
}
}
nROE = part_find_signal( PART, "nROE" );
if (!nROE) {
printf( "signal '%s' not found\n", "nROE" );
failed = 1;
}
for (i = 0; i < 4; i++){
sprintf( buff, "nRWE%d", i);
nRWE[i] = part_find_signal( PART, buff );
if (!nRWE[i]) {
printf( "signal '%s' not found\n", buff );
failed = 1;
}
}
if (failed) {
free( bus->params );
free( bus );
return NULL;
}
return bus;
}
Loading…
Cancel
Save