Sony Vaio VPCEB39FJ

From Gentoo Wiki
Jump to:navigation Jump to:search


Hardware configuration

  • Intel(R) Core(TM) i5 CPU M 460 @ 2.53GHz
  • 4GB(2GB×2)RAM
  • 120GB SSD SATA (changed from HDD 500GB 5400rpm)
  • Intel HD Graphics
  • 15.5" display with 1366×768 resolution
  • LAN 10/100/1000BASE-T
  • Atheros Wireless Network Adapter IEEE802.11b/g/n
  • Bluetooth
  • USB2.0×3,eSATA/USB×1,eSATA×1,D-sub15pin,HDMI×1,mini-jack×1
  • Express Card slot x 1
  • SD card slotx1,Sony card slotx1
  • Size(W×D×H)329×228.5×27.6~31.5mm
  • Weight 2.7kg


PCI, USB buses and devices

Resolving of device ID's to names

Printout of lspci -nn:

root #lspci -nn

Kernel drivers handling

Printout of lspci -kk:

root #lspci -kk


List USB devices

Printout of lsusb (no external devices connected):

root #lsusb
Bus 002 Device 003: ID 192f:0916 Avago Technologies, Pte. 
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 054c:02e1 Sony Corp. FeliCa S330 [PaSoRi]
Bus 001 Device 003: ID 0c45:6464 Microdia 
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

The status of modules in the Linux Kernel

Printout of lsmod (builtin devices, no external devices connected):

root #lsmod

Bluetooth

Configure Bluetooth by following instructions found in the Bluetooth article.

Laptop sound on TV with HDMI cable

Emerge the media-sound/pavucontrol utility if laptop has a sound output problem with HDMI cable, it helps to configure sound through HDMI cable.

Kernel configuration

To build a custom kernel configuration, it is helpful to get output with console: lspci -nn (lsusb) and lspci -k. Use any bootable Linux LiveCD for that. There is [vendor id:device id] (for example, see lspci -nn above, 00:16.0 Communication controller [0780]: Intel Corporation 5 Series/3400 Series Chipset HECI Controller [8086:3b64]) and kernel driver (for example, see lspci -kk above, Kernel driver in use: mei_me ) information. It is easy to find which kernel modules need to be set with [vendor id:device id] and kernel driver. Use search in Internet or kernel documentation.

Troubleshooting

Graphics card. Problem with 100% brightness after reboot

How to install graphics driver described (see, Gen5) in the Intel article.

Laptop does not remember brightness, after rebooting it sets brightness to 100%

Workaround

Install xbacklight (for xf86-video-intel only):

root #emerge --ask x11-apps/xbacklight

or acpilight (Modern replacement which uses kernel interfaces)

root #emerge --ask sys-power/acpilight

Create udev rule to save brightness

FILE /etc/udev/rules.d/91-backlight.rulesudev event to save brightness
# Storing brightness
ACTION=="change", SUBSYSTEM=="backlight", RUN+="/bin/sh /etc/backlight.sh"

Create scripts to save and restore actual brightness:

FILE /etc/backlight.shScript to save brightness
#!/bin/sh
#It saves actual backlight percentage to /etc/backlight
brightness=`cat /sys/class/backlight/acpi_video0/actual_brightness`
brightness_max=`cat /sys/class/backlight/acpi_video0/max_brightness`
brightness_out=$(((100000/brightness_max*brightness+500)/1000))
echo $brightness_out > /etc/backlight

This script need to be added to startup, for example /bin/sh /home/user/Scripts/brightness.sh, run it as user:

FILE /home/user/Scripts/brightness.shScript to restore brightness on startup
#!/bin/sh
brightness=`cat /etc/backlight`
xbacklight -set $brightness

Apply udev 91-backlight.rules with:

root #udevadm control -R

Read-only SD-Card

It found that sometimes SD-card with non-locked switch recognized as read-only after it inserted [1]

Workaround

Install [Hdparm]]. Use console commands to remove read-only attribute before mounting sd-card partition:

root #emerge --ask hdparm
root #hdparm -r 0 /dev/mmcblk0
root #hdparm -r 0 /dev/mmcblk0p1

For example, the following script remounts a SD-card as read-write (rw). You need to correct mount_options and xuser (user name) to adapt the script for your needs. It needs to run script after sd-card mounted. udisks-glue can be used to start this script automatically.

FILE sdcard-mount-fixChanging sdcard mount from RO to RW
#!/bin/sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
sdcard=`mount | grep mmcblk0p1`
if ! grep -q mmcblk0p1 <<< "$sdcard" ;then
	exit 0
fi
if grep -q rw <<< "$sdcard" ;then
	exit 0
fi
logger -i "$sdcard"
logger -i "Fixing that sdcard mounted as read-only"	
cd /dev/disk/by-uuid/
for entry in *
do
  linktext=`readlink $entry` 
  if  /bin/grep -q mmcblk0p1 <<< "$linktext" ;then
		hdparm -r 0 /dev/mmcblk0 2&>1 >/dev/null
		hdparm -r 0 /dev/mmcblk0p1 2&>1 >/dev/null
		xuser="tester"
		mount_options="nodev,nosuid,uid=1000,gid=100,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2"
		mount -o remount,rw,$mount_options /dev/mmcblk0p1 /run/media/$xuser/$entry
		mountresult=`mount | grep mmcblk0p1`
		logger -i "sdcard mounted as $mountresult"
  fi 
done

VAIO key (Vendor key) does not work

VAIO key has keycode 360. X does not support keycodes are greater than 255.

Workaround 1

It needs to remap VAIO key to make it works with XFCE (probably Gnome, KDE) to bind it in order to start script or application with VAIO key.

Create /etc/udev/hwdb.d/61-keyboard-local.hwdb:

FILE /etc/udev/hwdb.d/61-keyboard-local.hwdbEvent creation for VAIO key
# sony-laptop driver
keyboard:name:Sony Vaio Keys:dmi:bvn*:bvr*:bd*:svnSony*:pn*
 KEYBOARD_KEY_3b=prog4                                  # VAIO

Update the database as described here and reboot the PC.

Workaround 2

Other method is to edit include/uapi/linux/input-event-codes.h kernel file. It needs to change KEY_VENDOR keycode from 360 (0x168) to keycode with value less than 255.

Example, swiping KEY_CHAT and KEY_VENDOR:

Create /usr/src/linux/input-event-codes.h.patch:

FILE /usr/src/linux/input-event-codes.h.patchKEY_VENDOR patch
--- a/include/uapi/linux/input-event-codes.h	2016-01-11 08:01:32.000000000 +0900
+++ b/include/uapi/linux/input-event-codes.h	2016-07-03 18:19:38.370012319 +0900
@@ -289,7 +289,7 @@
 #define KEY_SOUND		213
 #define KEY_QUESTION		214
 #define KEY_EMAIL		215
-#define KEY_CHAT		216
+#define KEY_VENDOR		216
 #define KEY_SEARCH		217
 #define KEY_CONNECT		218
 #define KEY_FINANCE		219	/* AL Checkbook/Finance */
@@ -425,7 +425,7 @@
 #define KEY_OPTION		0x165
 #define KEY_INFO		0x166	/* AL OEM Features/Tips/Tutorial */
 #define KEY_TIME		0x167
-#define KEY_VENDOR		0x168
+#define KEY_CHAT		0x168
 #define KEY_ARCHIVE		0x169
 #define KEY_PROGRAM		0x16a	/* Media Select Program Guide */
 #define KEY_CHANNEL		0x16b

Apply it with:

root #cd /usr/src/linux
root #patch -p1 < input-event-codes.h.patch

Then recompile kernel, reboot PC.