// SPDX-License-Identifier: GPL-2.0 /* drivers/nubus/proc.c: Proc FS interface for NuBus. By David Huggins-Daines Much code and many ideas from drivers/pci/proc.c: Copyright (c) 1997, 1998 Martin Mares This is initially based on the Zorro and PCI interfaces. However, it works somewhat differently. The intent is to provide a structure in /proc analogous to the structure of the NuBus ROM resources. Therefore each board function gets a directory, which may in turn contain subdirectories. Each slot resource is a file. Unrecognized resources are empty files, since every resource ID requires a special case (e.g. if the resource ID implies a directory or block, then its value has to be interpreted as a slot ROM pointer etc.). */ #include #include #include #include #include #include #include #include #include #include /* * /proc/bus/nubus/devices stuff */ static int nubus_devices_proc_show(struct seq_file *m, void *v) { struct nubus_rsrc *fres; for_each_func_rsrc(fres) seq_printf(m, "%x\t%04x %04x %04x %04x\t%08lx\n", fres->board->slot, fres->category, fres->type, fres->dr_sw, fres->dr_hw, fres->board->slot_addr); return 0; } static int nubus_devices_proc_open(struct inode *inode, struct file *file) { return single_open(file, nubus_devices_proc_show, NULL); } static const struct file_operations nubus_devices_proc_fops = { .open = nubus_devices_proc_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; static struct proc_dir_entry *proc_bus_nubus_dir; /* * /proc/bus/nubus/x/ stuff */ struct proc_dir_entry *nubus_proc_add_board(struct nubus_board *board) { char name[2]; if (!proc_bus_nubus_dir) return NULL; snprintf(name, sizeof(name), "%x", board->slot); return proc_mkdir(name, proc_bus_nubus_dir); } /* The PDE private data for any directory under /proc/bus/nubus/x/ * is the bytelanes value for the board in slot x. */ struct proc_dir_entry *nubus_proc_add_rsrc_dir(struct proc_dir_entry *procdir, const struct nubus_dirent *ent, struct nubus_board *board) { char name[9]; int lanes = board->lanes; if (!procdir) return NULL; snprintf(name, sizeof(name), "%x", ent->type); return proc_mkdir_data(name, 0555, procdir, (void *)lanes); } /* The PDE private data for a file under /proc/bus/nubus/x/ is a pointer to * an instance of the following structure, which gives the location and size * of the resource data in the slot ROM. For slot resources which hold only a * small integer, this integer value is stored directly and size is set to 0. * A NULL private data pointer indicates an unrecognized resource. */ struct nubus_proc_pde_data { unsigned char *res_ptr; unsigned int res_size; }; static struct nubus_proc_pde_data * nubus_proc_alloc_pde_data(unsigned char *ptr, unsigned int size) { struct nubus_proc_pde_data *pde_data; pde_data = kmalloc(sizeof(*pde_data), GFP_KERNEL); if (!pde_data) return NULL; pde_data->res_ptr = ptr; pde_data->res_size = size; return pde_data; } static int nubus_proc_rsrc_show(struct seq_file *m, void *v) { struct inode *inode = m->private; struct nubus_proc_pde_data *pde_data; pde_data = PDE_DATA(inode); if (!pde_data) return 0; if (pde_data->res_size > m->size) return -EFBIG; if (pde_data->res_size) { int lanes = (int)proc_get_parent_data(inode); struct nubus_dirent ent; if (!lanes) return 0; ent.mask = lanes; ent.base = pde_data->res_ptr; ent.data = 0; nubus_seq_write_rsrc_mem(m, &ent, pde_data->res_size); } else { unsigned int data = (unsigned int)pde_data->res_ptr; seq_putc(m, data >> 16); seq_putc(m, data >> 8); seq_putc(m, data >> 0); } return 0; } static int nubus_proc_rsrc_open(struct inode *inode, struct file *file) { return single_open(file, nubus_proc_rsrc_show, inode); } static const struct file_operations nubus_proc_rsrc_fops = { .open = nubus_proc_rsrc_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; void nubus_proc_add_rsrc_mem(struct proc_dir_entry *procdir, const struct nubus_dirent *ent, unsigned int size) { char name[9]; struct nubus_proc_pde_data *pde_data; if (!procdir) return; snprintf(name, sizeof(name), "%x", ent->type); if (size) pde_data = nubus_proc_alloc_pde_data(nubus_dirptr(ent), size); else pde_data = NULL; proc_create_data(name, S_IFREG | 0444, procdir, &nubus_proc_rsrc_fops, pde_data); } void nubus_proc_add_rsrc(struct proc_dir_entry *procdir, const struct nubus_dirent *ent) { char name[9]; unsigned char *data = (unsigned char *)ent->data; if (!procdir) return; snprintf(name, sizeof(name), "%x", ent->type); proc_create_data(name, S_IFREG | 0444, procdir, &nubus_proc_rsrc_fops, nubus_proc_alloc_pde_data(data, 0)); } /* * /proc/nubus stuff */ static int nubus_proc_show(struct seq_file *m, void *v) { const struct nubus_board *board = v; /* Display header on line 1 */ if (v == SEQ_START_TOKEN) seq_puts(m, "Nubus devices found:\n"); else seq_printf(m, "Slot %X: %s\n", board->slot, board->name); return 0; } static void *nubus_proc_start(struct seq_file *m, loff_t *_pos) { struct nubus_board *board; unsigned pos; if (*_pos > LONG_MAX) return NULL; pos = *_pos; if (pos == 0) return SEQ_START_TOKEN; for (board = nubus_boards; board; board = board->next) if (--pos == 0) break; return board; } static void *nubus_proc_next(struct seq_file *p, void *v, loff_t *_pos) { /* Walk the list of NuBus boards */ struct nubus_board *board = v; ++*_pos; if (v == SEQ_START_TOKEN) board = nubus_boards; else if (board) board = board->next; return board; } static void nubus_proc_stop(struct seq_file *p, void *v) { } static const struct seq_operations nubus_proc_seqops = { .start = nubus_proc_start, .next = nubus_proc_next, .stop = nubus_proc_stop, .show = nubus_proc_show, }; static int nubus_proc_open(struct inode *inode, struct file *file) { return seq_open(file, &nubus_proc_seqops); } static const struct file_operations nubus_proc_fops = { .open = nubus_proc_open, .read = seq_read, .llseek = seq_lseek, .release = seq_release, }; void __init nubus_proc_init(void) { proc_create("nubus", 0, NULL, &nubus_proc_fops); proc_bus_nubus_dir = proc_mkdir("bus/nubus", NULL); if (!proc_bus_nubus_dir) return; proc_create("devices", 0, proc_bus_nubus_dir, &nubus_devices_proc_fops); }