~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/tile/kernel/proc.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <asm/processor.h>
28
28
#include <asm/sections.h>
29
29
#include <asm/homecache.h>
 
30
#include <asm/hardwall.h>
30
31
#include <arch/chip.h>
31
32
 
32
33
 
88
89
        .stop   = c_stop,
89
90
        .show   = show_cpuinfo,
90
91
};
 
92
 
 
93
/*
 
94
 * Support /proc/tile directory
 
95
 */
 
96
 
 
97
static int __init proc_tile_init(void)
 
98
{
 
99
        struct proc_dir_entry *root = proc_mkdir("tile", NULL);
 
100
        if (root == NULL)
 
101
                return 0;
 
102
 
 
103
        proc_tile_hardwall_init(root);
 
104
 
 
105
        return 0;
 
106
}
 
107
 
 
108
arch_initcall(proc_tile_init);
 
109
 
 
110
/*
 
111
 * Support /proc/sys/tile directory
 
112
 */
 
113
 
 
114
#ifndef __tilegx__  /* FIXME: GX: no support for unaligned access yet */
 
115
static ctl_table unaligned_subtable[] = {
 
116
        {
 
117
                .procname       = "enabled",
 
118
                .data           = &unaligned_fixup,
 
119
                .maxlen         = sizeof(int),
 
120
                .mode           = 0644,
 
121
                .proc_handler   = &proc_dointvec
 
122
        },
 
123
        {
 
124
                .procname       = "printk",
 
125
                .data           = &unaligned_printk,
 
126
                .maxlen         = sizeof(int),
 
127
                .mode           = 0644,
 
128
                .proc_handler   = &proc_dointvec
 
129
        },
 
130
        {
 
131
                .procname       = "count",
 
132
                .data           = &unaligned_fixup_count,
 
133
                .maxlen         = sizeof(int),
 
134
                .mode           = 0644,
 
135
                .proc_handler   = &proc_dointvec
 
136
        },
 
137
        {}
 
138
};
 
139
 
 
140
static ctl_table unaligned_table[] = {
 
141
        {
 
142
                .procname       = "unaligned_fixup",
 
143
                .mode           = 0555,
 
144
                .child          = unaligned_subtable
 
145
        },
 
146
        {}
 
147
};
 
148
#endif
 
149
 
 
150
static struct ctl_path tile_path[] = {
 
151
        { .procname = "tile" },
 
152
        { }
 
153
};
 
154
 
 
155
static int __init proc_sys_tile_init(void)
 
156
{
 
157
#ifndef __tilegx__  /* FIXME: GX: no support for unaligned access yet */
 
158
        register_sysctl_paths(tile_path, unaligned_table);
 
159
#endif
 
160
        return 0;
 
161
}
 
162
 
 
163
arch_initcall(proc_sys_tile_init);