/* PCSX2 - PS2 Emulator for PCs * Copyright (C) 2002-2014 David Quintana [gigaherz] * * PCSX2 is free software: you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * PCSX2 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 PCSX2. * If not, see . */ #ifndef __DEV9_H__ #define __DEV9_H__ #include #include #ifndef EXTERN #define EXTERN extern #endif #define DEV9defs //#define WINVER 0x0600 //#define _WIN32_WINNT 0x0500 #include "PS2Edefs.h" #include "PS2Eext.h" #include "net.h" #ifdef __WIN32__ #define usleep(x) Sleep(x / 1000) #include #include #include #else #include #define __inline inline #endif #define DEV9_LOG_ENABLE #ifdef DEV9_LOG_ENABLE #define DEV9_LOG __Log #else #define DEV9_LOG(...) () #endif void rx_process(NetPacket* pk); bool rx_fifo_can_rx(); #define ETH_DEF "eth0" #define HDD_DEF "DEV9hdd.raw" typedef struct { char Eth[256]; char Hdd[256]; int HddSize; int hddEnable; int ethEnable; } Config; EXTERN Config config; typedef struct { s8 dev9R[0x10000]; u8 eeprom_state; u8 eeprom_command; u8 eeprom_address; u8 eeprom_bit; u8 eeprom_dir; u16 *eeprom;//[32]; u32 rxbdi; u8 rxfifo[16*1024]; u16 rxfifo_wr_ptr; u32 txbdi; u8 txfifo[16*1024]; u16 txfifo_rd_ptr; u8 bd_swap; u16 atabuf[1024]; u32 atacount; u32 atasize; u16 phyregs[32]; int irqcause; u8 atacmd; u32 atasector; u32 atansector; } dev9Struct; //EEPROM states #define EEPROM_READY 0 #define EEPROM_OPCD0 1 //waiting for first bit of opcode #define EEPROM_OPCD1 2 //waiting for second bit of opcode #define EEPROM_ADDR0 3 //waiting for address bits #define EEPROM_ADDR1 4 #define EEPROM_ADDR2 5 #define EEPROM_ADDR3 6 #define EEPROM_ADDR4 7 #define EEPROM_ADDR5 8 #define EEPROM_TDATA 9 //ready to send/receive data EXTERN dev9Struct dev9; #define dev9_rxfifo_write(x) (dev9.rxfifo[dev9.rxfifo_wr_ptr++]=x) #define dev9Rs8(mem) dev9.dev9R[(mem) & 0xffff] #define dev9Rs16(mem) (*(s16*)&dev9.dev9R[(mem) & 0xffff]) #define dev9Rs32(mem) (*(s32*)&dev9.dev9R[(mem) & 0xffff]) #define dev9Ru8(mem) (*(u8*) &dev9.dev9R[(mem) & 0xffff]) #define dev9Ru16(mem) (*(u16*)&dev9.dev9R[(mem) & 0xffff]) #define dev9Ru32(mem) (*(u32*)&dev9.dev9R[(mem) & 0xffff]) EXTERN int ThreadRun; s32 _DEV9open(); void _DEV9close(); EXTERN DEV9callback DEV9irq; //void DEV9thread(); EXTERN PluginLog DEV9Log; //Yes these are meant to be a lowercase extern extern std::string s_strIniPath; extern std::string s_strLogPath; void __Log(char *fmt, ...); void SysMessage(char *fmt, ...); #define DEV9_R_REV 0x1f80146e /* * SPEED (ASIC on SMAP) register definitions. * * Copyright (c) 2003 Marcus R. Brown * * * code included from the ps2smap iop driver, modified by linuzappz * */ #define SPD_REGBASE 0x10000000 #define SPD_R_REV (SPD_REGBASE + 0x00) #define SPD_R_REV_1 (SPD_REGBASE + 0x02) // bit 0: smap // bit 1: hdd // bit 5: flash #define SPD_R_REV_3 (SPD_REGBASE + 0x04) #define SPD_R_0e (SPD_REGBASE + 0x0e) #define SPD_R_DMA_CTRL (SPD_REGBASE + 0x24) #define SPD_R_INTR_STAT (SPD_REGBASE + 0x28) #define SPD_R_INTR_MASK (SPD_REGBASE + 0x2a) #define SPD_R_PIO_DIR (SPD_REGBASE + 0x2c) #define SPD_R_PIO_DATA (SPD_REGBASE + 0x2e) #define SPD_PP_DOUT (1<<4) /* Data output, read port */ #define SPD_PP_DIN (1<<5) /* Data input, write port */ #define SPD_PP_SCLK (1<<6) /* Clock, write port */ #define SPD_PP_CSEL (1<<7) /* Chip select, write port */ /* Operation codes */ #define SPD_PP_OP_READ 2 #define SPD_PP_OP_WRITE 1 #define SPD_PP_OP_EWEN 0 #define SPD_PP_OP_EWDS 0 #define SPD_R_XFR_CTRL (SPD_REGBASE + 0x32) #define SPD_R_IF_CTRL (SPD_REGBASE + 0x64) #define SPD_IF_ATA_RESET 0x80 #define SPD_IF_DMA_ENABLE 0x04 #define SPD_R_PIO_MODE (SPD_REGBASE + 0x70) #define SPD_R_MWDMA_MODE (SPD_REGBASE + 0x72) #define SPD_R_UDMA_MODE (SPD_REGBASE + 0x74) /* * SMAP (PS2 Network Adapter) register definitions. * * Copyright (c) 2003 Marcus R. Brown * * * code included from the ps2smap iop driver, modified by linuzappz * */ /* SMAP interrupt status bits (selected from the SPEED device). */ #define SMAP_INTR_EMAC3 (1<<6) #define SMAP_INTR_RXEND (1<<5) #define SMAP_INTR_TXEND (1<<4) #define SMAP_INTR_RXDNV (1<<3) /* descriptor not valid */ #define SMAP_INTR_TXDNV (1<<2) /* descriptor not valid */ #define SMAP_INTR_CLR_ALL (SMAP_INTR_RXEND|SMAP_INTR_TXEND|SMAP_INTR_RXDNV) #define SMAP_INTR_ENA_ALL (SMAP_INTR_EMAC3|SMAP_INTR_CLR_ALL) #define SMAP_INTR_BITMSK 0x7C /* SMAP Register Definitions. */ #define SMAP_REGBASE (SPD_REGBASE + 0x100) #define SMAP_R_BD_MODE (SMAP_REGBASE + 0x02) #define SMAP_BD_SWAP (1<<0) #define SMAP_R_INTR_CLR (SMAP_REGBASE + 0x28) /* SMAP FIFO Registers. */ #define SMAP_R_TXFIFO_CTRL (SMAP_REGBASE + 0xf00) #define SMAP_TXFIFO_RESET (1<<0) #define SMAP_TXFIFO_DMAEN (1<<1) #define SMAP_R_TXFIFO_WR_PTR (SMAP_REGBASE + 0xf04) #define SMAP_R_TXFIFO_SIZE (SMAP_REGBASE + 0xf08) #define SMAP_R_TXFIFO_FRAME_CNT (SMAP_REGBASE + 0xf0C) #define SMAP_R_TXFIFO_FRAME_INC (SMAP_REGBASE + 0xf10) #define SMAP_R_TXFIFO_DATA (SMAP_REGBASE + 0x1000) #define SMAP_R_RXFIFO_CTRL (SMAP_REGBASE + 0xf30) #define SMAP_RXFIFO_RESET (1<<0) #define SMAP_RXFIFO_DMAEN (1<<1) #define SMAP_R_RXFIFO_RD_PTR (SMAP_REGBASE + 0xf34) #define SMAP_R_RXFIFO_SIZE (SMAP_REGBASE + 0xf38) #define SMAP_R_RXFIFO_FRAME_CNT (SMAP_REGBASE + 0xf3C) #define SMAP_R_RXFIFO_FRAME_DEC (SMAP_REGBASE + 0xf40) #define SMAP_R_RXFIFO_DATA (SMAP_REGBASE + 0x1100) #define SMAP_R_FIFO_ADDR (SMAP_REGBASE + 0x1200) #define SMAP_FIFO_CMD_READ (1<<1) #define SMAP_FIFO_DATA_SWAP (1<<0) #define SMAP_R_FIFO_DATA (SMAP_REGBASE + 0x1208) /* EMAC3 Registers. */ #define SMAP_EMAC3_REGBASE (SMAP_REGBASE + 0x1f00) #define SMAP_R_EMAC3_MODE0_L (SMAP_EMAC3_REGBASE + 0x00) #define SMAP_E3_RXMAC_IDLE (1<<(15+16)) #define SMAP_E3_TXMAC_IDLE (1<<(14+16)) #define SMAP_E3_SOFT_RESET (1<<(13+16)) #define SMAP_E3_TXMAC_ENABLE (1<<(12+16)) #define SMAP_E3_RXMAC_ENABLE (1<<(11+16)) #define SMAP_E3_WAKEUP_ENABLE (1<<(10+16)) #define SMAP_R_EMAC3_MODE0_H (SMAP_EMAC3_REGBASE + 0x02) #define SMAP_R_EMAC3_MODE1 (SMAP_EMAC3_REGBASE + 0x04) #define SMAP_R_EMAC3_MODE1_L (SMAP_EMAC3_REGBASE + 0x04) #define SMAP_R_EMAC3_MODE1_H (SMAP_EMAC3_REGBASE + 0x06) #define SMAP_E3_FDX_ENABLE (1<<31) #define SMAP_E3_INLPBK_ENABLE (1<<30) /* internal loop back */ #define SMAP_E3_VLAN_ENABLE (1<<29) #define SMAP_E3_FLOWCTRL_ENABLE (1<<28) /* integrated flow ctrl(pause frame) */ #define SMAP_E3_ALLOW_PF (1<<27) /* allow pause frame */ #define SMAP_E3_ALLOW_EXTMNGIF (1<<25) /* allow external management IF */ #define SMAP_E3_IGNORE_SQE (1<<24) #define SMAP_E3_MEDIA_FREQ_BITSFT (22) #define SMAP_E3_MEDIA_10M (0<<22) #define SMAP_E3_MEDIA_100M (1<<22) #define SMAP_E3_MEDIA_1000M (2<<22) #define SMAP_E3_MEDIA_MSK (3<<22) #define SMAP_E3_RXFIFO_SIZE_BITSFT (20) #define SMAP_E3_RXFIFO_512 (0<<20) #define SMAP_E3_RXFIFO_1K (1<<20) #define SMAP_E3_RXFIFO_2K (2<<20) #define SMAP_E3_RXFIFO_4K (3<<20) #define SMAP_E3_TXFIFO_SIZE_BITSFT (18) #define SMAP_E3_TXFIFO_512 (0<<18) #define SMAP_E3_TXFIFO_1K (1<<18) #define SMAP_E3_TXFIFO_2K (2<<18) #define SMAP_E3_TXREQ0_BITSFT (15) #define SMAP_E3_TXREQ0_SINGLE (0<<15) #define SMAP_E3_TXREQ0_MULTI (1<<15) #define SMAP_E3_TXREQ0_DEPEND (2<<15) #define SMAP_E3_TXREQ1_BITSFT (13) #define SMAP_E3_TXREQ1_SINGLE (0<<13) #define SMAP_E3_TXREQ1_MULTI (1<<13) #define SMAP_E3_TXREQ1_DEPEND (2<<13) #define SMAP_E3_JUMBO_ENABLE (1<<12) #define SMAP_R_EMAC3_TxMODE0_L (SMAP_EMAC3_REGBASE + 0x08) #define SMAP_E3_TX_GNP_0 (1<<(15+16)) /* get new packet */ #define SMAP_E3_TX_GNP_1 (1<<(14+16)) /* get new packet */ #define SMAP_E3_TX_GNP_DEPEND (1<<(13+16)) /* get new packet */ #define SMAP_E3_TX_FIRST_CHANNEL (1<<(12+16)) #define SMAP_R_EMAC3_TxMODE0_H (SMAP_EMAC3_REGBASE + 0x0A) #define SMAP_R_EMAC3_TxMODE1_L (SMAP_EMAC3_REGBASE + 0x0C) #define SMAP_R_EMAC3_TxMODE1_H (SMAP_EMAC3_REGBASE + 0x0E) #define SMAP_E3_TX_LOW_REQ_MSK (0x1F) /* low priority request */ #define SMAP_E3_TX_LOW_REQ_BITSFT (27) /* low priority request */ #define SMAP_E3_TX_URG_REQ_MSK (0xFF) /* urgent priority request */ #define SMAP_E3_TX_URG_REQ_BITSFT (16) /* urgent priority request */ #define SMAP_R_EMAC3_RxMODE (SMAP_EMAC3_REGBASE + 0x10) #define SMAP_R_EMAC3_RxMODE_L (SMAP_EMAC3_REGBASE + 0x10) #define SMAP_R_EMAC3_RxMODE_H (SMAP_EMAC3_REGBASE + 0x12) #define SMAP_E3_RX_STRIP_PAD (1<<31) #define SMAP_E3_RX_STRIP_FCS (1<<30) #define SMAP_E3_RX_RX_RUNT_FRAME (1<<29) #define SMAP_E3_RX_RX_FCS_ERR (1<<28) #define SMAP_E3_RX_RX_TOO_LONG_ERR (1<<27) #define SMAP_E3_RX_RX_IN_RANGE_ERR (1<<26) #define SMAP_E3_RX_PROP_PF (1<<25) /* propagate pause frame */ #define SMAP_E3_RX_PROMISC (1<<24) #define SMAP_E3_RX_PROMISC_MCAST (1<<23) #define SMAP_E3_RX_INDIVID_ADDR (1<<22) #define SMAP_E3_RX_INDIVID_HASH (1<<21) #define SMAP_E3_RX_BCAST (1<<20) #define SMAP_E3_RX_MCAST (1<<19) #define SMAP_R_EMAC3_INTR_STAT (SMAP_EMAC3_REGBASE + 0x14) #define SMAP_R_EMAC3_INTR_STAT_L (SMAP_EMAC3_REGBASE + 0x14) #define SMAP_R_EMAC3_INTR_STAT_H (SMAP_EMAC3_REGBASE + 0x16) #define SMAP_R_EMAC3_INTR_ENABLE (SMAP_EMAC3_REGBASE + 0x18) #define SMAP_R_EMAC3_INTR_ENABLE_L (SMAP_EMAC3_REGBASE + 0x18) #define SMAP_R_EMAC3_INTR_ENABLE_H (SMAP_EMAC3_REGBASE + 0x1A) #define SMAP_E3_INTR_OVERRUN (1<<25) /* this bit does NOT WORKED */ #define SMAP_E3_INTR_PF (1<<24) #define SMAP_E3_INTR_BAD_FRAME (1<<23) #define SMAP_E3_INTR_RUNT_FRAME (1<<22) #define SMAP_E3_INTR_SHORT_EVENT (1<<21) #define SMAP_E3_INTR_ALIGN_ERR (1<<20) #define SMAP_E3_INTR_BAD_FCS (1<<19) #define SMAP_E3_INTR_TOO_LONG (1<<18) #define SMAP_E3_INTR_OUT_RANGE_ERR (1<<17) #define SMAP_E3_INTR_IN_RANGE_ERR (1<<16) #define SMAP_E3_INTR_DEAD_DEPEND (1<<9) #define SMAP_E3_INTR_DEAD_0 (1<<8) #define SMAP_E3_INTR_SQE_ERR_0 (1<<7) #define SMAP_E3_INTR_TX_ERR_0 (1<<6) #define SMAP_E3_INTR_DEAD_1 (1<<5) #define SMAP_E3_INTR_SQE_ERR_1 (1<<4) #define SMAP_E3_INTR_TX_ERR_1 (1<<3) #define SMAP_E3_INTR_MMAOP_SUCCESS (1<<1) #define SMAP_E3_INTR_MMAOP_FAIL (1<<0) #define SMAP_E3_INTR_ALL \ (SMAP_E3_INTR_OVERRUN|SMAP_E3_INTR_PF|SMAP_E3_INTR_BAD_FRAME| \ SMAP_E3_INTR_RUNT_FRAME|SMAP_E3_INTR_SHORT_EVENT| \ SMAP_E3_INTR_ALIGN_ERR|SMAP_E3_INTR_BAD_FCS| \ SMAP_E3_INTR_TOO_LONG|SMAP_E3_INTR_OUT_RANGE_ERR| \ SMAP_E3_INTR_IN_RANGE_ERR| \ SMAP_E3_INTR_DEAD_DEPEND|SMAP_E3_INTR_DEAD_0| \ SMAP_E3_INTR_SQE_ERR_0|SMAP_E3_INTR_TX_ERR_0| \ SMAP_E3_INTR_DEAD_1|SMAP_E3_INTR_SQE_ERR_1| \ SMAP_E3_INTR_TX_ERR_1| \ SMAP_E3_INTR_MMAOP_SUCCESS|SMAP_E3_INTR_MMAOP_FAIL) #define SMAP_E3_DEAD_ALL \ (SMAP_E3_INTR_DEAD_DEPEND|SMAP_E3_INTR_DEAD_0| \ SMAP_E3_INTR_DEAD_1) #define SMAP_R_EMAC3_ADDR_HI (SMAP_EMAC3_REGBASE + 0x1C) #define SMAP_R_EMAC3_ADDR_LO (SMAP_EMAC3_REGBASE + 0x20) #define SMAP_R_EMAC3_ADDR_HI_L (SMAP_EMAC3_REGBASE + 0x1C) #define SMAP_R_EMAC3_ADDR_HI_H (SMAP_EMAC3_REGBASE + 0x1E) #define SMAP_R_EMAC3_ADDR_LO_L (SMAP_EMAC3_REGBASE + 0x20) #define SMAP_R_EMAC3_ADDR_LO_H (SMAP_EMAC3_REGBASE + 0x22) #define SMAP_R_EMAC3_VLAN_TPID (SMAP_EMAC3_REGBASE + 0x24) #define SMAP_E3_VLAN_ID_MSK 0xFFFF #define SMAP_R_EMAC3_VLAN_TCI (SMAP_EMAC3_REGBASE + 0x28) #define SMAP_E3_VLAN_TCITAG_MSK 0xFFFF #define SMAP_R_EMAC3_PAUSE_TIMER (SMAP_EMAC3_REGBASE + 0x2C) #define SMAP_R_EMAC3_PAUSE_TIMER_L (SMAP_EMAC3_REGBASE + 0x2C) #define SMAP_R_EMAC3_PAUSE_TIMER_H (SMAP_EMAC3_REGBASE + 0x2E) #define SMAP_E3_PTIMER_MSK 0xFFFF #define SMAP_R_EMAC3_INDIVID_HASH1 (SMAP_EMAC3_REGBASE + 0x30) #define SMAP_R_EMAC3_INDIVID_HASH2 (SMAP_EMAC3_REGBASE + 0x34) #define SMAP_R_EMAC3_INDIVID_HASH3 (SMAP_EMAC3_REGBASE + 0x38) #define SMAP_R_EMAC3_INDIVID_HASH4 (SMAP_EMAC3_REGBASE + 0x3C) #define SMAP_R_EMAC3_GROUP_HASH1 (SMAP_EMAC3_REGBASE + 0x40) #define SMAP_R_EMAC3_GROUP_HASH2 (SMAP_EMAC3_REGBASE + 0x44) #define SMAP_R_EMAC3_GROUP_HASH3 (SMAP_EMAC3_REGBASE + 0x48) #define SMAP_R_EMAC3_GROUP_HASH4 (SMAP_EMAC3_REGBASE + 0x4C) #define SMAP_E3_HASH_MSK 0xFFFF #define SMAP_R_EMAC3_LAST_SA_HI (SMAP_EMAC3_REGBASE + 0x50) #define SMAP_R_EMAC3_LAST_SA_LO (SMAP_EMAC3_REGBASE + 0x54) #define SMAP_R_EMAC3_INTER_FRAME_GAP (SMAP_EMAC3_REGBASE + 0x58) #define SMAP_R_EMAC3_INTER_FRAME_GAP_L (SMAP_EMAC3_REGBASE + 0x58) #define SMAP_R_EMAC3_INTER_FRAME_GAP_H (SMAP_EMAC3_REGBASE + 0x5A) #define SMAP_E3_IFGAP_MSK 0x3F #define SMAP_R_EMAC3_STA_CTRL_L (SMAP_EMAC3_REGBASE + 0x5C) #define SMAP_R_EMAC3_STA_CTRL_H (SMAP_EMAC3_REGBASE + 0x5E) #define SMAP_E3_PHY_DATA_MSK (0xFFFF) #define SMAP_E3_PHY_DATA_BITSFT (16) #define SMAP_E3_PHY_OP_COMP (1<<15) /* operation complete */ #define SMAP_E3_PHY_ERR_READ (1<<14) #define SMAP_E3_PHY_STA_CMD_BITSFT (12) #define SMAP_E3_PHY_READ (1<<12) #define SMAP_E3_PHY_WRITE (2<<12) #define SMAP_E3_PHY_OPBCLCK_BITSFT (10) #define SMAP_E3_PHY_50M (0<<10) #define SMAP_E3_PHY_66M (1<<10) #define SMAP_E3_PHY_83M (2<<10) #define SMAP_E3_PHY_100M (3<<10) #define SMAP_E3_PHY_ADDR_MSK (0x1F) #define SMAP_E3_PHY_ADDR_BITSFT (5) #define SMAP_E3_PHY_REG_ADDR_MSK (0x1F) #define SMAP_R_EMAC3_TX_THRESHOLD (SMAP_EMAC3_REGBASE + 0x60) #define SMAP_R_EMAC3_TX_THRESHOLD_L (SMAP_EMAC3_REGBASE + 0x60) #define SMAP_R_EMAC3_TX_THRESHOLD_H (SMAP_EMAC3_REGBASE + 0x62) #define SMAP_E3_TX_THRESHLD_MSK (0x1F) #define SMAP_E3_TX_THRESHLD_BITSFT (27) #define SMAP_R_EMAC3_RX_WATERMARK (SMAP_EMAC3_REGBASE + 0x64) #define SMAP_R_EMAC3_RX_WATERMARK_L (SMAP_EMAC3_REGBASE + 0x64) #define SMAP_R_EMAC3_RX_WATERMARK_H (SMAP_EMAC3_REGBASE + 0x66) #define SMAP_E3_RX_LO_WATER_MSK (0x1FF) #define SMAP_E3_RX_LO_WATER_BITSFT (23) #define SMAP_E3_RX_HI_WATER_MSK (0x1FF) #define SMAP_E3_RX_HI_WATER_BITSFT (7) #define SMAP_R_EMAC3_TX_OCTETS (SMAP_EMAC3_REGBASE + 0x68) #define SMAP_R_EMAC3_RX_OCTETS (SMAP_EMAC3_REGBASE + 0x6C) #define SMAP_EMAC3_REGEND (SMAP_EMAC3_REGBASE + 0x6C + 4) /* Buffer descriptors. */ typedef struct _smap_bd { u16 ctrl_stat; u16 reserved; /* must be zero */ u16 length; /* number of bytes in pkt */ u16 pointer; } smap_bd_t; #define SMAP_BD_REGBASE (SMAP_REGBASE + 0x2f00) #define SMAP_BD_TX_BASE (SMAP_BD_REGBASE + 0x0000) #define SMAP_BD_RX_BASE (SMAP_BD_REGBASE + 0x0200) #define SMAP_BD_SIZE 512 #define SMAP_BD_MAX_ENTRY 64 #define SMAP_TX_BASE (SMAP_REGBASE + 0x1000) #define SMAP_TX_BUFSIZE 4096 /* TX Control */ #define SMAP_BD_TX_READY (1<<15) /* set:driver, clear:HW */ #define SMAP_BD_TX_GENFCS (1<<9) /* generate FCS */ #define SMAP_BD_TX_GENPAD (1<<8) /* generate padding */ #define SMAP_BD_TX_INSSA (1<<7) /* insert source address */ #define SMAP_BD_TX_RPLSA (1<<6) /* replace source address */ #define SMAP_BD_TX_INSVLAN (1<<5) /* insert VLAN Tag */ #define SMAP_BD_TX_RPLVLAN (1<<4) /* replace VLAN Tag */ /* TX Status */ #define SMAP_BD_TX_READY (1<<15) /* set:driver, clear:HW */ #define SMAP_BD_TX_BADFCS (1<<9) /* bad FCS */ #define SMAP_BD_TX_BADPKT (1<<8) /* bad previous pkt in dependent mode */ #define SMAP_BD_TX_LOSSCR (1<<7) /* loss of carrior sense */ #define SMAP_BD_TX_EDEFER (1<<6) /* excessive deferal */ #define SMAP_BD_TX_ECOLL (1<<5) /* excessive collision */ #define SMAP_BD_TX_LCOLL (1<<4) /* late collision */ #define SMAP_BD_TX_MCOLL (1<<3) /* multiple collision */ #define SMAP_BD_TX_SCOLL (1<<2) /* single collision */ #define SMAP_BD_TX_UNDERRUN (1<<1) /* underrun */ #define SMAP_BD_TX_SQE (1<<0) /* SQE */ #define SMAP_BD_TX_ERROR (SMAP_BD_TX_LOSSCR|SMAP_BD_TX_EDEFER|SMAP_BD_TX_ECOLL| \ SMAP_BD_TX_LCOLL|SMAP_BD_TX_UNDERRUN) /* RX Control */ #define SMAP_BD_RX_EMPTY (1<<15) /* set:driver, clear:HW */ /* RX Status */ #define SMAP_BD_RX_EMPTY (1<<15) /* set:driver, clear:HW */ #define SMAP_BD_RX_OVERRUN (1<<9) /* overrun */ #define SMAP_BD_RX_PFRM (1<<8) /* pause frame */ #define SMAP_BD_RX_BADFRM (1<<7) /* bad frame */ #define SMAP_BD_RX_RUNTFRM (1<<6) /* runt frame */ #define SMAP_BD_RX_SHORTEVNT (1<<5) /* short event */ #define SMAP_BD_RX_ALIGNERR (1<<4) /* alignment error */ #define SMAP_BD_RX_BADFCS (1<<3) /* bad FCS */ #define SMAP_BD_RX_FRMTOOLONG (1<<2) /* frame too long */ #define SMAP_BD_RX_OUTRANGE (1<<1) /* out of range error */ #define SMAP_BD_RX_INRANGE (1<<0) /* in range error */ #define SMAP_BD_RX_ERROR (SMAP_BD_RX_OVERRUN|SMAP_BD_RX_RUNTFRM|SMAP_BD_RX_SHORTEVNT| \ SMAP_BD_RX_ALIGNERR|SMAP_BD_RX_BADFCS|SMAP_BD_RX_FRMTOOLONG| \ SMAP_BD_RX_OUTRANGE|SMAP_BD_RX_INRANGE) /* PHY registers (National Semiconductor DP83846A). */ #define SMAP_NS_OUI 0x080017 #define SMAP_DsPHYTER_ADDRESS 0x1 #define SMAP_DsPHYTER_BMCR 0x00 #define SMAP_PHY_BMCR_RST (1<<15) /* ReSeT */ #define SMAP_PHY_BMCR_LPBK (1<<14) /* LooPBacK */ #define SMAP_PHY_BMCR_100M (1<<13) /* speed select, 1:100M, 0:10M */ #define SMAP_PHY_BMCR_10M (0<<13) /* speed select, 1:100M, 0:10M */ #define SMAP_PHY_BMCR_ANEN (1<<12) /* Auto-Negotiation ENable */ #define SMAP_PHY_BMCR_PWDN (1<<11) /* PoWer DowN */ #define SMAP_PHY_BMCR_ISOL (1<<10) /* ISOLate */ #define SMAP_PHY_BMCR_RSAN (1<<9) /* ReStart Auto-Negotiation */ #define SMAP_PHY_BMCR_DUPM (1<<8) /* DUPlex Mode, 1:FDX, 0:HDX */ #define SMAP_PHY_BMCR_COLT (1<<7) /* COLlision Test */ #define SMAP_DsPHYTER_BMSR 0x01 #define SMAP_PHY_BMSR_ANCP (1<<5) /* Auto-Negotiation ComPlete */ #define SMAP_PHY_BMSR_LINK (1<<2) /* LINK status */ #define SMAP_DsPHYTER_PHYIDR1 0x02 #define SMAP_PHY_IDR1_VAL (((SMAP_NS_OUI<<2)>>8)&0xffff) #define SMAP_DsPHYTER_PHYIDR2 0x03 #define SMAP_PHY_IDR2_VMDL 0x2 /* Vendor MoDeL number */ #define SMAP_PHY_IDR2_VAL \ (((SMAP_NS_OUI<<10)&0xFC00)|((SMAP_PHY_IDR2_VMDL<<4)&0x3F0)) #define SMAP_PHY_IDR2_MSK 0xFFF0 #define SMAP_PHY_IDR2_REV_MSK 0x000F #define SMAP_DsPHYTER_ANAR 0x04 #define SMAP_DsPHYTER_ANLPAR 0x05 #define SMAP_DsPHYTER_ANLPARNP 0x05 #define SMAP_DsPHYTER_ANER 0x06 #define SMAP_DsPHYTER_ANNPTR 0x07 /* Extended registers. */ #define SMAP_DsPHYTER_PHYSTS 0x10 #define SMAP_PHY_STS_REL (1<<13) /* Receive Error Latch */ #define SMAP_PHY_STS_POST (1<<12) /* POlarity STatus */ #define SMAP_PHY_STS_FCSL (1<<11) /* False Carrier Sense Latch */ #define SMAP_PHY_STS_SD (1<<10) /* 100BT unconditional Signal Detect */ #define SMAP_PHY_STS_DSL (1<<9) /* 100BT DeScrambler Lock */ #define SMAP_PHY_STS_PRCV (1<<8) /* Page ReCeiVed */ #define SMAP_PHY_STS_RFLT (1<<6) /* Remote FauLT */ #define SMAP_PHY_STS_JBDT (1<<5) /* JaBber DetecT */ #define SMAP_PHY_STS_ANCP (1<<4) /* Auto-Negotiation ComPlete */ #define SMAP_PHY_STS_LPBK (1<<3) /* LooPBacK status */ #define SMAP_PHY_STS_DUPS (1<<2) /* DUPlex Status,1:FDX,0:HDX */ #define SMAP_PHY_STS_FDX (1<<2) /* Full Duplex */ #define SMAP_PHY_STS_HDX (0<<2) /* Half Duplex */ #define SMAP_PHY_STS_SPDS (1<<1) /* SPeeD Status */ #define SMAP_PHY_STS_10M (1<<1) /* 10Mbps */ #define SMAP_PHY_STS_100M (0<<1) /* 100Mbps */ #define SMAP_PHY_STS_LINK (1<<0) /* LINK status */ #define SMAP_DsPHYTER_FCSCR 0x14 #define SMAP_DsPHYTER_RECR 0x15 #define SMAP_DsPHYTER_PCSR 0x16 #define SMAP_DsPHYTER_PHYCTRL 0x19 #define SMAP_DsPHYTER_10BTSCR 0x1A #define SMAP_DsPHYTER_CDCTRL 0x1B /* * ATA hardware types and definitions. * * Copyright (c) 2003 Marcus R. Brown * * * code included from the ps2drv iop driver, modified by linuzappz * */ #define ATA_DEV9_HDD_BASE (SPD_REGBASE + 0x40) /* AIF on T10Ks - Not supported yet. */ #define ATA_AIF_HDD_BASE (SPD_REGBASE + 0x4000000 + 0x60) #define ATA_R_DATA (ATA_DEV9_HDD_BASE + 0x00) #define ATA_R_ERROR (ATA_DEV9_HDD_BASE + 0x02) #define ATA_R_NSECTOR (ATA_DEV9_HDD_BASE + 0x04) #define ATA_R_SECTOR (ATA_DEV9_HDD_BASE + 0x06) #define ATA_R_LCYL (ATA_DEV9_HDD_BASE + 0x08) #define ATA_R_HCYL (ATA_DEV9_HDD_BASE + 0x0a) #define ATA_R_SELECT (ATA_DEV9_HDD_BASE + 0x0c) #define ATA_R_STATUS (ATA_DEV9_HDD_BASE + 0x0e) #define ATA_R_CONTROL (ATA_DEV9_HDD_BASE + 0x1c) #define ATA_DEV9_INT (0x01) #define ATA_DEV9_INT_DMA (0x02) //not sure rly #define ATA_DEV9_HDD_END (ATA_R_CONTROL+4) /* * NAND Flash via Dev9 driver definitions * * Copyright (c) 2003 Marcus R. Brown * * * code included from the ps2sdk iop driver * */ #define FLASH_ID_64MBIT 0xe6 #define FLASH_ID_128MBIT 0x73 #define FLASH_ID_256MBIT 0x75 #define FLASH_ID_512MBIT 0x76 #define FLASH_ID_1024MBIT 0x79 /* SmartMedia commands. */ #define SM_CMD_READ1 0x00 #define SM_CMD_READ2 0x01 #define SM_CMD_READ3 0x50 #define SM_CMD_RESET 0xff #define SM_CMD_WRITEDATA 0x80 #define SM_CMD_PROGRAMPAGE 0x10 #define SM_CMD_ERASEBLOCK 0x60 #define SM_CMD_ERASECONFIRM 0xd0 #define SM_CMD_GETSTATUS 0x70 #define SM_CMD_READID 0x90 typedef struct { u32 id; u32 mbits; u32 page_bytes; /* bytes/page */ u32 block_pages; /* pages/block */ u32 blocks; } flash_info_t; /* static flash_info_t devices[] = { { FLASH_ID_64MBIT, 64, 528, 16, 1024 }, { FLASH_ID_128MBIT, 128, 528, 32, 1024 }, { FLASH_ID_256MBIT, 256, 528, 32, 2048 }, { FLASH_ID_512MBIT, 512, 528, 32, 4096 }, { FLASH_ID_1024MBIT, 1024, 528, 32, 8192 } }; #define NUM_DEVICES (sizeof(devices)/sizeof(flash_info_t)) */ // definitions added by Florin #define FLASH_REGBASE 0x10004800 #define FLASH_R_DATA (FLASH_REGBASE + 0x00) #define FLASH_R_CMD (FLASH_REGBASE + 0x04) #define FLASH_R_ADDR (FLASH_REGBASE + 0x08) #define FLASH_R_CTRL (FLASH_REGBASE + 0x0C) #define FLASH_PP_READY (1<<0) // r/w /BUSY #define FLASH_PP_WRITE (1<<7) // -/w WRITE data #define FLASH_PP_CSEL (1<<8) // -/w CS #define FLASH_PP_READ (1<<11) // -/w READ data #define FLASH_PP_NOECC (1<<12) // -/w ECC disabled //#define FLASH_R_10 (FLASH_REGBASE + 0x10) #define FLASH_R_ID (FLASH_REGBASE + 0x14) #define FLASH_REGSIZE 0x20 void CALLBACK FLASHinit(); u32 CALLBACK FLASHread32(u32 addr, int size); void CALLBACK FLASHwrite32(u32 addr, u32 value, int size); void _DEV9irq(int cause, int cycles); int emu_printf(const char *fmt, ...); #pragma warning(error:4013) #endif