欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

prom.c

h内核
C
第 1 页 / 共 4 页
字号:
		size = dt_mem_next_cell(dt_root_size_cells, &reg);		if (size == 0)			continue;		DBG(" - %lx ,  %lx\n", base, size);		if (iommu_is_off) {			if (base >= 0x80000000ul)				continue;			if ((base + size) > 0x80000000ul)				size = 0x80000000ul - base;		}		lmb_add(base, size);	}	return 0;}static void __init early_reserve_mem(void){	u64 base, size;	u64 *reserve_map = (u64 *)(((unsigned long)initial_boot_params) +				   initial_boot_params->off_mem_rsvmap);	while (1) {		base = *(reserve_map++);		size = *(reserve_map++);		if (size == 0)			break;		DBG("reserving: %lx -> %lx\n", base, size);		lmb_reserve(base, size);	}#if 0	DBG("memory reserved, lmbs :\n");      	lmb_dump_all();#endif}void __init early_init_devtree(void *params){	DBG(" -> early_init_devtree()\n");	/* Setup flat device-tree pointer */	initial_boot_params = params;	/* By default, hash size is not set */	ppc64_pft_size = 0;	/* Retreive various informations from the /chosen node of the	 * device-tree, including the platform type, initrd location and	 * size, TCE reserve, and more ...	 */	scan_flat_dt(early_init_dt_scan_chosen, NULL);	/* Scan memory nodes and rebuild LMBs */	lmb_init();	scan_flat_dt(early_init_dt_scan_root, NULL);	scan_flat_dt(early_init_dt_scan_memory, NULL);	lmb_analyze();	systemcfg->physicalMemorySize = lmb_phys_mem_size();	lmb_reserve(0, __pa(klimit));	DBG("Phys. mem: %lx\n", systemcfg->physicalMemorySize);	/* Reserve LMB regions used by kernel, initrd, dt, etc... */	early_reserve_mem();	DBG("Scanning CPUs ...\n");	/* Retreive hash table size from flattened tree */	scan_flat_dt(early_init_dt_scan_cpus, NULL);	/* If hash size wasn't obtained above, we calculate it now based on	 * the total RAM size	 */	if (ppc64_pft_size == 0) {		unsigned long rnd_mem_size, pteg_count;		/* round mem_size up to next power of 2 */		rnd_mem_size = 1UL << __ilog2(systemcfg->physicalMemorySize);		if (rnd_mem_size < systemcfg->physicalMemorySize)			rnd_mem_size <<= 1;		/* # pages / 2 */		pteg_count = max(rnd_mem_size >> (12 + 1), 1UL << 11);		ppc64_pft_size = __ilog2(pteg_count << 7);	}	DBG("Hash pftSize: %x\n", (int)ppc64_pft_size);	DBG(" <- early_init_devtree()\n");}#undef printkintprom_n_addr_cells(struct device_node* np){	int* ip;	do {		if (np->parent)			np = np->parent;		ip = (int *) get_property(np, "#address-cells", NULL);		if (ip != NULL)			return *ip;	} while (np->parent);	/* No #address-cells property for the root node, default to 1 */	return 1;}intprom_n_size_cells(struct device_node* np){	int* ip;	do {		if (np->parent)			np = np->parent;		ip = (int *) get_property(np, "#size-cells", NULL);		if (ip != NULL)			return *ip;	} while (np->parent);	/* No #size-cells property for the root node, default to 1 */	return 1;}/** * Work out the sense (active-low level / active-high edge) * of each interrupt from the device tree. */void __init prom_get_irq_senses(unsigned char *senses, int off, int max){	struct device_node *np;	int i, j;	/* default to level-triggered */	memset(senses, 1, max - off);	for (np = allnodes; np != 0; np = np->allnext) {		for (j = 0; j < np->n_intrs; j++) {			i = np->intrs[j].line;			if (i >= off && i < max)				senses[i-off] = np->intrs[j].sense ?					IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE :					IRQ_SENSE_EDGE | IRQ_POLARITY_POSITIVE;		}	}}/** * Construct and return a list of the device_nodes with a given name. */struct device_node *find_devices(const char *name){	struct device_node *head, **prevp, *np;	prevp = &head;	for (np = allnodes; np != 0; np = np->allnext) {		if (np->name != 0 && strcasecmp(np->name, name) == 0) {			*prevp = np;			prevp = &np->next;		}	}	*prevp = NULL;	return head;}/** * Construct and return a list of the device_nodes with a given type. */struct device_node *find_type_devices(const char *type){	struct device_node *head, **prevp, *np;	prevp = &head;	for (np = allnodes; np != 0; np = np->allnext) {		if (np->type != 0 && strcasecmp(np->type, type) == 0) {			*prevp = np;			prevp = &np->next;		}	}	*prevp = NULL;	return head;}/** * Returns all nodes linked together */struct device_node *find_all_nodes(void){	struct device_node *head, **prevp, *np;	prevp = &head;	for (np = allnodes; np != 0; np = np->allnext) {		*prevp = np;		prevp = &np->next;	}	*prevp = NULL;	return head;}/** Checks if the given "compat" string matches one of the strings in * the device's "compatible" property */intdevice_is_compatible(struct device_node *device, const char *compat){	const char* cp;	int cplen, l;	cp = (char *) get_property(device, "compatible", &cplen);	if (cp == NULL)		return 0;	while (cplen > 0) {		if (strncasecmp(cp, compat, strlen(compat)) == 0)			return 1;		l = strlen(cp) + 1;		cp += l;		cplen -= l;	}	return 0;}/** * Indicates whether the root node has a given value in its * compatible property. */intmachine_is_compatible(const char *compat){	struct device_node *root;	int rc = 0;	root = of_find_node_by_path("/");	if (root) {		rc = device_is_compatible(root, compat);		of_node_put(root);	}	return rc;}/** * Construct and return a list of the device_nodes with a given type * and compatible property. */struct device_node *find_compatible_devices(const char *type, const char *compat){	struct device_node *head, **prevp, *np;	prevp = &head;	for (np = allnodes; np != 0; np = np->allnext) {		if (type != NULL		    && !(np->type != 0 && strcasecmp(np->type, type) == 0))			continue;		if (device_is_compatible(np, compat)) {			*prevp = np;			prevp = &np->next;		}	}	*prevp = NULL;	return head;}/** * Find the device_node with a given full_name. */struct device_node *find_path_device(const char *path){	struct device_node *np;	for (np = allnodes; np != 0; np = np->allnext)		if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0)			return np;	return NULL;}/******* * * New implementation of the OF "find" APIs, return a refcounted * object, call of_node_put() when done.  The device tree and list * are protected by a rw_lock. * * Note that property management will need some locking as well, * this isn't dealt with yet. * *******//** *	of_find_node_by_name - Find a node by its "name" property *	@from:	The node to start searching from or NULL, the node *		you pass will not be searched, only the next one *		will; typically, you pass what the previous call *		returned. of_node_put() will be called on it *	@name:	The name string to match against * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_node_by_name(struct device_node *from,	const char *name){	struct device_node *np;	read_lock(&devtree_lock);	np = from ? from->allnext : allnodes;	for (; np != 0; np = np->allnext)		if (np->name != 0 && strcasecmp(np->name, name) == 0		    && of_node_get(np))			break;	if (from)		of_node_put(from);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_node_by_name);/** *	of_find_node_by_type - Find a node by its "device_type" property *	@from:	The node to start searching from or NULL, the node *		you pass will not be searched, only the next one *		will; typically, you pass what the previous call *		returned. of_node_put() will be called on it *	@name:	The type string to match against * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_node_by_type(struct device_node *from,	const char *type){	struct device_node *np;	read_lock(&devtree_lock);	np = from ? from->allnext : allnodes;	for (; np != 0; np = np->allnext)		if (np->type != 0 && strcasecmp(np->type, type) == 0		    && of_node_get(np))			break;	if (from)		of_node_put(from);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_node_by_type);/** *	of_find_compatible_node - Find a node based on type and one of the *                                tokens in its "compatible" property *	@from:		The node to start searching from or NULL, the node *			you pass will not be searched, only the next one *			will; typically, you pass what the previous call *			returned. of_node_put() will be called on it *	@type:		The type string to match "device_type" or NULL to ignore *	@compatible:	The string to match to one of the tokens in the device *			"compatible" list. * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_compatible_node(struct device_node *from,	const char *type, const char *compatible){	struct device_node *np;	read_lock(&devtree_lock);	np = from ? from->allnext : allnodes;	for (; np != 0; np = np->allnext) {		if (type != NULL		    && !(np->type != 0 && strcasecmp(np->type, type) == 0))			continue;		if (device_is_compatible(np, compatible) && of_node_get(np))			break;	}	if (from)		of_node_put(from);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_compatible_node);/** *	of_find_node_by_path - Find a node matching a full OF path *	@path:	The full path to match * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_node_by_path(const char *path){	struct device_node *np = allnodes;	read_lock(&devtree_lock);	for (; np != 0; np = np->allnext)		if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0		    && of_node_get(np))			break;	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_node_by_path);/** *	of_find_node_by_phandle - Find a node given a phandle *	@handle:	phandle of the node to find * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_node_by_phandle(phandle handle){	struct device_node *np;	read_lock(&devtree_lock);	for (np = allnodes; np != 0; np = np->allnext)		if (np->linux_phandle == handle)			break;	if (np)		of_node_get(np);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_node_by_phandle);/** *	of_find_all_nodes - Get next node in global list *	@prev:	Previous node or NULL to start iteration *		of_node_put() will be called on it * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_find_all_nodes(struct device_node *prev){	struct device_node *np;	read_lock(&devtree_lock);	np = prev ? prev->allnext : allnodes;	for (; np != 0; np = np->allnext)		if (of_node_get(np))			break;	if (prev)		of_node_put(prev);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_find_all_nodes);/** *	of_get_parent - Get a node's parent if any *	@node:	Node to get parent * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_get_parent(const struct device_node *node){	struct device_node *np;	if (!node)		return NULL;	read_lock(&devtree_lock);	np = of_node_get(node->parent);	read_unlock(&devtree_lock);	return np;}EXPORT_SYMBOL(of_get_parent);/** *	of_get_next_child - Iterate a node childs *	@node:	parent node *	@prev:	previous child of the parent node, or NULL to get first * *	Returns a node pointer with refcount incremented, use *	of_node_put() on it when done. */struct device_node *of_get_next_child(const struct device_node *node,	struct device_node *prev){	struct device_node *next;	read_lock(&devtree_lock);	next = prev ? prev->sibling : node->child;	for (; next != 0; next = next->sibling)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -