Previous 199869 Revisions Next

r17440 Friday 24th August, 2012 at 10:45:35 UTC by smf
am53cf96 is now a device (nw)
[src/emu/machine]am53cf96.c am53cf96.h
[src/mame/drivers]konamigq.c konamigv.c twinkle.c

trunk/src/mame/drivers/konamigq.c
r17439r17440
177177
178178static ADDRESS_MAP_START( konamigq_map, AS_PROGRAM, 32, konamigq_state )
179179   AM_RANGE(0x00000000, 0x003fffff) AM_RAM   AM_SHARE("share1") /* ram */
180   AM_RANGE(0x1f000000, 0x1f00001f) AM_READWRITE_LEGACY(am53cf96_r, am53cf96_w)
180   AM_RANGE(0x1f000000, 0x1f00001f) AM_DEVREADWRITE8("am53cf96", am53cf96_device, read, write, 0x00ff00ff)
181181   AM_RANGE(0x1f100000, 0x1f10000f) AM_WRITE(soundr3k_w)
182182   AM_RANGE(0x1f100010, 0x1f10001f) AM_READ(soundr3k_r)
183183   AM_RANGE(0x1f180000, 0x1f180003) AM_WRITE(eeprom_w)
r17439r17440
260260
261261static void scsi_dma_read( konamigq_state *state, UINT32 n_address, INT32 n_size )
262262{
263   am53cf96_device *am53cf96 = state->machine().device<am53cf96_device>("am53cf96");
264
263265   UINT32 *p_n_psxram = state->m_p_n_psxram;
264266   UINT8 *sector_buffer = state->m_sector_buffer;
265267   int i;
r17439r17440
275277      {
276278         n_this = n_size;
277279      }
278      am53cf96_read_data( n_this * 4, sector_buffer );
280      am53cf96->dma_read_data( n_this * 4, sector_buffer );
279281      n_size -= n_this;
280282
281283      i = 0;
r17439r17440
328330{
329331   konamigq_state *state = machine.driver_data<konamigq_state>();
330332
331   /* init the scsi controller and hook up it's DMA */
332   am53cf96_init(machine, &scsi_intf);
333
334333   state->save_pointer(NAME(state->m_p_n_pcmram), 0x380000);
335334   state->save_item(NAME(state->m_sndto000));
336335   state->save_item(NAME(state->m_sndtor3k));
r17439r17440
358357   MCFG_EEPROM_93C46_ADD("eeprom")
359358   MCFG_EEPROM_DATA(konamigq_def_eeprom, 128)
360359
360   MCFG_AM53CF96_ADD("am53cf96", scsi_intf);
361
361362   MCFG_SCSIDEV_ADD("disk", SCSIHD, SCSI_ID_0)
362363
363364   /* video hardware */
trunk/src/mame/drivers/twinkle.c
r17439r17440
627627static ADDRESS_MAP_START( main_map, AS_PROGRAM, 32, twinkle_state )
628628   AM_RANGE(0x00000000, 0x003fffff) AM_RAM   AM_SHARE("share1") /* ram */
629629   AM_RANGE(0x1f000000, 0x1f0007ff) AM_READWRITE(shared_psx_r, shared_psx_w)
630   AM_RANGE(0x1f200000, 0x1f20001f) AM_READWRITE_LEGACY(am53cf96_r, am53cf96_w)
630   AM_RANGE(0x1f200000, 0x1f20001f) AM_DEVREADWRITE8("am53cf96", am53cf96_device, read, write, 0x00ff00ff)
631631   AM_RANGE(0x1f20a01c, 0x1f20a01f) AM_WRITENOP /* scsi? */
632632   AM_RANGE(0x1f210400, 0x1f2107ff) AM_READNOP
633633   AM_RANGE(0x1f218000, 0x1f218003) AM_WRITE(watchdog_reset32_w) /* LTC1232 */
r17439r17440
768768static void scsi_dma_read( twinkle_state *state, UINT32 n_address, INT32 n_size )
769769{
770770   UINT32 *p_n_psxram = state->m_p_n_psxram;
771   am53cf96_device *am53cf96 = state->machine().device<am53cf96_device>("am53cf96");
772
771773   int i;
772774   int n_this;
773775
r17439r17440
784786      if( n_this < 2048 / 4 )
785787      {
786788         /* non-READ commands */
787         am53cf96_read_data( n_this * 4, state->m_sector_buffer );
789         am53cf96->dma_read_data( n_this * 4, state->m_sector_buffer );
788790      }
789791      else
790792      {
791793         /* assume normal 2048 byte data for now */
792         am53cf96_read_data( 2048, state->m_sector_buffer );
794         am53cf96->dma_read_data( 2048, state->m_sector_buffer );
793795         n_this = 2048 / 4;
794796      }
795797      n_size -= n_this;
r17439r17440
812814static void scsi_dma_write( twinkle_state *state, UINT32 n_address, INT32 n_size )
813815{
814816   UINT32 *p_n_psxram = state->m_p_n_psxram;
817   am53cf96_device *am53cf96 = state->machine().device<am53cf96_device>("am53cf96");
818
815819   int i;
816820   int n_this;
817821
r17439r17440
839843         n_this--;
840844      }
841845
842      am53cf96_write_data( n_this * 4, state->m_sector_buffer );
846      am53cf96->dma_write_data( n_this * 4, state->m_sector_buffer );
843847   }
844848}
845849
r17439r17440
865869DRIVER_INIT_MEMBER(twinkle_state,twinkle)
866870{
867871   psx_driver_init(machine());
868   am53cf96_init(machine(), &scsi_intf);
869872
870873   device_t *i2cmem = machine().device("security");
871874   i2cmem_e0_write( i2cmem, 0 );
r17439r17440
917920   MCFG_MACHINE_RESET( twinkle )
918921   MCFG_I2CMEM_ADD("security",i2cmem_interface)
919922
923   MCFG_AM53CF96_ADD("am53cf96", scsi_intf);
924
920925   MCFG_SCSIDEV_ADD("cdrom0", SCSICD, SCSI_ID_4)
921926
922927   MCFG_IDE_CONTROLLER_ADD("ide", ide_interrupt, ide_devices, "hdd", NULL, true)
trunk/src/mame/drivers/konamigv.c
r17439r17440
190190
191191static ADDRESS_MAP_START( konamigv_map, AS_PROGRAM, 32, konamigv_state )
192192   AM_RANGE(0x00000000, 0x001fffff) AM_RAM   AM_SHARE("share1") /* ram */
193   AM_RANGE(0x1f000000, 0x1f00001f) AM_READWRITE_LEGACY(am53cf96_r, am53cf96_w)
193   AM_RANGE(0x1f000000, 0x1f00001f) AM_DEVREADWRITE8("am53cf96", am53cf96_device, read, write, 0x00ff00ff)
194194   AM_RANGE(0x1f100000, 0x1f100003) AM_READ_PORT("P1")
195195   AM_RANGE(0x1f100004, 0x1f100007) AM_READ_PORT("P2")
196196   AM_RANGE(0x1f100008, 0x1f10000b) AM_READ_PORT("P3_P4")
r17439r17440
209209
210210static void scsi_dma_read( konamigv_state *state, UINT32 n_address, INT32 n_size )
211211{
212   am53cf96_device *am53cf96 = state->machine().device<am53cf96_device>("am53cf96");
213
212214   UINT32 *p_n_psxram = state->m_p_n_psxram;
213215   UINT8 *sector_buffer = state->m_sector_buffer;
214216   int i;
r17439r17440
227229      if( n_this < 2048 / 4 )
228230      {
229231         /* non-READ commands */
230         am53cf96_read_data( n_this * 4, sector_buffer );
232         am53cf96->dma_read_data( n_this * 4, sector_buffer );
231233      }
232234      else
233235      {
234236         /* assume normal 2048 byte data for now */
235         am53cf96_read_data( 2048, sector_buffer );
237         am53cf96->dma_read_data( 2048, sector_buffer );
236238         n_this = 2048 / 4;
237239      }
238240      n_size -= n_this;
r17439r17440
254256
255257static void scsi_dma_write( konamigv_state *state, UINT32 n_address, INT32 n_size )
256258{
259   am53cf96_device *am53cf96 = state->machine().device<am53cf96_device>("am53cf96");
260
257261   UINT32 *p_n_psxram = state->m_p_n_psxram;
258262   UINT8 *sector_buffer = state->m_sector_buffer;
259263   int i;
r17439r17440
283287         n_this--;
284288      }
285289
286      am53cf96_write_data( n_this * 4, sector_buffer );
290      am53cf96->dma_write_data( n_this * 4, sector_buffer );
287291   }
288292}
289293
r17439r17440
309313DRIVER_INIT_MEMBER(konamigv_state,konamigv)
310314{
311315   psx_driver_init(machine());
312
313   /* init the scsi controller and hook up it's DMA */
314   am53cf96_init(machine(), &scsi_intf);
315316}
316317
317318static MACHINE_START( konamigv )
r17439r17440
356357
357358   MCFG_EEPROM_93C46_ADD("eeprom")
358359
360   MCFG_AM53CF96_ADD("am53cf96", scsi_intf);
361
359362   MCFG_SCSIDEV_ADD("cdrom", SCSICD, SCSI_ID_4)
360363
361364   /* video hardware */
trunk/src/emu/machine/am53cf96.c
r17439r17440
1313#include "am53cf96.h"
1414#include "machine/scsidev.h"
1515
16static UINT8 scsi_regs[32], fifo[16], fptr = 0, xfer_state, last_id;
17static const struct AM53CF96interface *intf;
18
19static scsidev_device *devices[8];   // SCSI IDs 0-7
20
21// 53CF96 register set
22enum
16READ8_MEMBER( am53cf96_device::read )
2317{
24   REG_XFERCNTLOW = 0,   // read = current xfer count lo byte, write = set xfer count lo byte
25   REG_XFERCNTMID,      // read = current xfer count mid byte, write = set xfer count mid byte
26   REG_FIFO,      // read/write = FIFO
27   REG_COMMAND,      // read/write = command
28
29   REG_STATUS,      // read = status, write = destination SCSI ID (4)
30   REG_IRQSTATE,      // read = IRQ status, write = timeout         (5)
31   REG_INTSTATE,      // read = internal state, write = sync xfer period (6)
32   REG_FIFOSTATE,      // read = FIFO status, write = sync offset
33   REG_CTRL1,      // read/write = control 1
34   REG_CLOCKFCTR,      // clock factor (write only)
35   REG_TESTMODE,      // test mode (write only)
36   REG_CTRL2,      // read/write = control 2
37   REG_CTRL3,      // read/write = control 3
38   REG_CTRL4,      // read/write = control 4
39   REG_XFERCNTHI,      // read = current xfer count hi byte, write = set xfer count hi byte
40   REG_DATAALIGN      // data alignment (write only)
41};
42
43READ32_HANDLER( am53cf96_r )
44{
45   int reg, shift, rv;
18   int rv;
4619   static const int states[] = { 0, 0, 1, 1, 2, 3, 4, 5, 6, 7, 0 };
4720
48   reg = offset * 2;
49   if (mem_mask == 0x000000ff)
21   if (offset == REG_STATUS)
5022   {
51      shift = 0;
52   }
53   else
54   {
55      reg++;
56      shift = 16;
57   }
58
59   if (reg == REG_STATUS)
60   {
6123      scsi_regs[REG_STATUS] &= ~0x7;
6224      scsi_regs[REG_STATUS] |= states[xfer_state];
6325      if (xfer_state < 10)
r17439r17440
6628      }
6729   }
6830
69   rv = scsi_regs[reg]<<shift;
31   rv = scsi_regs[offset];
7032
71   if (reg == REG_FIFO)
33   if (offset == REG_FIFO)
7234   {
73//      mame_printf_debug("53cf96: read FIFO PC=%x\n", cpu_get_pc(&space->device()));
35//      mame_printf_debug("53cf96: read FIFO PC=%x\n", cpu_get_pc(&space.device()));
7436      return 0;
7537   }
7638
77//  logerror("53cf96: read reg %d = %x (PC=%x)\n", reg, rv>>shift, cpu_get_pc(&space->device()));
39//  logerror("53cf96: read reg %d = %x (PC=%x)\n", reg, rv>>shift, cpu_get_pc(&space.device()));
7840
79   if (reg == REG_IRQSTATE)
41   if (offset == REG_IRQSTATE)
8042   {
8143      scsi_regs[REG_STATUS] &= ~0x80;   // clear IRQ flag
8244   }
r17439r17440
8446   return rv;
8547}
8648
87static TIMER_CALLBACK( am53cf96_irq )
49void am53cf96_device::device_timer(emu_timer &timer, device_timer_id tid, int param, void *ptr)
8850{
8951   scsi_regs[REG_IRQSTATE] = 8;   // indicate success
9052   scsi_regs[REG_STATUS] |= 0x80;   // indicate IRQ
91   intf->irq_callback(machine);
53   irq_callback(machine());
9254}
9355
94WRITE32_HANDLER( am53cf96_w )
56WRITE8_MEMBER( am53cf96_device::write )
9557{
96   int reg, val/*, dma*/;
58//  logerror("53cf96: w %x to reg %d (PC=%x)\n", data, offset, cpu_get_pc(&space.device()));
9759
98   reg = offset * 2;
99   val = data;
100   if (mem_mask == 0x000000ff)
101   {
102   }
103   else
104   {
105      reg++;
106      val >>= 16;
107   }
108   val &= 0xff;
109
110//  logerror("53cf96: w %x to reg %d (ofs %02x data %08x mask %08x PC=%x)\n", val, reg, offset, data, mem_mask, cpu_get_pc(&space->device()));
111
11260   // if writing to the target ID, cache it off for later
113   if (reg == REG_STATUS)
61   if (offset == REG_STATUS)
11462   {
115      last_id = val;
63      last_id = data;
11664   }
11765
118   if (reg == REG_XFERCNTLOW || reg == REG_XFERCNTMID || reg == REG_XFERCNTHI)
66   if (offset == REG_XFERCNTLOW || offset == REG_XFERCNTMID || offset == REG_XFERCNTHI)
11967   {
12068      scsi_regs[REG_STATUS] &= ~0x10;   // clear CTZ bit
12169   }
12270
12371   // FIFO
124   if (reg == REG_FIFO)
72   if (offset == REG_FIFO)
12573   {
126//      mame_printf_debug("%02x to FIFO @ %02d\n", val, fptr);
127      fifo[fptr++] = val;
74//      mame_printf_debug("%02x to FIFO @ %02d\n", data, fptr);
75      fifo[fptr++] = data;
12876      if (fptr > 15)
12977      {
13078         fptr = 15;
r17439r17440
13280   }
13381
13482   // command
135   if (reg == REG_COMMAND)
83   if (offset == REG_COMMAND)
13684   {
137      //dma = (val & 0x80) ? 1 : 0;
85      //dma = (data & 0x80) ? 1 : 0;
13886      fptr = 0;
139      switch (val & 0x7f)
87      switch (data & 0x7f)
14088      {
14189         case 0:   // NOP
14290            scsi_regs[REG_IRQSTATE] = 8;   // indicate success
r17439r17440
14593         case 2: // reset device
14694            scsi_regs[REG_IRQSTATE] = 8;   // indicate success
14795
148            logerror("53cf96: reset  target ID = %d (PC = %x)\n", last_id, cpu_get_pc(&space->device()));
96            logerror("53cf96: reset  target ID = %d (PC = %x)\n", last_id, cpu_get_pc(&space.device()));
14997            if (devices[last_id])
15098            {
15199               devices[last_id]->reset();
r17439r17440
160108         case 3:   // reset SCSI bus
161109            scsi_regs[REG_INTSTATE] = 4;   // command sent OK
162110            xfer_state = 0;
163            space->machine().scheduler().timer_set( attotime::from_hz( 16384 ), FUNC(am53cf96_irq ));
111            m_transfer_timer->adjust( attotime::from_hz( 16384 ) );
164112            break;
165113         case 0x42:     // select with ATN steps
166            space->machine().scheduler().timer_set( attotime::from_hz( 16384 ), FUNC(am53cf96_irq ));
114            m_transfer_timer->adjust( attotime::from_hz( 16384 ) );
167115            if ((fifo[1] == 0) || (fifo[1] == 0x48) || (fifo[1] == 0x4b))
168116            {
169117               scsi_regs[REG_INTSTATE] = 6;
r17439r17440
173121               scsi_regs[REG_INTSTATE] = 4;
174122            }
175123
176            logerror("53cf96: command %x exec.  target ID = %d (PC = %x)\n", fifo[1], last_id, cpu_get_pc(&space->device()));
124            logerror("53cf96: command %x exec.  target ID = %d (PC = %x)\n", fifo[1], last_id, cpu_get_pc(&space.device()));
177125            if (devices[last_id])
178126            {
179127               int length;
r17439r17440
193141         case 0x10:   // information transfer (must not change xfer_state)
194142         case 0x11:   // second phase of information transfer
195143         case 0x12:   // message accepted
196            space->machine().scheduler().timer_set( attotime::from_hz( 16384 ), FUNC(am53cf96_irq ));
144            m_transfer_timer->adjust( attotime::from_hz( 16384 ) );
197145            scsi_regs[REG_INTSTATE] = 6;   // command sent OK
198146            break;
199147         default:
200            printf( "unsupported command %02x\n", val );
148            printf( "unsupported command %02x\n", data );
201149            break;
202150      }
203151   }
204152
205153   // only update the register mirror if it's not a write-only reg
206   if (reg != REG_STATUS && reg != REG_INTSTATE && reg != REG_IRQSTATE && reg != REG_FIFOSTATE)
154   if (offset != REG_STATUS && offset != REG_INTSTATE && offset != REG_IRQSTATE && offset != REG_FIFOSTATE)
207155   {
208      scsi_regs[reg] = val;
156      scsi_regs[offset] = data;
209157   }
210158}
211159
212void am53cf96_init( running_machine &machine, const struct AM53CF96interface *interface )
160am53cf96_device::am53cf96_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
161    : device_t(mconfig, AM53CF96, "53CF96 SCSI", tag, owner, clock)
213162{
214   int i;
163}
215164
216   // save interface pointer for later
217   intf = interface;
218
165void am53cf96_device::device_start()
166{
219167   memset(scsi_regs, 0, sizeof(scsi_regs));
220168   memset(devices, 0, sizeof(devices));
221169
222170   // try to open the devices
223   for (i = 0; i < interface->scsidevs->devs_present; i++)
171   for (int i = 0; i < scsidevs->devs_present; i++)
224172   {
225      scsidev_device *device = machine.device<scsidev_device>( interface->scsidevs->devices[i].tag );
173      scsidev_device *device = machine().device<scsidev_device>( scsidevs->devices[i].tag );
226174      devices[device->GetDeviceID()] = device;
227175   }
228176
229   state_save_register_global_array(machine, scsi_regs);
230   state_save_register_global_array(machine, fifo);
231   state_save_register_global(machine, fptr);
232   state_save_register_global(machine, xfer_state);
233   state_save_register_global(machine, last_id);
177   fptr = 0;
178   xfer_state = 0;
179
180   save_item( NAME( scsi_regs ) );
181   save_item( NAME( fifo ) );
182   save_item( NAME( fptr ) );
183   save_item( NAME( xfer_state ) );
184   save_item( NAME( last_id ) );
185
186   m_transfer_timer = timer_alloc( TIMER_TRANSFER );
234187}
235188
189void am53cf96_device::static_set_interface(device_t &device, const AM53CF96interface &interface)
190{
191   am53cf96_device &am53cf96 = downcast<am53cf96_device &>(device);
192   static_cast<AM53CF96interface &>(am53cf96) = interface;
193}
194
236195// retrieve data from the SCSI controller
237void am53cf96_read_data(int bytes, UINT8 *pData)
196void am53cf96_device::dma_read_data(int bytes, UINT8 *pData)
238197{
239198   scsi_regs[REG_STATUS] |= 0x10;   // indicate DMA finished
240199
r17439r17440
249208}
250209
251210// write data to the SCSI controller
252void am53cf96_write_data(int bytes, UINT8 *pData)
211void am53cf96_device::dma_write_data(int bytes, UINT8 *pData)
253212{
254213//  int i;
255214
r17439r17440
264223      logerror("53cf96: request for unknown device SCSI ID %d\n", last_id);
265224   }
266225}
226
227const device_type AM53CF96 = &device_creator<am53cf96_device>;
trunk/src/emu/machine/am53cf96.h
r17439r17440
77#define _AM53CF96_H_
88
99#include "scsi.h"
10#include "scsidev.h"
1011
1112struct AM53CF96interface
1213{
r17439r17440
1415   void (*irq_callback)(running_machine &machine);   /* irq callback */
1516};
1617
17extern void am53cf96_init( running_machine &machine, const struct AM53CF96interface *interface );
18extern void am53cf96_read_data(int bytes, UINT8 *pData);
19void am53cf96_write_data(int bytes, UINT8 *pData);
20extern READ32_HANDLER( am53cf96_r );
21extern WRITE32_HANDLER( am53cf96_w );
18#define MCFG_AM53CF96_ADD( _tag, _interface ) \
19   MCFG_DEVICE_ADD( _tag, AM53CF96, 0 ) \
20   am53cf96_device::static_set_interface(*device, _interface);
2221
22// 53CF96 register set
23enum
24{
25   REG_XFERCNTLOW = 0,   // read = current xfer count lo byte, write = set xfer count lo byte
26   REG_XFERCNTMID,      // read = current xfer count mid byte, write = set xfer count mid byte
27   REG_FIFO,      // read/write = FIFO
28   REG_COMMAND,      // read/write = command
29
30   REG_STATUS,      // read = status, write = destination SCSI ID (4)
31   REG_IRQSTATE,      // read = IRQ status, write = timeout         (5)
32   REG_INTSTATE,      // read = internal state, write = sync xfer period (6)
33   REG_FIFOSTATE,      // read = FIFO status, write = sync offset
34   REG_CTRL1,      // read/write = control 1
35   REG_CLOCKFCTR,      // clock factor (write only)
36   REG_TESTMODE,      // test mode (write only)
37   REG_CTRL2,      // read/write = control 2
38   REG_CTRL3,      // read/write = control 3
39   REG_CTRL4,      // read/write = control 4
40   REG_XFERCNTHI,      // read = current xfer count hi byte, write = set xfer count hi byte
41   REG_DATAALIGN      // data alignment (write only)
42};
43
44class am53cf96_device : public device_t,
45                  public AM53CF96interface
46{
47public:
48   // construction/destruction
49   am53cf96_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
50
51   // inline configuration helpers
52   static void static_set_interface(device_t &device, const AM53CF96interface &interface);
53
54   DECLARE_READ8_MEMBER(read);
55   DECLARE_WRITE8_MEMBER(write);
56
57   void dma_read_data(int bytes, UINT8 *pData);
58   void dma_write_data(int bytes, UINT8 *pData);
59
60protected:
61   // device-level overrides
62   virtual void device_start();
63   virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
64
65private:
66   static const device_timer_id TIMER_TRANSFER = 0;
67
68   scsidev_device *devices[8];
69
70   UINT8 scsi_regs[32];
71   UINT8 fifo[16];
72   UINT8 fptr;
73   UINT8 xfer_state;
74   UINT8 last_id;
75
76   emu_timer* m_transfer_timer;
77};
78
79// device type definition
80extern const device_type AM53CF96;
81
2382#endif

Previous 199869 Revisions Next


© 1997-2024 The MAME Team