xref: /linux/include/linux/rio.h (revision 07590ff03935a2efbc03bc7861f20c059576a479)
170a50ebdSMatt Porter /*
270a50ebdSMatt Porter  * RapidIO interconnect services
370a50ebdSMatt Porter  * (RapidIO Interconnect Specification, http://www.rapidio.org)
470a50ebdSMatt Porter  *
570a50ebdSMatt Porter  * Copyright 2005 MontaVista Software, Inc.
670a50ebdSMatt Porter  * Matt Porter <mporter@kernel.crashing.org>
770a50ebdSMatt Porter  *
870a50ebdSMatt Porter  * This program is free software; you can redistribute  it and/or modify it
970a50ebdSMatt Porter  * under  the terms of  the GNU General  Public License as published by the
1070a50ebdSMatt Porter  * Free Software Foundation;  either version 2 of the  License, or (at your
1170a50ebdSMatt Porter  * option) any later version.
1270a50ebdSMatt Porter  */
1370a50ebdSMatt Porter 
1470a50ebdSMatt Porter #ifndef LINUX_RIO_H
1570a50ebdSMatt Porter #define LINUX_RIO_H
1670a50ebdSMatt Porter 
1770a50ebdSMatt Porter #include <linux/types.h>
1870a50ebdSMatt Porter #include <linux/ioport.h>
1970a50ebdSMatt Porter #include <linux/list.h>
2070a50ebdSMatt Porter #include <linux/errno.h>
2170a50ebdSMatt Porter #include <linux/device.h>
2270a50ebdSMatt Porter #include <linux/rio_regs.h>
2370a50ebdSMatt Porter 
2470a50ebdSMatt Porter #define RIO_NO_HOPCOUNT		-1
25c70555b0SAlexandre Bounine #define RIO_INVALID_DESTID	0xffff
2670a50ebdSMatt Porter 
2770a50ebdSMatt Porter #define RIO_MAX_MPORT_RESOURCES	16
2870a50ebdSMatt Porter #define RIO_MAX_DEV_RESOURCES	16
2970a50ebdSMatt Porter 
3070a50ebdSMatt Porter #define RIO_GLOBAL_TABLE	0xff	/* Indicates access of a switch's
3170a50ebdSMatt Porter 					   global routing table if it
3270a50ebdSMatt Porter 					   has multiple (or per port)
3370a50ebdSMatt Porter 					   tables */
3470a50ebdSMatt Porter 
3570a50ebdSMatt Porter #define RIO_INVALID_ROUTE	0xff	/* Indicates that a route table
3670a50ebdSMatt Porter 					   entry is invalid (no route
3770a50ebdSMatt Porter 					   exists for the device ID) */
3870a50ebdSMatt Porter 
39e0423236SZhang Wei #define RIO_MAX_ROUTE_ENTRIES(size)	(size ? (1 << 16) : (1 << 8))
40e0423236SZhang Wei #define RIO_ANY_DESTID(size)		(size ? 0xffff : 0xff)
4170a50ebdSMatt Porter 
4270a50ebdSMatt Porter #define RIO_MAX_MBOX		4
4370a50ebdSMatt Porter #define RIO_MAX_MSG_SIZE	0x1000
4470a50ebdSMatt Porter 
4570a50ebdSMatt Porter /*
4670a50ebdSMatt Porter  * Error values that may be returned by RIO functions.
4770a50ebdSMatt Porter  */
4870a50ebdSMatt Porter #define RIO_SUCCESSFUL			0x00
4970a50ebdSMatt Porter #define RIO_BAD_SIZE			0x81
5070a50ebdSMatt Porter 
5170a50ebdSMatt Porter /*
5270a50ebdSMatt Porter  * For RIO devices, the region numbers are assigned this way:
5370a50ebdSMatt Porter  *
5470a50ebdSMatt Porter  *	0	RapidIO outbound doorbells
5570a50ebdSMatt Porter  *      1-15	RapidIO memory regions
5670a50ebdSMatt Porter  *
5770a50ebdSMatt Porter  * For RIO master ports, the region number are assigned this way:
5870a50ebdSMatt Porter  *
5970a50ebdSMatt Porter  *	0	RapidIO inbound doorbells
6070a50ebdSMatt Porter  *	1	RapidIO inbound mailboxes
6170a50ebdSMatt Porter  *	1	RapidIO outbound mailboxes
6270a50ebdSMatt Porter  */
6370a50ebdSMatt Porter #define RIO_DOORBELL_RESOURCE	0
6470a50ebdSMatt Porter #define RIO_INB_MBOX_RESOURCE	1
6570a50ebdSMatt Porter #define RIO_OUTB_MBOX_RESOURCE	2
6670a50ebdSMatt Porter 
6770a50ebdSMatt Porter extern struct bus_type rio_bus_type;
6870a50ebdSMatt Porter extern struct list_head rio_devices;	/* list of all devices */
6970a50ebdSMatt Porter 
7070a50ebdSMatt Porter struct rio_mport;
7170a50ebdSMatt Porter 
7270a50ebdSMatt Porter /**
7370a50ebdSMatt Porter  * struct rio_dev - RIO device info
7470a50ebdSMatt Porter  * @global_list: Node in list of all RIO devices
7570a50ebdSMatt Porter  * @net_list: Node in list of RIO devices in a network
7670a50ebdSMatt Porter  * @net: Network this device is a part of
7770a50ebdSMatt Porter  * @did: Device ID
7870a50ebdSMatt Porter  * @vid: Vendor ID
7970a50ebdSMatt Porter  * @device_rev: Device revision
8070a50ebdSMatt Porter  * @asm_did: Assembly device ID
8170a50ebdSMatt Porter  * @asm_vid: Assembly vendor ID
8270a50ebdSMatt Porter  * @asm_rev: Assembly revision
8370a50ebdSMatt Porter  * @efptr: Extended feature pointer
8470a50ebdSMatt Porter  * @pef: Processing element features
8570a50ebdSMatt Porter  * @swpinfo: Switch port info
8670a50ebdSMatt Porter  * @src_ops: Source operation capabilities
8770a50ebdSMatt Porter  * @dst_ops: Destination operation capabilities
88fa78cc51SMatt Porter  * @dma_mask: Mask of bits of RIO address this device implements
8970a50ebdSMatt Porter  * @rswitch: Pointer to &struct rio_switch if valid for this device
9070a50ebdSMatt Porter  * @driver: Driver claiming this device
9170a50ebdSMatt Porter  * @dev: Device model device
9270a50ebdSMatt Porter  * @riores: RIO resources this device owns
9370a50ebdSMatt Porter  * @destid: Network destination ID
9470a50ebdSMatt Porter  */
9570a50ebdSMatt Porter struct rio_dev {
9670a50ebdSMatt Porter 	struct list_head global_list;	/* node in list of all RIO devices */
9770a50ebdSMatt Porter 	struct list_head net_list;	/* node in per net list */
9870a50ebdSMatt Porter 	struct rio_net *net;	/* RIO net this device resides in */
9970a50ebdSMatt Porter 	u16 did;
10070a50ebdSMatt Porter 	u16 vid;
10170a50ebdSMatt Porter 	u32 device_rev;
10270a50ebdSMatt Porter 	u16 asm_did;
10370a50ebdSMatt Porter 	u16 asm_vid;
10470a50ebdSMatt Porter 	u16 asm_rev;
10570a50ebdSMatt Porter 	u16 efptr;
10670a50ebdSMatt Porter 	u32 pef;
10770a50ebdSMatt Porter 	u32 swpinfo;		/* Only used for switches */
10870a50ebdSMatt Porter 	u32 src_ops;
10970a50ebdSMatt Porter 	u32 dst_ops;
110fa78cc51SMatt Porter 	u64 dma_mask;
11170a50ebdSMatt Porter 	struct rio_switch *rswitch;	/* RIO switch info */
11270a50ebdSMatt Porter 	struct rio_driver *driver;	/* RIO driver claiming this device */
11370a50ebdSMatt Porter 	struct device dev;	/* LDM device structure */
11470a50ebdSMatt Porter 	struct resource riores[RIO_MAX_DEV_RESOURCES];
11570a50ebdSMatt Porter 	u16 destid;
11670a50ebdSMatt Porter };
11770a50ebdSMatt Porter 
11870a50ebdSMatt Porter #define rio_dev_g(n) list_entry(n, struct rio_dev, global_list)
11970a50ebdSMatt Porter #define rio_dev_f(n) list_entry(n, struct rio_dev, net_list)
12070a50ebdSMatt Porter #define	to_rio_dev(n) container_of(n, struct rio_dev, dev)
12170a50ebdSMatt Porter 
12270a50ebdSMatt Porter /**
12370a50ebdSMatt Porter  * struct rio_msg - RIO message event
12470a50ebdSMatt Porter  * @res: Mailbox resource
12570a50ebdSMatt Porter  * @mcback: Message event callback
12670a50ebdSMatt Porter  */
12770a50ebdSMatt Porter struct rio_msg {
12870a50ebdSMatt Porter 	struct resource *res;
1296978bbc0SMatt Porter 	void (*mcback) (struct rio_mport * mport, void *dev_id, int mbox, int slot);
13070a50ebdSMatt Porter };
13170a50ebdSMatt Porter 
13270a50ebdSMatt Porter /**
13370a50ebdSMatt Porter  * struct rio_dbell - RIO doorbell event
13470a50ebdSMatt Porter  * @node: Node in list of doorbell events
13570a50ebdSMatt Porter  * @res: Doorbell resource
13670a50ebdSMatt Porter  * @dinb: Doorbell event callback
1376978bbc0SMatt Porter  * @dev_id: Device specific pointer to pass on event
13870a50ebdSMatt Porter  */
13970a50ebdSMatt Porter struct rio_dbell {
14070a50ebdSMatt Porter 	struct list_head node;
14170a50ebdSMatt Porter 	struct resource *res;
1426978bbc0SMatt Porter 	void (*dinb) (struct rio_mport *mport, void *dev_id, u16 src, u16 dst, u16 info);
1436978bbc0SMatt Porter 	void *dev_id;
14470a50ebdSMatt Porter };
14570a50ebdSMatt Porter 
14661b26917SZhang Wei enum rio_phy_type {
14761b26917SZhang Wei 	RIO_PHY_PARALLEL,
14861b26917SZhang Wei 	RIO_PHY_SERIAL,
14961b26917SZhang Wei };
15061b26917SZhang Wei 
15170a50ebdSMatt Porter /**
15270a50ebdSMatt Porter  * struct rio_mport - RIO master port info
15370a50ebdSMatt Porter  * @dbells: List of doorbell events
15470a50ebdSMatt Porter  * @node: Node in global list of master ports
15570a50ebdSMatt Porter  * @nnode: Node in network list of master ports
15670a50ebdSMatt Porter  * @iores: I/O mem resource that this master port interface owns
15770a50ebdSMatt Porter  * @riores: RIO resources that this master port interfaces owns
15870a50ebdSMatt Porter  * @inb_msg: RIO inbound message event descriptors
15970a50ebdSMatt Porter  * @outb_msg: RIO outbound message event descriptors
16070a50ebdSMatt Porter  * @host_deviceid: Host device ID associated with this master port
16170a50ebdSMatt Porter  * @ops: configuration space functions
16270a50ebdSMatt Porter  * @id: Port ID, unique among all ports
16370a50ebdSMatt Porter  * @index: Port index, unique among all port interfaces of the same type
1649941d945SRandy Dunlap  * @sys_size: RapidIO common transport system size
1659941d945SRandy Dunlap  * @phy_type: RapidIO phy type
16670a50ebdSMatt Porter  * @name: Port name string
167ad1e9380SZhang Wei  * @priv: Master port private data
16870a50ebdSMatt Porter  */
16970a50ebdSMatt Porter struct rio_mport {
17070a50ebdSMatt Porter 	struct list_head dbells;	/* list of doorbell events */
17170a50ebdSMatt Porter 	struct list_head node;	/* node in global list of ports */
17270a50ebdSMatt Porter 	struct list_head nnode;	/* node in net list of ports */
17370a50ebdSMatt Porter 	struct resource iores;
17470a50ebdSMatt Porter 	struct resource riores[RIO_MAX_MPORT_RESOURCES];
17570a50ebdSMatt Porter 	struct rio_msg inb_msg[RIO_MAX_MBOX];
17670a50ebdSMatt Porter 	struct rio_msg outb_msg[RIO_MAX_MBOX];
17770a50ebdSMatt Porter 	int host_deviceid;	/* Host device ID */
17870a50ebdSMatt Porter 	struct rio_ops *ops;	/* maintenance transaction functions */
17970a50ebdSMatt Porter 	unsigned char id;	/* port ID, unique among all ports */
18070a50ebdSMatt Porter 	unsigned char index;	/* port index, unique among all port
18170a50ebdSMatt Porter 				   interfaces of the same type */
182e0423236SZhang Wei 	unsigned int sys_size;	/* RapidIO common transport system size.
183e0423236SZhang Wei 				 * 0 - Small size. 256 devices.
184e0423236SZhang Wei 				 * 1 - Large size, 65536 devices.
185e0423236SZhang Wei 				 */
18661b26917SZhang Wei 	enum rio_phy_type phy_type;	/* RapidIO phy type */
18770a50ebdSMatt Porter 	unsigned char name[40];
188ad1e9380SZhang Wei 	void *priv;		/* Master port private data */
18970a50ebdSMatt Porter };
19070a50ebdSMatt Porter 
19170a50ebdSMatt Porter /**
19270a50ebdSMatt Porter  * struct rio_net - RIO network info
19370a50ebdSMatt Porter  * @node: Node in global list of RIO networks
19470a50ebdSMatt Porter  * @devices: List of devices in this network
19570a50ebdSMatt Porter  * @mports: List of master ports accessing this network
19670a50ebdSMatt Porter  * @hport: Default port for accessing this network
19770a50ebdSMatt Porter  * @id: RIO network ID
19870a50ebdSMatt Porter  */
19970a50ebdSMatt Porter struct rio_net {
20070a50ebdSMatt Porter 	struct list_head node;	/* node in list of networks */
20170a50ebdSMatt Porter 	struct list_head devices;	/* list of devices in this net */
20270a50ebdSMatt Porter 	struct list_head mports;	/* list of ports accessing net */
20370a50ebdSMatt Porter 	struct rio_mport *hport;	/* primary port for accessing net */
20470a50ebdSMatt Porter 	unsigned char id;	/* RIO network ID */
20570a50ebdSMatt Porter };
20670a50ebdSMatt Porter 
20770a50ebdSMatt Porter /**
20870a50ebdSMatt Porter  * struct rio_switch - RIO switch info
20970a50ebdSMatt Porter  * @node: Node in global list of switches
21070a50ebdSMatt Porter  * @switchid: Switch ID that is unique across a network
21170a50ebdSMatt Porter  * @hopcount: Hopcount to this switch
21270a50ebdSMatt Porter  * @destid: Associated destid in the path
21370a50ebdSMatt Porter  * @route_table: Copy of switch routing table
21470a50ebdSMatt Porter  * @add_entry: Callback for switch-specific route add function
21570a50ebdSMatt Porter  * @get_entry: Callback for switch-specific route get function
216*07590ff0SAlexandre Bounine  * @clr_table: Callback for switch-specific clear route table function
21770a50ebdSMatt Porter  */
21870a50ebdSMatt Porter struct rio_switch {
21970a50ebdSMatt Porter 	struct list_head node;
22070a50ebdSMatt Porter 	u16 switchid;
22170a50ebdSMatt Porter 	u16 hopcount;
22270a50ebdSMatt Porter 	u16 destid;
223e0423236SZhang Wei 	u8 *route_table;
22470a50ebdSMatt Porter 	int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
22570a50ebdSMatt Porter 			  u16 table, u16 route_destid, u8 route_port);
22670a50ebdSMatt Porter 	int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
22770a50ebdSMatt Porter 			  u16 table, u16 route_destid, u8 * route_port);
228*07590ff0SAlexandre Bounine 	int (*clr_table) (struct rio_mport *mport, u16 destid, u8 hopcount,
229*07590ff0SAlexandre Bounine 			  u16 table);
23070a50ebdSMatt Porter };
23170a50ebdSMatt Porter 
23270a50ebdSMatt Porter /* Low-level architecture-dependent routines */
23370a50ebdSMatt Porter 
23470a50ebdSMatt Porter /**
23570a50ebdSMatt Porter  * struct rio_ops - Low-level RIO configuration space operations
23670a50ebdSMatt Porter  * @lcread: Callback to perform local (master port) read of config space.
23770a50ebdSMatt Porter  * @lcwrite: Callback to perform local (master port) write of config space.
23870a50ebdSMatt Porter  * @cread: Callback to perform network read of config space.
23970a50ebdSMatt Porter  * @cwrite: Callback to perform network write of config space.
24070a50ebdSMatt Porter  * @dsend: Callback to send a doorbell message.
24170a50ebdSMatt Porter  */
24270a50ebdSMatt Porter struct rio_ops {
243ad1e9380SZhang Wei 	int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len,
24470a50ebdSMatt Porter 			u32 *data);
245ad1e9380SZhang Wei 	int (*lcwrite) (struct rio_mport *mport, int index, u32 offset, int len,
24670a50ebdSMatt Porter 			u32 data);
247ad1e9380SZhang Wei 	int (*cread) (struct rio_mport *mport, int index, u16 destid,
248ad1e9380SZhang Wei 			u8 hopcount, u32 offset, int len, u32 *data);
249ad1e9380SZhang Wei 	int (*cwrite) (struct rio_mport *mport, int index, u16 destid,
250ad1e9380SZhang Wei 			u8 hopcount, u32 offset, int len, u32 data);
251ad1e9380SZhang Wei 	int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data);
25270a50ebdSMatt Porter };
25370a50ebdSMatt Porter 
25470a50ebdSMatt Porter #define RIO_RESOURCE_MEM	0x00000100
25570a50ebdSMatt Porter #define RIO_RESOURCE_DOORBELL	0x00000200
25670a50ebdSMatt Porter #define RIO_RESOURCE_MAILBOX	0x00000400
25770a50ebdSMatt Porter 
25870a50ebdSMatt Porter #define RIO_RESOURCE_CACHEABLE	0x00010000
25970a50ebdSMatt Porter #define RIO_RESOURCE_PCI	0x00020000
26070a50ebdSMatt Porter 
26170a50ebdSMatt Porter #define RIO_RESOURCE_BUSY	0x80000000
26270a50ebdSMatt Porter 
26370a50ebdSMatt Porter /**
26470a50ebdSMatt Porter  * struct rio_driver - RIO driver info
26570a50ebdSMatt Porter  * @node: Node in list of drivers
26670a50ebdSMatt Porter  * @name: RIO driver name
26770a50ebdSMatt Porter  * @id_table: RIO device ids to be associated with this driver
26870a50ebdSMatt Porter  * @probe: RIO device inserted
26970a50ebdSMatt Porter  * @remove: RIO device removed
27070a50ebdSMatt Porter  * @suspend: RIO device suspended
27170a50ebdSMatt Porter  * @resume: RIO device awakened
27270a50ebdSMatt Porter  * @enable_wake: RIO device enable wake event
27370a50ebdSMatt Porter  * @driver: LDM driver struct
27470a50ebdSMatt Porter  *
27570a50ebdSMatt Porter  * Provides info on a RIO device driver for insertion/removal and
27670a50ebdSMatt Porter  * power management purposes.
27770a50ebdSMatt Porter  */
27870a50ebdSMatt Porter struct rio_driver {
27970a50ebdSMatt Porter 	struct list_head node;
28070a50ebdSMatt Porter 	char *name;
28170a50ebdSMatt Porter 	const struct rio_device_id *id_table;
28270a50ebdSMatt Porter 	int (*probe) (struct rio_dev * dev, const struct rio_device_id * id);
28370a50ebdSMatt Porter 	void (*remove) (struct rio_dev * dev);
28470a50ebdSMatt Porter 	int (*suspend) (struct rio_dev * dev, u32 state);
28570a50ebdSMatt Porter 	int (*resume) (struct rio_dev * dev);
28670a50ebdSMatt Porter 	int (*enable_wake) (struct rio_dev * dev, u32 state, int enable);
28770a50ebdSMatt Porter 	struct device_driver driver;
28870a50ebdSMatt Porter };
28970a50ebdSMatt Porter 
29070a50ebdSMatt Porter #define	to_rio_driver(drv) container_of(drv,struct rio_driver, driver)
29170a50ebdSMatt Porter 
29270a50ebdSMatt Porter /**
29370a50ebdSMatt Porter  * struct rio_device_id - RIO device identifier
29470a50ebdSMatt Porter  * @did: RIO device ID
29570a50ebdSMatt Porter  * @vid: RIO vendor ID
29670a50ebdSMatt Porter  * @asm_did: RIO assembly device ID
29770a50ebdSMatt Porter  * @asm_vid: RIO assembly vendor ID
29870a50ebdSMatt Porter  *
29970a50ebdSMatt Porter  * Identifies a RIO device based on both the device/vendor IDs and
30070a50ebdSMatt Porter  * the assembly device/vendor IDs.
30170a50ebdSMatt Porter  */
30270a50ebdSMatt Porter struct rio_device_id {
30370a50ebdSMatt Porter 	u16 did, vid;
30470a50ebdSMatt Porter 	u16 asm_did, asm_vid;
30570a50ebdSMatt Porter };
30670a50ebdSMatt Porter 
30770a50ebdSMatt Porter /**
30870a50ebdSMatt Porter  * struct rio_route_ops - Per-switch route operations
30970a50ebdSMatt Porter  * @vid: RIO vendor ID
31070a50ebdSMatt Porter  * @did: RIO device ID
31170a50ebdSMatt Porter  * @add_hook: Callback that adds a route entry
31270a50ebdSMatt Porter  * @get_hook: Callback that gets a route entry
313*07590ff0SAlexandre Bounine  * @clr_hook: Callback that clears a switch route table (may be NULL)
31470a50ebdSMatt Porter  *
31570a50ebdSMatt Porter  * Defines the operations that are necessary to manipulate the route
31670a50ebdSMatt Porter  * tables for a particular RIO switch device.
31770a50ebdSMatt Porter  */
31870a50ebdSMatt Porter struct rio_route_ops {
31970a50ebdSMatt Porter 	u16 vid, did;
32070a50ebdSMatt Porter 	int (*add_hook) (struct rio_mport * mport, u16 destid, u8 hopcount,
32170a50ebdSMatt Porter 			 u16 table, u16 route_destid, u8 route_port);
32270a50ebdSMatt Porter 	int (*get_hook) (struct rio_mport * mport, u16 destid, u8 hopcount,
32370a50ebdSMatt Porter 			 u16 table, u16 route_destid, u8 * route_port);
324*07590ff0SAlexandre Bounine 	int (*clr_hook) (struct rio_mport *mport, u16 destid, u8 hopcount,
325*07590ff0SAlexandre Bounine 			 u16 table);
32670a50ebdSMatt Porter };
32770a50ebdSMatt Porter 
32870a50ebdSMatt Porter /* Architecture and hardware-specific functions */
32970a50ebdSMatt Porter extern int rio_init_mports(void);
33070a50ebdSMatt Porter extern void rio_register_mport(struct rio_mport *);
33170a50ebdSMatt Porter extern int rio_hw_add_outb_message(struct rio_mport *, struct rio_dev *, int,
33270a50ebdSMatt Porter 				   void *, size_t);
33370a50ebdSMatt Porter extern int rio_hw_add_inb_buffer(struct rio_mport *, int, void *);
33470a50ebdSMatt Porter extern void *rio_hw_get_inb_message(struct rio_mport *, int);
3356978bbc0SMatt Porter extern int rio_open_inb_mbox(struct rio_mport *, void *, int, int);
33670a50ebdSMatt Porter extern void rio_close_inb_mbox(struct rio_mport *, int);
3376978bbc0SMatt Porter extern int rio_open_outb_mbox(struct rio_mport *, void *, int, int);
33870a50ebdSMatt Porter extern void rio_close_outb_mbox(struct rio_mport *, int);
33970a50ebdSMatt Porter 
34070a50ebdSMatt Porter #endif				/* LINUX_RIO_H */
341