summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 91f834f)
raw | patch | inline | side by side (parent: 91f834f)
author | Justin Sobota <jsobota@ti.com> | |
Mon, 19 May 2014 20:56:33 +0000 (16:56 -0400) | ||
committer | Justin Sobota <jsobota@ti.com> | |
Mon, 19 May 2014 20:56:33 +0000 (16:56 -0400) |
index 270ff40d76d5e2182900353a00ff7fa74f3086d1..4adce6ccb47ef25ebbfa813a134e5a7f890f94c7 100644 (file)
Binary files a/docs/ReleaseNotes_RM.doc and b/docs/ReleaseNotes_RM.doc differ
Binary files a/docs/ReleaseNotes_RM.doc and b/docs/ReleaseNotes_RM.doc differ
index 840833ee954afede65029470b51a9b48b3259b1e..784d8ce314b7bf2b9bf771aa7b5012087654facc 100644 (file)
Binary files a/docs/ReleaseNotes_RM.pdf and b/docs/ReleaseNotes_RM.pdf differ
Binary files a/docs/ReleaseNotes_RM.pdf and b/docs/ReleaseNotes_RM.pdf differ
diff --git a/makefile_armv7 b/makefile_armv7
index bc4a17577459b30d50d0bea4fec6cfdda5f9a49f..99dd1c91b7f56f4cd062fe260e31e7e3beded8ba 100644 (file)
--- a/makefile_armv7
+++ b/makefile_armv7
$(CP) ./device/k2k/*.dtb $(INSTALL_BIN_BASE_DIR)/device/k2k
$(CP) ./device/k2e/*.dtb $(INSTALL_BIN_BASE_DIR)/device/k2e
$(CP) ./device/k2l/*.dtb $(INSTALL_BIN_BASE_DIR)/device/k2l
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmServer.out $(INSTALL_BIN_BASE_DIR)/rmServer_$(DEVICE).out
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmServer_so.out $(INSTALL_BIN_BASE_DIR)/rmServer_so_$(DEVICE).out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmServer.out $(INSTALL_BIN_BASE_DIR)/rmServer.out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmServer_so.out $(INSTALL_BIN_BASE_DIR)/rmServer_so.out
installbin_test:
install -d $(INSTALL_BIN_BASE_DIR)/ti/drv/rm/test
install -d $(INSTALL_BIN_BASE_DIR)/ti/drv/rm/test/dts_files
$(CP) ./test/dts_files/*.dtb $(INSTALL_BIN_BASE_DIR)/ti/drv/rm/test/dts_files
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmLinuxClientTest.out $(INSTALL_BIN_BASE_DIR)/rmLinuxClientTest_$(DEVICE).out
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmDspClientTest.out $(INSTALL_BIN_BASE_DIR)/rmDspClientTest_$(DEVICE).out
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmLinuxClientTest_so.out $(INSTALL_BIN_BASE_DIR)/rmLinuxClientTest_so_$(DEVICE).out
- install -c -m 755 $(ARMV7BINDIR)/rm/test/rmDspClientTest_so.out $(INSTALL_BIN_BASE_DIR)/rmDspClientTest_so_$(DEVICE).out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmLinuxClientTest.out $(INSTALL_BIN_BASE_DIR)/rmLinuxClientTest.out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmLinuxClientTest_so.out $(INSTALL_BIN_BASE_DIR)/rmLinuxClientTest_so.out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmDspClientTest.out $(INSTALL_BIN_BASE_DIR)/rmDspClientTest.out
+ install -c -m 755 $(ARMV7BINDIR)/rm/test/rmDspClientTest_so.out $(INSTALL_BIN_BASE_DIR)/rmDspClientTest_so.out
install:
install -d $(INSTALL_INC_BASE_DIR)/ti/drv/rm/util
index a0abb58219814cbca9a4e197685fbe14e7b4178f..0cd36405b972c8f8c1f43c75b5d31c9b6c3fc61f 100644 (file)
Running the RM ARM Linux multi-process test:
-To run rmServer_k2e.out:
+To run rmServer.out:
-copy the following files from rm/test/dts_files to the install directory containing rmServer_k2e.out:
+copy the following files from rm/test/dts_files to the install directory containing rmServer.out:
global-resources.dtb
server-policy.dtb
linux-evm.dtb [Optional]
http://processors.wiki.ti.com/index.php/MCSDK_UG_Chapter_Developing_System_Mgmt#Resource_Manager
To run the Server:
-$ ./rmServer_k2e.out global-resources.dtb server-policy.dtb linux-evm.dtb
+$ ./rmServer.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
The Server will wait for Client socket connections and service any requests received via those sockets.
-To run the rmLinuxClientTest_k2e.out:
+To run the rmLinuxClientTest.out:
-copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest_k2e/k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest.out:
static-policy.dtb
To execute the Client test:
-$ ./rmLinuxClientTest_k2e.out static-policy.dtb
+$ ./rmLinuxClientTest.out static-policy.dtb
The Client test will establish a socket connection with the Server, request resources and then free all resources requested.
index 74867ff2d991f44a9dfa078b1566c036083dbf58..1ed2cc0a725b8b2bd80d88e81deb1b98de85969c 100644 (file)
endif
# Compiler options
-INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -DDEVICE_K2E -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
+INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
# Linker options
INTERNALLINKDEFS = -Wl,--start-group -L $(ARMV7LIBDIR) $(LIBS) -lrt -Wl,--end-group -pthread $(LDFLAGS)
index 0e7b9bc3a69c4a9c73b6cbf37e86d5dac9eb0ac8..0cd36405b972c8f8c1f43c75b5d31c9b6c3fc61f 100644 (file)
Running the RM ARM Linux multi-process test:
-To run rmServer_k2h.out:
+To run rmServer.out:
-copy the following files from rm/test/dts_files to the install directory containing rmServer_k2h/k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmServer.out:
global-resources.dtb
server-policy.dtb
linux-evm.dtb [Optional]
http://processors.wiki.ti.com/index.php/MCSDK_UG_Chapter_Developing_System_Mgmt#Resource_Manager
To run the Server:
-$ ./rmServer_k2h.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
+$ ./rmServer.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
The Server will wait for Client socket connections and service any requests received via those sockets.
-To run the rmLinuxClientTest_k2h.out:
+To run the rmLinuxClientTest.out:
-copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest_k2h/k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest.out:
static-policy.dtb
To execute the Client test:
-$ ./rmLinuxClientTest_k2h.out static-policy.dtb
+$ ./rmLinuxClientTest.out static-policy.dtb
The Client test will establish a socket connection with the Server, request resources and then free all resources requested.
index bfdc31d408969a8c3aa335d3fa1ef8a3237fa1d0..c5f8310251e576b3b9b648615b70f65f6a229b45 100644 (file)
endif
# Compiler options
-INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -DDEVICE_K2H -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
+INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
# Linker options
INTERNALLINKDEFS = -Wl,--start-group -L $(ARMV7LIBDIR) $(LIBS) -lrt -Wl,--end-group -pthread $(LDFLAGS)
index 387d8a80bf8c9459a47fa55544f5326598bf40af..0cd36405b972c8f8c1f43c75b5d31c9b6c3fc61f 100644 (file)
Running the RM ARM Linux multi-process test:
-To run rmServer_k2k.out:
+To run rmServer.out:
-copy the following files from rm/test/dts_files to the install directory containing rmServer_k2k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmServer.out:
global-resources.dtb
server-policy.dtb
linux-evm.dtb [Optional]
http://processors.wiki.ti.com/index.php/MCSDK_UG_Chapter_Developing_System_Mgmt#Resource_Manager
To run the Server:
-$ ./rmServer_k2k.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
+$ ./rmServer.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
The Server will wait for Client socket connections and service any requests received via those sockets.
-To run the rmLinuxClientTest_k2k.out:
+To run the rmLinuxClientTest.out:
-copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest_k2k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest.out:
static-policy.dtb
To execute the Client test:
-$ ./rmLinuxClientTest_k2k.out static-policy.dtb
+$ ./rmLinuxClientTest.out static-policy.dtb
The Client test will establish a socket connection with the Server, request resources and then free all resources requested.
index 04e57bcc58d58fe0a07ee30f242170d7f84b587b..c5f8310251e576b3b9b648615b70f65f6a229b45 100644 (file)
endif
# Compiler options
-INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -DDEVICE_K2K -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
+INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
# Linker options
INTERNALLINKDEFS = -Wl,--start-group -L $(ARMV7LIBDIR) $(LIBS) -lrt -Wl,--end-group -pthread $(LDFLAGS)
index de9f7db819f4e50037dea408bce5e0bd7837f7ce..0cd36405b972c8f8c1f43c75b5d31c9b6c3fc61f 100644 (file)
Running the RM ARM Linux multi-process test:
-To run rmServer_k2l.out:
+To run rmServer.out:
-copy the following files from rm/test/dts_files to the install directory containing rmServer_k2l.out:
+copy the following files from rm/test/dts_files to the install directory containing rmServer.out:
global-resources.dtb
server-policy.dtb
linux-evm.dtb [Optional]
http://processors.wiki.ti.com/index.php/MCSDK_UG_Chapter_Developing_System_Mgmt#Resource_Manager
To run the Server:
-$ ./rmServer_k2l.out global-resources.dtb server-policy.dtb linux-evm.dtb
+$ ./rmServer.out global-resources.dtb server-policy.dtb -l linux-evm.dtb
The Server will wait for Client socket connections and service any requests received via those sockets.
-To run the rmLinuxClientTest_k2l.out:
+To run the rmLinuxClientTest.out:
-copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest_k2l/k.out:
+copy the following files from rm/test/dts_files to the install directory containing rmLinuxClientTest.out:
static-policy.dtb
To execute the Client test:
-$ ./rmLinuxClientTest_k2l.out static-policy.dtb
+$ ./rmLinuxClientTest.out static-policy.dtb
The Client test will establish a socket connection with the Server, request resources and then free all resources requested.
index d906dfa69f88cbe2b9dfb71215fd7c354528ae41..1ed2cc0a725b8b2bd80d88e81deb1b98de85969c 100644 (file)
endif
# Compiler options
-INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -DDEVICE_K2L -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
+INTERNALDEFS = $(DEBUG_FLAG) -D__ARMv7 -D_VIRTUAL_ADDR_SUPPORT -D__LINUX_USER_SPACE -D_LITTLE_ENDIAN=1 -DMAKEFILE_BUILD
# Linker options
INTERNALLINKDEFS = -Wl,--start-group -L $(ARMV7LIBDIR) $(LIBS) -lrt -Wl,--end-group -pthread $(LDFLAGS)