prom.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) Paul Mackerras 1997.
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  */
  9. #include <stdarg.h>
  10. #include <linux/types.h>
  11. #include <linux/string.h>
  12. #include <linux/ctype.h>
  13. #include <asm/div64.h>
  14. int (*prom)(void *);
  15. void *chosen_handle;
  16. void *stdin;
  17. void *stdout;
  18. void *stderr;
  19. void exit(void);
  20. void *finddevice(const char *name);
  21. int getprop(void *phandle, const char *name, void *buf, int buflen);
  22. void chrpboot(int a1, int a2, void *prom); /* in main.c */
  23. void printk(char *fmt, ...);
  24. int
  25. write(void *handle, void *ptr, int nb)
  26. {
  27. struct prom_args {
  28. char *service;
  29. int nargs;
  30. int nret;
  31. void *ihandle;
  32. void *addr;
  33. int len;
  34. int actual;
  35. } args;
  36. args.service = "write";
  37. args.nargs = 3;
  38. args.nret = 1;
  39. args.ihandle = handle;
  40. args.addr = ptr;
  41. args.len = nb;
  42. args.actual = -1;
  43. (*prom)(&args);
  44. return args.actual;
  45. }
  46. int
  47. read(void *handle, void *ptr, int nb)
  48. {
  49. struct prom_args {
  50. char *service;
  51. int nargs;
  52. int nret;
  53. void *ihandle;
  54. void *addr;
  55. int len;
  56. int actual;
  57. } args;
  58. args.service = "read";
  59. args.nargs = 3;
  60. args.nret = 1;
  61. args.ihandle = handle;
  62. args.addr = ptr;
  63. args.len = nb;
  64. args.actual = -1;
  65. (*prom)(&args);
  66. return args.actual;
  67. }
  68. void
  69. exit()
  70. {
  71. struct prom_args {
  72. char *service;
  73. } args;
  74. for (;;) {
  75. args.service = "exit";
  76. (*prom)(&args);
  77. }
  78. }
  79. void
  80. pause(void)
  81. {
  82. struct prom_args {
  83. char *service;
  84. } args;
  85. args.service = "enter";
  86. (*prom)(&args);
  87. }
  88. void *
  89. finddevice(const char *name)
  90. {
  91. struct prom_args {
  92. char *service;
  93. int nargs;
  94. int nret;
  95. const char *devspec;
  96. void *phandle;
  97. } args;
  98. args.service = "finddevice";
  99. args.nargs = 1;
  100. args.nret = 1;
  101. args.devspec = name;
  102. args.phandle = (void *) -1;
  103. (*prom)(&args);
  104. return args.phandle;
  105. }
  106. void *
  107. claim(unsigned long virt, unsigned long size, unsigned long align)
  108. {
  109. struct prom_args {
  110. char *service;
  111. int nargs;
  112. int nret;
  113. unsigned int virt;
  114. unsigned int size;
  115. unsigned int align;
  116. void *ret;
  117. } args;
  118. args.service = "claim";
  119. args.nargs = 3;
  120. args.nret = 1;
  121. args.virt = virt;
  122. args.size = size;
  123. args.align = align;
  124. (*prom)(&args);
  125. return args.ret;
  126. }
  127. int
  128. getprop(void *phandle, const char *name, void *buf, int buflen)
  129. {
  130. struct prom_args {
  131. char *service;
  132. int nargs;
  133. int nret;
  134. void *phandle;
  135. const char *name;
  136. void *buf;
  137. int buflen;
  138. int size;
  139. } args;
  140. args.service = "getprop";
  141. args.nargs = 4;
  142. args.nret = 1;
  143. args.phandle = phandle;
  144. args.name = name;
  145. args.buf = buf;
  146. args.buflen = buflen;
  147. args.size = -1;
  148. (*prom)(&args);
  149. return args.size;
  150. }
  151. int
  152. putc(int c, void *f)
  153. {
  154. char ch = c;
  155. if (c == 'n')
  156. putc('r', f);
  157. return write(f, &ch, 1) == 1? c: -1;
  158. }
  159. int
  160. putchar(int c)
  161. {
  162. return putc(c, stdout);
  163. }
  164. int
  165. fputs(char *str, void *f)
  166. {
  167. int n = strlen(str);
  168. return write(f, str, n) == n? 0: -1;
  169. }
  170. int
  171. readchar(void)
  172. {
  173. char ch;
  174. for (;;) {
  175. switch (read(stdin, &ch, 1)) {
  176. case 1:
  177. return ch;
  178. case -1:
  179. printk("read(stdin) returned -1rn");
  180. return -1;
  181. }
  182. }
  183. }
  184. static char line[256];
  185. static char *lineptr;
  186. static int lineleft;
  187. int
  188. getchar(void)
  189. {
  190. int c;
  191. if (lineleft == 0) {
  192. lineptr = line;
  193. for (;;) {
  194. c = readchar();
  195. if (c == -1 || c == 4)
  196. break;
  197. if (c == 'r' || c == 'n') {
  198. *lineptr++ = 'n';
  199. putchar('n');
  200. break;
  201. }
  202. switch (c) {
  203. case 0177:
  204. case 'b':
  205. if (lineptr > line) {
  206. putchar('b');
  207. putchar(' ');
  208. putchar('b');
  209. --lineptr;
  210. }
  211. break;
  212. case 'U' & 0x1F:
  213. while (lineptr > line) {
  214. putchar('b');
  215. putchar(' ');
  216. putchar('b');
  217. --lineptr;
  218. }
  219. break;
  220. default:
  221. if (lineptr >= &line[sizeof(line) - 1])
  222. putchar('a');
  223. else {
  224. putchar(c);
  225. *lineptr++ = c;
  226. }
  227. }
  228. }
  229. lineleft = lineptr - line;
  230. lineptr = line;
  231. }
  232. if (lineleft == 0)
  233. return -1;
  234. --lineleft;
  235. return *lineptr++;
  236. }
  237. /* String functions lifted from lib/vsprintf.c and lib/ctype.c */
  238. unsigned char _ctype[] = {
  239. _C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */
  240. _C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C, /* 8-15 */
  241. _C,_C,_C,_C,_C,_C,_C,_C, /* 16-23 */
  242. _C,_C,_C,_C,_C,_C,_C,_C, /* 24-31 */
  243. _S|_SP,_P,_P,_P,_P,_P,_P,_P, /* 32-39 */
  244. _P,_P,_P,_P,_P,_P,_P,_P, /* 40-47 */
  245. _D,_D,_D,_D,_D,_D,_D,_D, /* 48-55 */
  246. _D,_D,_P,_P,_P,_P,_P,_P, /* 56-63 */
  247. _P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U, /* 64-71 */
  248. _U,_U,_U,_U,_U,_U,_U,_U, /* 72-79 */
  249. _U,_U,_U,_U,_U,_U,_U,_U, /* 80-87 */
  250. _U,_U,_U,_P,_P,_P,_P,_P, /* 88-95 */
  251. _P,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L, /* 96-103 */
  252. _L,_L,_L,_L,_L,_L,_L,_L, /* 104-111 */
  253. _L,_L,_L,_L,_L,_L,_L,_L, /* 112-119 */
  254. _L,_L,_L,_P,_P,_P,_P,_C, /* 120-127 */
  255. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 128-143 */
  256. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 144-159 */
  257. _S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,   /* 160-175 */
  258. _P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,       /* 176-191 */
  259. _U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,       /* 192-207 */
  260. _U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L,       /* 208-223 */
  261. _L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,       /* 224-239 */
  262. _L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L};      /* 240-255 */
  263. size_t strnlen(const char * s, size_t count)
  264. {
  265. const char *sc;
  266. for (sc = s; count-- && *sc != ''; ++sc)
  267. /* nothing */;
  268. return sc - s;
  269. }
  270. unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base)
  271. {
  272. unsigned long result = 0,value;
  273. if (!base) {
  274. base = 10;
  275. if (*cp == '0') {
  276. base = 8;
  277. cp++;
  278. if ((*cp == 'x') && isxdigit(cp[1])) {
  279. cp++;
  280. base = 16;
  281. }
  282. }
  283. }
  284. while (isxdigit(*cp) &&
  285.        (value = isdigit(*cp) ? *cp-'0' : toupper(*cp)-'A'+10) < base) {
  286. result = result*base + value;
  287. cp++;
  288. }
  289. if (endp)
  290. *endp = (char *)cp;
  291. return result;
  292. }
  293. long simple_strtol(const char *cp,char **endp,unsigned int base)
  294. {
  295. if(*cp=='-')
  296. return -simple_strtoul(cp+1,endp,base);
  297. return simple_strtoul(cp,endp,base);
  298. }
  299. static int skip_atoi(const char **s)
  300. {
  301. int i=0;
  302. while (isdigit(**s))
  303. i = i*10 + *((*s)++) - '0';
  304. return i;
  305. }
  306. #define ZEROPAD 1 /* pad with zero */
  307. #define SIGN 2 /* unsigned/signed long */
  308. #define PLUS 4 /* show plus */
  309. #define SPACE 8 /* space if plus */
  310. #define LEFT 16 /* left justified */
  311. #define SPECIAL 32 /* 0x */
  312. #define LARGE 64 /* use 'ABCDEF' instead of 'abcdef' */
  313. static char * number(char * str, long long num, int base, int size, int precision, int type)
  314. {
  315. char c,sign,tmp[66];
  316. const char *digits="0123456789abcdefghijklmnopqrstuvwxyz";
  317. int i;
  318. if (type & LARGE)
  319. digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  320. if (type & LEFT)
  321. type &= ~ZEROPAD;
  322. if (base < 2 || base > 36)
  323. return 0;
  324. c = (type & ZEROPAD) ? '0' : ' ';
  325. sign = 0;
  326. if (type & SIGN) {
  327. if (num < 0) {
  328. sign = '-';
  329. num = -num;
  330. size--;
  331. } else if (type & PLUS) {
  332. sign = '+';
  333. size--;
  334. } else if (type & SPACE) {
  335. sign = ' ';
  336. size--;
  337. }
  338. }
  339. if (type & SPECIAL) {
  340. if (base == 16)
  341. size -= 2;
  342. else if (base == 8)
  343. size--;
  344. }
  345. i = 0;
  346. if (num == 0)
  347. tmp[i++]='0';
  348. else while (num != 0)
  349. tmp[i++] = digits[do_div(num,base)];
  350. if (i > precision)
  351. precision = i;
  352. size -= precision;
  353. if (!(type&(ZEROPAD+LEFT)))
  354. while(size-->0)
  355. *str++ = ' ';
  356. if (sign)
  357. *str++ = sign;
  358. if (type & SPECIAL) {
  359. if (base==8)
  360. *str++ = '0';
  361. else if (base==16) {
  362. *str++ = '0';
  363. *str++ = digits[33];
  364. }
  365. }
  366. if (!(type & LEFT))
  367. while (size-- > 0)
  368. *str++ = c;
  369. while (i < precision--)
  370. *str++ = '0';
  371. while (i-- > 0)
  372. *str++ = tmp[i];
  373. while (size-- > 0)
  374. *str++ = ' ';
  375. return str;
  376. }
  377. /* Forward decl. needed for IP address printing stuff... */
  378. int sprintf(char * buf, const char *fmt, ...);
  379. int vsprintf(char *buf, const char *fmt, va_list args)
  380. {
  381. int len;
  382. unsigned long long num;
  383. int i, base;
  384. char * str;
  385. const char *s;
  386. int flags; /* flags to number() */
  387. int field_width; /* width of output field */
  388. int precision; /* min. # of digits for integers; max
  389.    number of chars for from string */
  390. int qualifier; /* 'h', 'l', or 'L' for integer fields */
  391.                         /* 'z' support added 23/7/1999 S.H.    */
  392. /* 'z' changed to 'Z' --davidm 1/25/99 */
  393. for (str=buf ; *fmt ; ++fmt) {
  394. if (*fmt != '%') {
  395. *str++ = *fmt;
  396. continue;
  397. }
  398. /* process flags */
  399. flags = 0;
  400. repeat:
  401. ++fmt; /* this also skips first '%' */
  402. switch (*fmt) {
  403. case '-': flags |= LEFT; goto repeat;
  404. case '+': flags |= PLUS; goto repeat;
  405. case ' ': flags |= SPACE; goto repeat;
  406. case '#': flags |= SPECIAL; goto repeat;
  407. case '0': flags |= ZEROPAD; goto repeat;
  408. }
  409. /* get field width */
  410. field_width = -1;
  411. if (isdigit(*fmt))
  412. field_width = skip_atoi(&fmt);
  413. else if (*fmt == '*') {
  414. ++fmt;
  415. /* it's the next argument */
  416. field_width = va_arg(args, int);
  417. if (field_width < 0) {
  418. field_width = -field_width;
  419. flags |= LEFT;
  420. }
  421. }
  422. /* get the precision */
  423. precision = -1;
  424. if (*fmt == '.') {
  425. ++fmt;
  426. if (isdigit(*fmt))
  427. precision = skip_atoi(&fmt);
  428. else if (*fmt == '*') {
  429. ++fmt;
  430. /* it's the next argument */
  431. precision = va_arg(args, int);
  432. }
  433. if (precision < 0)
  434. precision = 0;
  435. }
  436. /* get the conversion qualifier */
  437. qualifier = -1;
  438. if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' || *fmt =='Z') {
  439. qualifier = *fmt;
  440. ++fmt;
  441. }
  442. /* default base */
  443. base = 10;
  444. switch (*fmt) {
  445. case 'c':
  446. if (!(flags & LEFT))
  447. while (--field_width > 0)
  448. *str++ = ' ';
  449. *str++ = (unsigned char) va_arg(args, int);
  450. while (--field_width > 0)
  451. *str++ = ' ';
  452. continue;
  453. case 's':
  454. s = va_arg(args, char *);
  455. if (!s)
  456. s = "<NULL>";
  457. len = strnlen(s, precision);
  458. if (!(flags & LEFT))
  459. while (len < field_width--)
  460. *str++ = ' ';
  461. for (i = 0; i < len; ++i)
  462. *str++ = *s++;
  463. while (len < field_width--)
  464. *str++ = ' ';
  465. continue;
  466. case 'p':
  467. if (field_width == -1) {
  468. field_width = 2*sizeof(void *);
  469. flags |= ZEROPAD;
  470. }
  471. str = number(str,
  472. (unsigned long) va_arg(args, void *), 16,
  473. field_width, precision, flags);
  474. continue;
  475. case 'n':
  476. if (qualifier == 'l') {
  477. long * ip = va_arg(args, long *);
  478. *ip = (str - buf);
  479. } else if (qualifier == 'Z') {
  480. size_t * ip = va_arg(args, size_t *);
  481. *ip = (str - buf);
  482. } else {
  483. int * ip = va_arg(args, int *);
  484. *ip = (str - buf);
  485. }
  486. continue;
  487. case '%':
  488. *str++ = '%';
  489. continue;
  490. /* integer number formats - set up the flags and "break" */
  491. case 'o':
  492. base = 8;
  493. break;
  494. case 'X':
  495. flags |= LARGE;
  496. case 'x':
  497. base = 16;
  498. break;
  499. case 'd':
  500. case 'i':
  501. flags |= SIGN;
  502. case 'u':
  503. break;
  504. default:
  505. *str++ = '%';
  506. if (*fmt)
  507. *str++ = *fmt;
  508. else
  509. --fmt;
  510. continue;
  511. }
  512. if (qualifier == 'L')
  513. num = va_arg(args, long long);
  514. else if (qualifier == 'l') {
  515. num = va_arg(args, unsigned long);
  516. if (flags & SIGN)
  517. num = (signed long) num;
  518. } else if (qualifier == 'Z') {
  519. num = va_arg(args, size_t);
  520. } else if (qualifier == 'h') {
  521. num = (unsigned short) va_arg(args, int);
  522. if (flags & SIGN)
  523. num = (signed short) num;
  524. } else {
  525. num = va_arg(args, unsigned int);
  526. if (flags & SIGN)
  527. num = (signed int) num;
  528. }
  529. str = number(str, num, base, field_width, precision, flags);
  530. }
  531. *str = '';
  532. return str-buf;
  533. }
  534. int sprintf(char * buf, const char *fmt, ...)
  535. {
  536. va_list args;
  537. int i;
  538. va_start(args, fmt);
  539. i=vsprintf(buf,fmt,args);
  540. va_end(args);
  541. return i;
  542. }
  543. static char sprint_buf[1024];
  544. void
  545. printk(char *fmt, ...)
  546. {
  547. va_list args;
  548. int n;
  549. va_start(args, fmt);
  550. n = vsprintf(sprint_buf, fmt, args);
  551. va_end(args);
  552. write(stdout, sprint_buf, n);
  553. }
  554. int
  555. printf(char *fmt, ...)
  556. {
  557. va_list args;
  558. int n;
  559. va_start(args, fmt);
  560. n = vsprintf(sprint_buf, fmt, args);
  561. va_end(args);
  562. write(stdout, sprint_buf, n);
  563. return n;
  564. }