mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
111 lines
3.5 KiB
C
111 lines
3.5 KiB
C
#ifndef _RTL837X_STDIO_H_
|
|
#define _RTL837X_STDIO_H_
|
|
|
|
#include "uip/uip-conf.h"
|
|
#include <stdint.h>
|
|
|
|
// This has to be set to the number of SFP+ ports, i.e. 1 or 2
|
|
#define NSFP 2
|
|
// SCL and SDA pin numbers for SFP cage 0 and SFP cage 1
|
|
#define SCL_PIN 3
|
|
#define SDA_PIN_0 4
|
|
#define SDA_PIN_1 3
|
|
|
|
// Define Port-masks for 9-port devices and 6-port devices
|
|
#define PMASK_9 0x1ff
|
|
#define PMASK_6 0x1f8
|
|
#define PMASK_CPU 0x200
|
|
|
|
// The serial buffer. Defines the command line size
|
|
// Must be 2^x and <= 128
|
|
#define SBUF_SIZE 128
|
|
|
|
// Size of the TCP Output buffer
|
|
#define TCP_OUTBUF_SIZE 2500
|
|
|
|
// Size of the memory area dedicated to VLAN-names
|
|
#define VLAN_NAMES_SIZE 1024
|
|
|
|
// For RX data, a propriatary RTL FRAME is inserted. Instead of 0x0800 for IPv4,
|
|
// the RTL_FRAME_TAG_ID is used as part of an 8-byte tag. When VLAN is activated,
|
|
// the VLAN tag is inserted after the RTL tag
|
|
// See here for the RTL tag: https://github.com/torvalds/linux/commit/1521d5adfc2b557e15f97283c8b7ad688c3ebc40
|
|
#define RTL_TAG_SIZE 8
|
|
#define VLAN_TAG_SIZE 4
|
|
#define RTL_FRAME_TAG_ID 0x8899
|
|
|
|
// For RX and TX, an 8 byte header describing the frame to be moved to the Asic
|
|
// and received from the Asic is used
|
|
#define RTL_FRAME_HEADER_SIZE 8
|
|
|
|
// This is the standard size of an Ethernet frame header
|
|
#define ETHER_HEADER_SIZE 14
|
|
|
|
#if NSFP == 1
|
|
#define IS_SFP(port) (i == maxPort)
|
|
#else
|
|
#define IS_SFP(port) (i == maxPort || i == 3)
|
|
#endif
|
|
|
|
#define CONFIG_START 0x70000
|
|
#define CONFIG_LEN 0x1000
|
|
#define CODE0_SIZE 0x4000
|
|
#define CODE_BANK_SIZE 0xc000
|
|
|
|
// Constants for the circular command buffer, the size must be 2^n
|
|
#define CMD_HISTORY_SIZE 0x400
|
|
#define CMD_HISTORY_MASK (CMD_HISTORY_SIZE - 1)
|
|
|
|
/**
|
|
* Representation of a 48-bit Ethernet address.
|
|
*/
|
|
struct uip_eth_addr {
|
|
uint8_t addr[6];
|
|
};
|
|
|
|
struct flash_region_t {
|
|
uint32_t addr;
|
|
uint16_t len;
|
|
};
|
|
|
|
extern __xdata uint8_t uip_buf[UIP_CONF_BUFFER_SIZE+2];
|
|
|
|
|
|
// Headers for calls in the common code area (HOME/BANK0)
|
|
void print_string(__code char *p);
|
|
void print_long(__xdata uint32_t a);
|
|
void print_short(uint16_t a);
|
|
void print_byte(uint8_t a);
|
|
void print_sfr_data(void);
|
|
void print_phy_data(void);
|
|
void phy_write_mask(uint16_t phy_mask, uint8_t dev_id, uint16_t reg, uint16_t v);
|
|
void phy_write(uint8_t phy_id, uint8_t dev_id, uint16_t reg, uint16_t v);
|
|
void phy_read(uint8_t phy_id, uint8_t dev_id, uint16_t reg);
|
|
void phy_modify(uint8_t phy_id, uint8_t dev_id, uint16_t reg, uint16_t mask, uint16_t set);
|
|
void reg_read(uint16_t reg_addr);
|
|
void reg_read_m(uint16_t reg_addr);
|
|
void reg_write(uint16_t reg_addr);
|
|
void reg_write_m(uint16_t reg_addr);
|
|
void delay(uint16_t t);
|
|
void sleep(uint16_t t);
|
|
void write_char(char c);
|
|
void print_reg(uint16_t reg);
|
|
uint8_t sfp_read_reg(uint8_t slot, uint8_t reg);
|
|
void reg_bit_set(uint16_t reg_addr, char bit);
|
|
void reg_bit_clear(uint16_t reg_addr, char bit);
|
|
void sfr_set_zero(void);
|
|
void reset_chip(void);
|
|
void memcpy(__xdata void * __xdata dst, __xdata const void * __xdata src, uint16_t len);
|
|
void memcpyc(register __xdata uint8_t *dst, register __code uint8_t *src, register uint16_t len);
|
|
void memset(register __xdata uint8_t *dst, register __xdata uint8_t v, register uint8_t len);
|
|
uint16_t strlen(register __code const char *s);
|
|
uint16_t strlen_x(register __xdata const char *s);
|
|
uint16_t strtox(register __xdata uint8_t *dst, register __code const char *s);
|
|
void tcpip_output(void);
|
|
void print_string_x(__xdata char *p);
|
|
uint8_t read_flash(uint8_t bank, __code uint8_t *addr);
|
|
void get_random_32(void);
|
|
void read_reg_timer(uint32_t * tmr);
|
|
|
|
#endif
|