--- upstream/dynamips-0.2.5/dev_c3600.h 2007/10/06 16:01:44 1 +++ upstream/dynamips-0.2.8-RC1/dev_c3600.h 2007/10/06 16:33:40 11 @@ -14,7 +14,7 @@ #include "net.h" #include "device.h" #include "pci_dev.h" -#include "nmc93c46.h" +#include "nmc93cX6.h" #include "net_io.h" #include "vm.h" @@ -48,6 +48,14 @@ /* C3600 NM Management Interrupt handler */ #define C3600_NM_MGMT_IRQ 3 +/* Network IRQ */ +#define C3600_NETIO_IRQ_BASE 32 +#define C3600_NETIO_IRQ_PORT_BITS 2 +#define C3600_NETIO_IRQ_PORT_MASK ((1 << C3600_NETIO_IRQ_PORT_BITS) - 1) +#define C3600_NETIO_IRQ_PER_SLOT (1 << C3600_NETIO_IRQ_PORT_BITS) +#define C3600_NETIO_IRQ_END \ + (C3600_NETIO_IRQ_BASE + (C3600_MAX_NM_BAYS * C3600_NETIO_IRQ_PER_SLOT) - 1) + /* C3600 common device addresses */ #define C3600_GT64K_ADDR 0x14000000ULL #define C3600_IOFPGA_ADDR 0x1e800000ULL @@ -64,75 +72,23 @@ /* C3600 ELF Platform ID */ #define C3620_ELF_MACHINE_ID 0x1e #define C3640_ELF_MACHINE_ID 0x1e -//#define C3660_ELF_MACHINE_ID ???? +#define C3660_ELF_MACHINE_ID 0x34 + +#define VM_C3600(vm) ((c3600_t *)vm->hw_data) /* C3600 router */ typedef struct c3600_router c3600_t; -/* C3600 EEPROM */ -struct c3600_eeprom { - char *name; - m_uint16_t *data; - u_int len; -}; - /* Prototype of chassis driver initialization function */ typedef int (*c3600_chassis_init_fn)(c3600_t *router); -/* Prototype of NM driver initialization function */ -typedef int (*c3600_nm_init_fn)(c3600_t *router,char *name,u_int nm_bay); - -/* Prototype of PA driver shutdown function */ -typedef int (*c3600_nm_shutdown_fn)(c3600_t *router,u_int nm_bay); - -/* Prototype of PA NIO set function */ -typedef int (*c3600_nm_set_nio_fn)(c3600_t *router,u_int nm_bay,u_int port_id, - netio_desc_t *nio); - -/* Prototype of PA NIO unset function */ -typedef int (*c3600_nm_unset_nio_fn)(c3600_t *router,u_int nm_bay, - u_int port_id); - -/* C3600 Network Module Driver */ -struct c3600_nm_driver { - char *dev_type; - int supported; - int wic_slots; - c3600_nm_init_fn nm_init; - c3600_nm_shutdown_fn nm_shutdown; - c3600_nm_set_nio_fn nm_set_nio; - c3600_nm_unset_nio_fn nm_unset_nio; - - /* TODO: WAN Interface Cards (WIC) */ -}; - -/* C3600 NIO binding to a slot/port */ -struct c3600_nio_binding { - netio_desc_t *nio; - u_int port_id; - struct c3600_nio_binding *prev,*next; -}; - -/* C3600 NM bay */ -struct c3600_nm_bay { - char *dev_name; /* Device name */ - char *dev_type; /* Device Type */ - struct pci_bus *pci_map; /* PCI bus */ - m_uint16_t *eeprom_data; /* NM EEPROM data */ - u_int eeprom_data_len; /* NM EEPROM data length */ - struct c3600_nm_driver *nm_driver; /* NM Driver */ - void *drv_info; /* Private driver info */ - struct c3600_nio_binding *nio_list; /* NIO bindings to ports */ -}; - /* C3600 Chassis Driver */ struct c3600_chassis_driver { char *chassis_type; int chassis_id; int supported; c3600_chassis_init_fn chassis_init; - m_uint16_t *mb_eeprom; - u_int mb_eeprom_len; + struct cisco_eeprom *eeprom; }; /* C3600 router */ @@ -143,114 +99,33 @@ /* Associated VM instance */ vm_instance_t *vm; - /* IO memory size to be passed to Smart Init */ - u_int nm_iomem_size; + /* I/O FPGA */ + struct c3600_iofpga_data *iofpga_data; /* Chassis information */ struct c3600_chassis_driver *chassis_driver; - struct c3600_nm_bay nm_bay[C3600_MAX_NM_BAYS]; m_uint8_t oir_status; /* * Mainboard EEPROM. * It can be modified to change the chassis MAC address. */ - m_uint16_t mb_eeprom_data[64]; - struct nmc93c46_eeprom_def mb_eeprom; - struct nmc93c46_group mb_eeprom_group; + struct cisco_eeprom mb_eeprom; + struct nmc93cX6_group mb_eeprom_group; /* Network Module EEPROMs (3620/3640) */ - struct nmc93c46_eeprom_def nm_eeprom; - struct nmc93c46_group nm_eeprom_group; + struct nmc93cX6_group nm_eeprom_group; /* Cisco 3660 NM EEPROMs */ - struct nmc93c46_eeprom_def c3660_nm_eeprom_def[C3600_MAX_NM_BAYS]; - struct nmc93c46_group c3660_nm_eeprom_group[C3600_MAX_NM_BAYS]; + struct nmc93cX6_group c3660_nm_eeprom_group[C3600_MAX_NM_BAYS]; }; -/* Create a new router instance */ -c3600_t *c3600_create_instance(char *name,int instance_id); - -/* Delete a router instance */ -int c3600_delete_instance(char *name); - -/* Delete all router instances */ -int c3600_delete_all_instances(void); - -/* Save configuration of a C3600 instance */ -void c3600_save_config(c3600_t *router,FILE *fd); - -/* Save configurations of all C3600 instances */ -void c3600_save_config_all(FILE *fd); - -/* Set NM EEPROM definition */ -int c3600_nm_set_eeprom(c3600_t *router,u_int nm_bay, - const struct c3600_eeprom *eeprom); - -/* Unset NM EEPROM definition (empty bay) */ -int c3600_nm_unset_eeprom(c3600_t *router,u_int nm_bay); - -/* Check if a bay has a Network Module */ -int c3600_nm_check_eeprom(c3600_t *router,u_int nm_bay); - -/* Get bay info */ -struct c3600_nm_bay *c3600_nm_get_info(c3600_t *router,u_int nm_bay); - -/* Get NM type */ -char *c3600_nm_get_type(c3600_t *router,u_int nm_bay); - -/* Get driver info about the specified slot */ -void *c3600_nm_get_drvinfo(c3600_t *router,u_int nm_bay); +/* Set EEPROM for the specified slot */ +int c3600_set_slot_eeprom(c3600_t *router,u_int slot, + struct cisco_eeprom *eeprom); -/* Set driver info for the specified slot */ -int c3600_nm_set_drvinfo(c3600_t *router,u_int nm_bay,void *drv_info); - -/* Add a NM binding */ -int c3600_nm_add_binding(c3600_t *router,char *dev_type,u_int nm_bay); - -/* Remove a NM binding */ -int c3600_nm_remove_binding(c3600_t *router,u_int nm_bay); - -/* Find a NIO binding */ -struct c3600_nio_binding * -c3600_nm_find_nio_binding(c3600_t *router,u_int nm_bay,u_int port_id); - -/* Add a network IO binding */ -int c3600_nm_add_nio_binding(c3600_t *router,u_int nm_bay,u_int port_id, - char *nio_name); - -/* Remove a NIO binding */ -int c3600_nm_remove_nio_binding(c3600_t *router,u_int nm_bay,u_int port_id); - -/* Remove all NIO bindings for the specified NM */ -int c3600_nm_remove_all_nio_bindings(c3600_t *router,u_int nm_bay); - -/* Enable a Network IO descriptor for a Network Module */ -int c3600_nm_enable_nio(c3600_t *router,u_int nm_bay,u_int port_id); - -/* Disable Network IO descriptor of a Network Module */ -int c3600_nm_disable_nio(c3600_t *router,u_int nm_bay,u_int port_id); - -/* Enable all NIO of the specified NM */ -int c3600_nm_enable_all_nio(c3600_t *router,u_int nm_bay); - -/* Disable all NIO of the specified NM */ -int c3600_nm_disable_all_nio(c3600_t *router,u_int nm_bay); - -/* Initialize a Network Module */ -int c3600_nm_init(c3600_t *router,u_int nm_bay); - -/* Shutdown a Network Module */ -int c3600_nm_shutdown(c3600_t *router,u_int nm_bay); - -/* Shutdown all NM of a router */ -int c3600_nm_shutdown_all(c3600_t *router); - -/* Create a Network Module (command line) */ -int c3600_cmd_nm_create(c3600_t *router,char *str); - -/* Add a Network IO descriptor binding (command line) */ -int c3600_cmd_add_nio(c3600_t *router,char *str); +/* Get network IRQ for specified slot/port */ +u_int c3600_net_irq_for_slot_port(u_int slot,u_int port); /* Show the list of available NM drivers */ void c3600_nm_show_drivers(void); @@ -264,35 +139,27 @@ /* Get the chassis ID */ int c3600_chassis_get_id(c3600_t *router); -/* Show the list of available chassis drivers */ -void c3600_chassis_show_drivers(void); - /* Show C3600 hardware info */ void c3600_show_hardware(c3600_t *router); -/* Initialize default parameters for a C3600 */ -void c3600_init_defaults(c3600_t *router); - -/* Initialize the C3600 Platform */ -int c3600_init_platform(c3600_t *router); - -/* Initialize a Cisco 3600 instance */ -int c3600_init_instance(c3600_t *router); - -/* Stop a Cisco 3600 instance */ -int c3600_stop_instance(c3600_t *router); - /* Initialize EEPROM groups */ void c3600_init_eeprom_groups(c3600_t *router); /* dev_c3600_iofpga_init() */ int dev_c3600_iofpga_init(c3600_t *router,m_uint64_t paddr,m_uint32_t len); +/* Register the c3600 platform */ +int c3600_platform_register(void); + +/* Hypervisor C3600 initialization */ +extern int hypervisor_c3600_init(vm_platform_t *platform); + /* NM drivers */ -extern struct c3600_nm_driver dev_c3600_nm_1e_driver; -extern struct c3600_nm_driver dev_c3600_nm_4e_driver; -extern struct c3600_nm_driver dev_c3600_nm_1fe_tx_driver; -extern struct c3600_nm_driver dev_c3600_nm_4t_driver; -extern struct c3600_nm_driver dev_c3600_leopard_2fe_driver; +extern struct cisco_card_driver dev_c3600_nm_1e_driver; +extern struct cisco_card_driver dev_c3600_nm_4e_driver; +extern struct cisco_card_driver dev_c3600_nm_1fe_tx_driver; +extern struct cisco_card_driver dev_c3600_nm_4t_driver; +extern struct cisco_card_driver dev_c3600_leopard_2fe_driver; +extern struct cisco_card_driver dev_c3600_nm_16esw_driver; #endif