📄 hcl.c
字号:
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * hcl - SGI's Hardware Graph compatibility layer. * * Copyright (C) 1992-1997,2000-2003 Silicon Graphics, Inc. All rights reserved. */#include <linux/types.h>#include <linux/config.h>#include <linux/slab.h>#include <linux/ctype.h>#include <linux/module.h>#include <linux/init.h>#include <linux/kernel.h>#include <linux/fs.h>#include <linux/string.h>#include <linux/sched.h> /* needed for smp_lock.h :( */#include <linux/smp_lock.h>#include <asm/sn/sgi.h>#include <asm/io.h>#include <asm/sn/iograph.h>#include <asm/sn/hwgfs.h>#include <asm/sn/invent.h>#include <asm/sn/hcl.h>#include <asm/sn/labelcl.h>#include <asm/sn/simulator.h>#define vertex_hdl_t hwgfs_handle_tvertex_hdl_t hwgraph_root;vertex_hdl_t linux_busnum;extern void pci_bus_cvlink_init(void);unsigned long hwgraph_debug_mask = 0;/* * Debug flag definition. */#define OPTION_NONE 0x00#define HCL_DEBUG_NONE 0x00000#define HCL_DEBUG_ALL 0x0ffff#if defined(CONFIG_HCL_DEBUG)static unsigned int hcl_debug_init __initdata = HCL_DEBUG_NONE;#endifstatic unsigned int hcl_debug = HCL_DEBUG_NONE;#if defined(CONFIG_HCL_DEBUG) && !defined(MODULE)static unsigned int boot_options = OPTION_NONE;#endif/* * Some Global definitions. */vertex_hdl_t hcl_handle;invplace_t invplace_none = { GRAPH_VERTEX_NONE, GRAPH_VERTEX_PLACE_NONE, NULL};/* * HCL device driver. * The purpose of this device driver is to provide a facility * for User Level Apps e.g. hinv, ioconfig etc. an ioctl path * to manipulate label entries without having to implement * system call interfaces. This methodology will enable us to * make this feature module loadable. */static int hcl_open(struct inode * inode, struct file * filp){ if (hcl_debug) { printk("HCL: hcl_open called.\n"); } return(0);}static int hcl_close(struct inode * inode, struct file * filp){ if (hcl_debug) { printk("HCL: hcl_close called.\n"); } return(0);}static int hcl_ioctl(struct inode * inode, struct file * file, unsigned int cmd, unsigned long arg){ if (hcl_debug) { printk("HCL: hcl_ioctl called.\n"); } switch (cmd) { default: if (hcl_debug) { printk("HCL: hcl_ioctl cmd = 0x%x\n", cmd); } } return(0);}struct file_operations hcl_fops = { (struct module *)0, NULL, /* lseek - default */ NULL, /* read - general block-dev read */ NULL, /* write - general block-dev write */ NULL, /* readdir - bad */ NULL, /* poll */ hcl_ioctl, /* ioctl */ NULL, /* mmap */ hcl_open, /* open */ NULL, /* flush */ hcl_close, /* release */ NULL, /* fsync */ NULL, /* fasync */ NULL, /* lock */ NULL, /* readv */ NULL, /* writev */};/* * init_hcl() - Boot time initialization. * */int __init init_hcl(void){ extern void string_table_init(struct string_table *); extern struct string_table label_string_table; extern int init_ifconfig_net(void); extern int init_ioconfig_bus(void); extern int init_hwgfs_fs(void); int rv = 0; if (IS_RUNNING_ON_SIMULATOR()) { extern u64 klgraph_addr[]; klgraph_addr[0] = 0xe000003000030000; } init_hwgfs_fs(); /* * Create the hwgraph_root. */ rv = hwgraph_path_add(NULL, EDGE_LBL_HW, &hwgraph_root); if (rv) panic("init_hcl: Failed to create hwgraph_root.\n"); /* * Create the hcl driver to support inventory entry manipulations. * */ hcl_handle = hwgraph_register(hwgraph_root, ".hcl", 0, DEVFS_FL_AUTO_DEVNUM, 0, 0, S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP, 0, 0, &hcl_fops, NULL); if (hcl_handle == NULL) { panic("HCL: Unable to create HCL Driver in init_hcl().\n"); return(0); } /* * Initialize the HCL string table. */ string_table_init(&label_string_table); /* * Create the directory that links Linux bus numbers to our Xwidget. */ rv = hwgraph_path_add(hwgraph_root, EDGE_LBL_LINUX_BUS, &linux_busnum); if (linux_busnum == NULL) { panic("HCL: Unable to create %s\n", EDGE_LBL_LINUX_BUS); return(0); } pci_bus_cvlink_init(); /* * Initialize the ifconfgi_net driver that does network devices * Persistent Naming. */ init_ifconfig_net(); init_ioconfig_bus(); return(0);}/* * hcl_setup() - Process boot time parameters if given. * "hcl=" * This routine gets called only if "hcl=" is given in the * boot line and before init_hcl(). * * We currently do not have any boot options .. when we do, * functionalities can be added here. * */static int __init hcl_setup(char *str){ while ( (*str != '\0') && !isspace (*str) ) {#ifdef CONFIG_HCL_DEBUG if (strncmp (str, "all", 3) == 0) { hcl_debug_init |= HCL_DEBUG_ALL; str += 3; } else return 0;#endif if (*str != ',') return 0; ++str; } return 1;}__setup("hcl=", hcl_setup);inthwgraph_generate_path( vertex_hdl_t de, char *path, int buflen){ return (hwgfs_generate_path(de, path, buflen));}/* * Set device specific "fast information". * */voidhwgraph_fastinfo_set(vertex_hdl_t de, arbitrary_info_t fastinfo){ labelcl_info_replace_IDX(de, HWGRAPH_FASTINFO, fastinfo, NULL);}/* * Get device specific "fast information". * */arbitrary_info_thwgraph_fastinfo_get(vertex_hdl_t de){ arbitrary_info_t fastinfo; int rv; if (!de) { printk(KERN_WARNING "HCL: hwgraph_fastinfo_get handle given is NULL.\n"); return(-1); } rv = labelcl_info_get_IDX(de, HWGRAPH_FASTINFO, &fastinfo); if (rv == 0) return(fastinfo); return(0);}/* * hwgraph_connectpt_set - Sets the connect point handle in de to the * given connect_de handle. By default, the connect point of the * node is the parent. This effectively changes this assumption. */inthwgraph_connectpt_set(vertex_hdl_t de, vertex_hdl_t connect_de){ int rv; if (!de) return(-1); rv = labelcl_info_connectpt_set(de, connect_de); return(rv);}/* * hwgraph_connectpt_get: Returns the entry's connect point. * */vertex_hdl_thwgraph_connectpt_get(vertex_hdl_t de){ int rv; arbitrary_info_t info; vertex_hdl_t connect; rv = labelcl_info_get_IDX(de, HWGRAPH_CONNECTPT, &info); if (rv != 0) { return(NULL); } connect = (vertex_hdl_t)info; return(connect);}/* * hwgraph_mk_dir - Creates a directory entry. */vertex_hdl_thwgraph_mk_dir(vertex_hdl_t de, const char *name, unsigned int namelen, void *info){ int rv; labelcl_info_t *labelcl_info = NULL; vertex_hdl_t new_handle = NULL; vertex_hdl_t parent = NULL; /* * Create the device info structure for hwgraph compatiblity support. */ labelcl_info = labelcl_info_create(); if (!labelcl_info) return(NULL); /* * Create an entry. */ new_handle = hwgfs_mk_dir(de, name, (void *)labelcl_info); if (!new_handle) { labelcl_info_destroy(labelcl_info); return(NULL); } /* * Get the parent handle. */ parent = hwgfs_get_parent (new_handle); /* * To provide the same semantics as the hwgraph, set the connect point. */ rv = hwgraph_connectpt_set(new_handle, parent); if (!rv) { /* * We need to clean up! */ } /* * If the caller provides a private data pointer, save it in the * labelcl info structure(fastinfo). This can be retrieved via * hwgraph_fastinfo_get() */ if (info) hwgraph_fastinfo_set(new_handle, (arbitrary_info_t)info); return(new_handle);}/* * hwgraph_path_add - Create a directory node with the given path starting * from the given fromv. */inthwgraph_path_add(vertex_hdl_t fromv, char *path, vertex_hdl_t *new_de){ unsigned int namelen = strlen(path); int rv; /* * We need to handle the case when fromv is NULL .. * in this case we need to create the path from the * hwgraph root! */ if (fromv == NULL) fromv = hwgraph_root; /* * check the entry doesn't already exist, if it does * then we simply want new_de to point to it (otherwise * we'll overwrite the existing labelcl_info struct) */ rv = hwgraph_edge_get(fromv, path, new_de); if (rv) { /* couldn't find entry so we create it */ *new_de = hwgraph_mk_dir(fromv, path, namelen, NULL); if (new_de == NULL) return(-1); else return(0); } else return(0);}/* * hwgraph_register - Creates a special device file. * */vertex_hdl_thwgraph_register(vertex_hdl_t de, const char *name, unsigned int namelen, unsigned int flags, unsigned int major, unsigned int minor, umode_t mode, uid_t uid, gid_t gid, struct file_operations *fops, void *info){ vertex_hdl_t new_handle = NULL; /* * Create an entry. */ new_handle = hwgfs_register(de, name, flags, major, minor, mode, fops, info); return(new_handle);}/* * hwgraph_mk_symlink - Create a symbolic link. */inthwgraph_mk_symlink(vertex_hdl_t de, const char *name, unsigned int namelen, unsigned int flags, const char *link, unsigned int linklen, vertex_hdl_t *handle, void *info){ void *labelcl_info = NULL; int status = 0; vertex_hdl_t new_handle = NULL; /* * Create the labelcl info structure for hwgraph compatiblity support. */ labelcl_info = labelcl_info_create(); if (!labelcl_info) return(-1); /* * Create a symbolic link. */ status = hwgfs_mk_symlink(de, name, flags, link, &new_handle, labelcl_info); if ( (!new_handle) || (!status) ){ labelcl_info_destroy((labelcl_info_t *)labelcl_info); return(-1); } /* * If the caller provides a private data pointer, save it in the * labelcl info structure(fastinfo). This can be retrieved via * hwgraph_fastinfo_get() */ if (info)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -