98 lines
2.4 KiB
C
98 lines
2.4 KiB
C
//
|
|
// Copyright (C) 2013-2014 Michael Geszkiewicz
|
|
//
|
|
// 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
//
|
|
|
|
#ifndef __BOARDS_H
|
|
#define __BOARDS_H
|
|
|
|
#ifdef _WIN32
|
|
#include "winio32/winio.h"
|
|
#endif
|
|
#include "hostmot2.h"
|
|
|
|
#include "eeprom.h"
|
|
|
|
#define MAX_BOARDS 8
|
|
|
|
#define BOARD_ANY (0)
|
|
#define BOARD_MULTI_INTERFACE (1<<0)
|
|
#define BOARD_ETH (1<<1)
|
|
#define BOARD_PCI (1<<2)
|
|
#define BOARD_EPP (1<<3)
|
|
#define BOARD_USB (1<<4)
|
|
#define BOARD_SPI (1<<5)
|
|
#define BOARD_SER (1<<6)
|
|
#define BOARD_WILDCARD (1<<30)
|
|
typedef enum {BOARD_MODE_CPLD, BOARD_MODE_FPGA} board_mode;
|
|
typedef enum {BOARD_FLASH_NONE = 0, BOARD_FLASH_HM2, BOARD_FLASH_IO, BOARD_FLASH_GPIO, BOARD_FLASH_REMOTE, BOARD_FLASH_EPP} board_flash;
|
|
|
|
typedef struct {
|
|
char *name;
|
|
u32 type;
|
|
} supported_board_entry_t;
|
|
|
|
typedef struct board_struct board_t;
|
|
|
|
struct board_struct {
|
|
u32 type;
|
|
board_mode mode;
|
|
board_flash flash;
|
|
u8 flash_id;
|
|
u32 flash_start_address;
|
|
int fallback_support;
|
|
int recover;
|
|
char dev_addr[16];
|
|
|
|
struct pci_dev *dev;
|
|
void *base;
|
|
int len;
|
|
u64 mem_base;
|
|
#ifdef _WIN32
|
|
tagPhysStruct_t mem_handle;
|
|
#endif
|
|
u16 ctrl_base_addr;
|
|
u16 data_base_addr;
|
|
|
|
u16 base_lo;
|
|
u16 base_hi;
|
|
void *region;
|
|
void *region_hi;
|
|
int epp_wide;
|
|
|
|
int (*open)(board_t *self);
|
|
int (*close)(board_t *self);
|
|
void (*print_info)(board_t *self);
|
|
|
|
llio_t llio;
|
|
};
|
|
|
|
typedef struct {
|
|
char *device_name;
|
|
u32 type;
|
|
u32 open_iface;
|
|
int list;
|
|
int address;
|
|
int verbose;
|
|
int recover;
|
|
char *dev_addr;
|
|
char *dev_hi_addr;
|
|
} board_access_t;
|
|
|
|
extern board_t boards[MAX_BOARDS];
|
|
extern int boards_count;
|
|
|
|
#endif
|