blob: 777fc93a934691037dc758090061021bc51ef636 [file] [log] [blame]
Todd Poynorb3f588f2012-05-22 15:59:01 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <dumpstate.h>
18
19void dumpstate_board()
20{
Sasha Levitskiy0bc70382012-07-20 15:39:06 -070021 dump_file("board revision", "/sys/devices/soc0/board_rev");
22 dump_file("soc family", "/sys/devices/soc0/family");
23 dump_file("soc revision", "/sys/devices/soc0/revision");
24 dump_file("soc type", "/sys/devices/soc0/machine");
25 dump_file("soc die_id", "/sys/devices/soc0/soc_id");
26 dump_file("mmc0 name", "/sys/devices/platform/dw_mmc.0/mmc_host/mmc0/mmc0:0001/name");
27 dump_file("mmc0 cid", "/sys/devices/platform/dw_mmc.0/mmc_host/mmc0/mmc0:0001/cid");
28 dump_file("mmc0 csd", "/sys/devices/platform/dw_mmc.0/mmc_host/mmc0/mmc0:0001/csd");
29 dump_file("mmc0 ext_csd", "/d/mmc0/mmc0:0001/ext_csd");
Sasha Levitskiyffd48632012-07-30 16:14:23 -070030 dump_file("wlan", "/sys/module/bcmdhd/parameters/info_string");
Sasha Levitskiy0bc70382012-07-20 15:39:06 -070031 dump_file("touchscreen name", "/sys/class/input/input0/name");
Todd Poynora5a28bb2012-08-01 11:31:42 -070032 dump_file("android power", "/d/android-power");
Todd Poynorb3f588f2012-05-22 15:59:01 -070033 dump_file("manta power", "/d/manta-power");
Todd Poynor3fe34052012-07-10 09:31:59 -070034 dump_file("smb347 charger regs", "/d/smb347-regs");
Todd Poynorcbd09aa2012-08-18 12:26:21 -070035 dump_file("ds2784 fuel gauge regs", "/d/ds2784");
Todd Poynorfbeb4f52012-08-23 12:57:15 -070036 dump_file("bus traffic shaper", "/d/bts_dev_status");
Greg Hackmann9512dfb2012-08-28 09:57:19 -070037 dump_file("display controller", "/d/s3c-fb");
Todd Poynorb3f588f2012-05-22 15:59:01 -070038};