⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lpar.c

📁 linux内核源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * pSeries_lpar.c * Copyright (C) 2001 Todd Inglett, IBM Corporation * * pSeries LPAR support. *  * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. *  * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. *  * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */#undef DEBUG_LOW#include <linux/kernel.h>#include <linux/dma-mapping.h>#include <linux/console.h>#include <asm/processor.h>#include <asm/mmu.h>#include <asm/page.h>#include <asm/pgtable.h>#include <asm/machdep.h>#include <asm/abs_addr.h>#include <asm/mmu_context.h>#include <asm/iommu.h>#include <asm/tlbflush.h>#include <asm/tlb.h>#include <asm/prom.h>#include <asm/cputable.h>#include <asm/udbg.h>#include <asm/smp.h>#include "plpar_wrappers.h"#ifdef DEBUG_LOW#define DBG_LOW(fmt...) do { udbg_printf(fmt); } while(0)#else#define DBG_LOW(fmt...) do { } while(0)#endif/* in hvCall.S */EXPORT_SYMBOL(plpar_hcall);EXPORT_SYMBOL(plpar_hcall9);EXPORT_SYMBOL(plpar_hcall_norets);extern void pSeries_find_serial_port(void);int vtermno;	/* virtual terminal# for udbg  */#define __ALIGNED__ __attribute__((__aligned__(sizeof(long))))static void udbg_hvsi_putc(char c){	/* packet's seqno isn't used anyways */	uint8_t packet[] __ALIGNED__ = { 0xff, 5, 0, 0, c };	int rc;	if (c == '\n')		udbg_hvsi_putc('\r');	do {		rc = plpar_put_term_char(vtermno, sizeof(packet), packet);	} while (rc == H_BUSY);}static long hvsi_udbg_buf_len;static uint8_t hvsi_udbg_buf[256];static int udbg_hvsi_getc_poll(void){	unsigned char ch;	int rc, i;	if (hvsi_udbg_buf_len == 0) {		rc = plpar_get_term_char(vtermno, &hvsi_udbg_buf_len, hvsi_udbg_buf);		if (rc != H_SUCCESS || hvsi_udbg_buf[0] != 0xff) {			/* bad read or non-data packet */			hvsi_udbg_buf_len = 0;		} else {			/* remove the packet header */			for (i = 4; i < hvsi_udbg_buf_len; i++)				hvsi_udbg_buf[i-4] = hvsi_udbg_buf[i];			hvsi_udbg_buf_len -= 4;		}	}	if (hvsi_udbg_buf_len <= 0 || hvsi_udbg_buf_len > 256) {		/* no data ready */		hvsi_udbg_buf_len = 0;		return -1;	}	ch = hvsi_udbg_buf[0];	/* shift remaining data down */	for (i = 1; i < hvsi_udbg_buf_len; i++) {		hvsi_udbg_buf[i-1] = hvsi_udbg_buf[i];	}	hvsi_udbg_buf_len--;	return ch;}static int udbg_hvsi_getc(void){	int ch;	for (;;) {		ch = udbg_hvsi_getc_poll();		if (ch == -1) {			/* This shouldn't be needed...but... */			volatile unsigned long delay;			for (delay=0; delay < 2000000; delay++)				;		} else {			return ch;		}	}}static void udbg_putcLP(char c){	char buf[16];	unsigned long rc;	if (c == '\n')		udbg_putcLP('\r');	buf[0] = c;	do {		rc = plpar_put_term_char(vtermno, 1, buf);	} while(rc == H_BUSY);}/* Buffered chars getc */static long inbuflen;static long inbuf[2];	/* must be 2 longs */static int udbg_getc_pollLP(void){	/* The interface is tricky because it may return up to 16 chars.	 * We save them statically for future calls to udbg_getc().	 */	char ch, *buf = (char *)inbuf;	int i;	long rc;	if (inbuflen == 0) {		/* get some more chars. */		inbuflen = 0;		rc = plpar_get_term_char(vtermno, &inbuflen, buf);		if (rc != H_SUCCESS)			inbuflen = 0;	/* otherwise inbuflen is garbage */	}	if (inbuflen <= 0 || inbuflen > 16) {		/* Catch error case as well as other oddities (corruption) */		inbuflen = 0;		return -1;	}	ch = buf[0];	for (i = 1; i < inbuflen; i++)	/* shuffle them down. */		buf[i-1] = buf[i];	inbuflen--;	return ch;}static int udbg_getcLP(void){	int ch;	for (;;) {		ch = udbg_getc_pollLP();		if (ch == -1) {			/* This shouldn't be needed...but... */			volatile unsigned long delay;			for (delay=0; delay < 2000000; delay++)				;		} else {			return ch;		}	}}/* call this from early_init() for a working debug console on * vterm capable LPAR machines */void __init udbg_init_debug_lpar(void){	vtermno = 0;	udbg_putc = udbg_putcLP;	udbg_getc = udbg_getcLP;	udbg_getc_poll = udbg_getc_pollLP;}/* returns 0 if couldn't find or use /chosen/stdout as console */void __init find_udbg_vterm(void){	struct device_node *stdout_node;	const u32 *termno;	const char *name;	int add_console;	/* find the boot console from /chosen/stdout */	if (!of_chosen)		return;	name = of_get_property(of_chosen, "linux,stdout-path", NULL);	if (name == NULL)		return;	stdout_node = of_find_node_by_path(name);	if (!stdout_node)		return;	name = of_get_property(stdout_node, "name", NULL);	if (!name) {		printk(KERN_WARNING "stdout node missing 'name' property!\n");		goto out;	}	/* The user has requested a console so this is already set up. */	add_console = !strstr(cmd_line, "console=");	/* Check if it's a virtual terminal */	if (strncmp(name, "vty", 3) != 0)		goto out;	termno = of_get_property(stdout_node, "reg", NULL);	if (termno == NULL)		goto out;	vtermno = termno[0];	if (of_device_is_compatible(stdout_node, "hvterm1")) {		udbg_putc = udbg_putcLP;		udbg_getc = udbg_getcLP;		udbg_getc_poll = udbg_getc_pollLP;		if (add_console)			add_preferred_console("hvc", termno[0] & 0xff, NULL);	} else if (of_device_is_compatible(stdout_node, "hvterm-protocol")) {		vtermno = termno[0];		udbg_putc = udbg_hvsi_putc;		udbg_getc = udbg_hvsi_getc;		udbg_getc_poll = udbg_hvsi_getc_poll;		if (add_console)			add_preferred_console("hvsi", termno[0] & 0xff, NULL);	}out:	of_node_put(stdout_node);}void vpa_init(int cpu){	int hwcpu = get_hard_smp_processor_id(cpu);	unsigned long addr;	long ret;	if (cpu_has_feature(CPU_FTR_ALTIVEC))		lppaca[cpu].vmxregs_in_use = 1;	addr = __pa(&lppaca[cpu]);	ret = register_vpa(hwcpu, addr);	if (ret) {		printk(KERN_ERR "WARNING: vpa_init: VPA registration for "				"cpu %d (hw %d) of area %lx returns %ld\n",				cpu, hwcpu, addr, ret);		return;	}	/*	 * PAPR says this feature is SLB-Buffer but firmware never	 * reports that.  All SPLPAR support SLB shadow buffer.	 */	addr = __pa(&slb_shadow[cpu]);	if (firmware_has_feature(FW_FEATURE_SPLPAR)) {		ret = register_slb_shadow(hwcpu, addr);		if (ret)			printk(KERN_ERR			       "WARNING: vpa_init: SLB shadow buffer "			       "registration for cpu %d (hw %d) of area %lx "			       "returns %ld\n", cpu, hwcpu, addr, ret);	}}static long pSeries_lpar_hpte_insert(unsigned long hpte_group, 			      unsigned long va, unsigned long pa, 			      unsigned long rflags, unsigned long vflags,			      int psize, int ssize){	unsigned long lpar_rc;	unsigned long flags;	unsigned long slot;	unsigned long hpte_v, hpte_r;	if (!(vflags & HPTE_V_BOLTED))		DBG_LOW("hpte_insert(group=%lx, va=%016lx, pa=%016lx, "			"rflags=%lx, vflags=%lx, psize=%d)\n",		hpte_group, va, pa, rflags, vflags, psize);	hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID;	hpte_r = hpte_encode_r(pa, psize) | rflags;	if (!(vflags & HPTE_V_BOLTED))

⌨️ 快捷键说明

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