Blame view

kernel/linux-imx6_3.14.28/arch/m68k/emu/natfeat.c 1.87 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  /*
   * natfeat.c - ARAnyM hardware support via Native Features (natfeats)
   *
   * Copyright (c) 2005 Petr Stehlik of ARAnyM dev team
   *
   * Reworked for Linux by Roman Zippel <zippel@linux-m68k.org>
   *
   * This software may be used and distributed according to the terms of
   * the GNU General Public License (GPL), incorporated herein by reference.
   */
  
  #include <linux/init.h>
  #include <linux/types.h>
  #include <linux/console.h>
  #include <linux/string.h>
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/io.h>
  #include <asm/machdep.h>
  #include <asm/natfeat.h>
  
  extern long nf_get_id_phys(unsigned long feature_name);
  
  asm("
  "
  "	.global nf_get_id_phys,nf_call
  "
  "nf_get_id_phys:
  "
  "	.short	0x7300
  "
  "	rts
  "
  "nf_call:
  "
  "	.short	0x7301
  "
  "	rts
  "
  "1:	moveq.l	#0,%d0
  "
  "	rts
  "
  "	.section __ex_table,\"a\"
  "
  "	.long	nf_get_id_phys,1b
  "
  "	.long	nf_call,1b
  "
  "	.previous");
  EXPORT_SYMBOL_GPL(nf_call);
  
  long nf_get_id(const char *feature_name)
  {
  	/* feature_name may be in vmalloc()ed memory, so make a copy */
  	char name_copy[32];
  	size_t n;
  
  	n = strlcpy(name_copy, feature_name, sizeof(name_copy));
  	if (n >= sizeof(name_copy))
  		return 0;
  
  	return nf_get_id_phys(virt_to_phys(name_copy));
  }
  EXPORT_SYMBOL_GPL(nf_get_id);
  
  void nfprint(const char *fmt, ...)
  {
  	static char buf[256];
  	va_list ap;
  	int n;
  
  	va_start(ap, fmt);
  	n = vsnprintf(buf, 256, fmt, ap);
  	nf_call(nf_get_id("NF_STDERR"), virt_to_phys(buf));
  	va_end(ap);
  }
  
  static void nf_poweroff(void)
  {
  	long id = nf_get_id("NF_SHUTDOWN");
  
  	if (id)
  		nf_call(id);
  }
  
  void __init nf_init(void)
  {
  	unsigned long id, version;
  	char buf[256];
  
  	id = nf_get_id("NF_VERSION");
  	if (!id)
  		return;
  	version = nf_call(id);
  
  	id = nf_get_id("NF_NAME");
  	if (!id)
  		return;
  	nf_call(id, virt_to_phys(buf), 256);
  	buf[255] = 0;
  
  	pr_info("NatFeats found (%s, %lu.%lu)
  ", buf, version >> 16,
  		version & 0xffff);
  
  	mach_power_off = nf_poweroff;
  }